- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试实现 Google Cloud Messaging。当我运行该应用程序时,它会抛出异常
10-21 18:46:14.991: E/AndroidRuntime(4817): FATAL EXCEPTION: main
10-21 18:46:14.991: E/AndroidRuntime(4817): java.lang.NoClassDefFoundError: com.google.android.gms.common.GooglePlayServicesUtil
10-21 18:46:14.991: E/AndroidRuntime(4817): at com.corporate.test.HomePage.checkPlayServices(HomePage.java:211)
10-21 18:46:14.991: E/AndroidRuntime(4817): at com.corporate.test.HomePage.onCreate(HomePage.java:140)
10-21 18:46:14.991: E/AndroidRuntime(4817): at android.app.Activity.performCreate(Activity.java:5020)
10-21 18:46:14.991: E/AndroidRuntime(4817): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
10-21 18:46:14.991: E/AndroidRuntime(4817): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2148)
10-21 18:46:14.991: E/AndroidRuntime(4817): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2211)
10-21 18:46:14.991: E/AndroidRuntime(4817): at android.app.ActivityThread.access$600(ActivityThread.java:149)
10-21 18:46:14.991: E/AndroidRuntime(4817): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1300)
10-21 18:46:14.991: E/AndroidRuntime(4817): at android.os.Handler.dispatchMessage(Handler.java:99)
10-21 18:46:14.991: E/AndroidRuntime(4817): at android.os.Looper.loop(Looper.java:153)
10-21 18:46:14.991: E/AndroidRuntime(4817): at android.app.ActivityThread.main(ActivityThread.java:4987)
10-21 18:46:14.991: E/AndroidRuntime(4817): at java.lang.reflect.Method.invokeNative(Native Method)
10-21 18:46:14.991: E/AndroidRuntime(4817): at java.lang.reflect.Method.invoke(Method.java:511)
10-21 18:46:14.991: E/AndroidRuntime(4817): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:821)
10-21 18:46:14.991: E/AndroidRuntime(4817): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:584)
10-21 18:46:14.991: E/AndroidRuntime(4817): at dalvik.system.NativeStart.main(Native Method)
我的 Activity 代码是
import java.io.IOException;
import java.util.concurrent.atomic.AtomicInteger;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.Dialog;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager.NameNotFoundException;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.gcm.GoogleCloudMessaging;
import com.nextra.utils.AppState;
public class HomePage extends Activity {
RelativeLayout mytrips_relative, approval_relative,
view_transations_relative;
Button backViewTransations, continueViewTransactions;
ImageView logout;
final Context context = this;
public String TAG = "HomePage";
boolean isConnected;
/*
* GCM Client Variables
* */
public static final String EXTRA_MESSAGE = "message";
public static final String PROPERTY_REG_ID = "registration_id";
private static final String PROPERTY_APP_VERSION = "appVersion";
private static final int PLAY_SERVICES_RESOLUTION_REQUEST = 9000;
String SENDER_ID = "XXXX";
TextView mDisplay;
GoogleCloudMessaging gcm;
AtomicInteger msgId = new AtomicInteger();
Context contextGCM;
String regid;
@SuppressLint("NewApi")
/*
* GCM Client Variables END
* */
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_home_page);
/*
* GCM PlayServices On
* */
contextGCM = getApplicationContext();
// Check device for Play Services APK. If check succeeds, proceed with
// GCM registration.
if (checkPlayServices()) {
gcm = GoogleCloudMessaging.getInstance(this);
regid = getRegistrationId(contextGCM);
Log.d("Registration id ", regid + "");
if (regid.isEmpty()) {
registerInBackground();
}
} else {
Log.i(TAG, "No valid Google Play Services APK found.");
}
}
@Override
protected void onResume() {
super.onResume();
// Check device for Play Services APK.
checkPlayServices();
}
/**
* Check the device to make sure it has the Google Play Services APK. If it
* doesn't, display a dialog that allows users to download the APK from the
* Google Play Store or enable it in the device's system settings.
*/
private boolean checkPlayServices() {
int resultCode = GooglePlayServicesUtil
.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
GooglePlayServicesUtil.getErrorDialog(resultCode, this,
PLAY_SERVICES_RESOLUTION_REQUEST).show();
} else {
Log.i(TAG, "This device is not supported.");
finish();
}
return false;
}
return true;
}
/**
* Stores the registration ID and the app versionCode in the application's
* {@code SharedPreferences}.
*
* @param context
* application's context.
* @param regId
* registration ID
*/
private void storeRegistrationId(Context context, String regId) {
final SharedPreferences prefs = getGcmPreferences(context);
int appVersion = getAppVersion(context);
Log.i(TAG, "Saving regId on app version " + appVersion);
SharedPreferences.Editor editor = prefs.edit();
editor.putString(PROPERTY_REG_ID, regId);
editor.putInt(PROPERTY_APP_VERSION, appVersion);
editor.commit();
}
/**
* Gets the current registration ID for application on GCM service, if there
* is one.
* <p>
* If result is empty, the app needs to register.
*
* @return registration ID, or empty string if there is no existing
* registration ID.
*/
@SuppressLint("NewApi")
private String getRegistrationId(Context context) {
final SharedPreferences prefs = getGcmPreferences(context);
String registrationId = prefs.getString(PROPERTY_REG_ID, "");
if (registrationId.isEmpty()) {
Log.i(TAG, "Registration not found.");
return "";
}
// Check if app was updated; if so, it must clear the registration ID
// since the existing regID is not guaranteed to work with the new
// app version.
int registeredVersion = prefs.getInt(PROPERTY_APP_VERSION,
Integer.MIN_VALUE);
int currentVersion = getAppVersion(context);
if (registeredVersion != currentVersion) {
Log.i(TAG, "App version changed.");
return "";
}
return registrationId;
}
/**
* Registers the application with GCM servers asynchronously.
* <p>
* Stores the registration ID and the app versionCode in the application's
* shared preferences.
*/
private void registerInBackground() {
new AsyncTask<Void, Void, String>() {
@Override
protected String doInBackground(Void... params) {
String msg = "";
try {
if (gcm == null) {
gcm = GoogleCloudMessaging.getInstance(contextGCM);
}
regid = gcm.register(SENDER_ID);
Log.d("registration Id", regid + "");
msg = "Device registered, registration ID=" + regid;
// You should send the registration ID to your server over
// HTTP, so it
// can use GCM/HTTP or CCS to send messages to your app.
sendRegistrationIdToBackend();
// For this demo: we don't need to send it because the
// device will send
// upstream messages to a server that echo back the message
// using the
// 'from' address in the message.
// Persist the regID - no need to register again.
storeRegistrationId(contextGCM, regid);
} catch (IOException ex) {
msg = "Error :" + ex.getMessage();
// If there is an error, don't just keep trying to register.
// Require the user to click a button again, or perform
// exponential back-off.
}
return msg;
}
@Override
protected void onPostExecute(String msg) {
mDisplay.append(msg + "\n");
}
}.execute(null, null, null);
}
@Override
protected void onDestroy() {
super.onDestroy();
}
}
看到我已经安装了 Google Play Services
并且还完成了构建路径我仍然收到错误。
最佳答案
我在 Android Studio 0.3.1 下遇到了同样的错误。在 build.gradle 文件中,我添加了“play-services”(v3.2.0 或更高版本)以获取:
dependencies {
compile 'com.android.support:support-v4:18.0.0'
compile 'com.google.android.gms:play-services:3.2.+'
}
在这最终起作用之前,我不得不重新启动 Android Studio。使用 Tools>Android>SDKManager 确保安装了 Google Play“extras”。
关于android - GooglePlayServicesUtil Android 的 NoClassDefFoundError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19495825/
我正在向我的应用添加一个 MapFragment 并具有以下代码,改编自 map 教程: private boolean servicesConnected() { // Check that
最近对 com.google.android.gms:play-services-ads:8.4.0 的更新导致此错误。使用 com.google.android.gms:play-services:
我正在通过 Lynda.com 学习 GoogleMaps。在显示 GooglePlay 服务许可证时,他们使用了一种名为 GooglePlayServicesUtil.getOpenSourceSo
我需要使用 Drive API 创建一个文件,其中包含我的应用程序中的一些内容,因此我遵循了 Drive API 网页上的“入门”部分。 所以我在我的开发者控制台上启用了 api,创建了一个 OAut
我在 2.1 版移动设备上运行它。当我调试它时,我发现函数 GooglePlayServicesUtil.isGooglePlayServicesAvailable() 崩溃了。 据说“找不到方法 a
我正在尝试在使用之前检查 Google Play Services APK 的可用性。我有一个包已过期的设备(日志显示为“...Google Play 服务已过期。需要 3225100 但找到 313
我正在检查设备上 google play 服务的可用性。我用这些代码来做: final int resultCode = GooglePlayServicesUtil.isGooglePlayServ
我正在使用 ACRA (arca.ch) 生成自动错误报告。 我刚刚使用 Google Maps Android API v2 发布了我的应用程序的新版本。我在尝试显示 GooglePlayServi
我正在尝试在我的 Android 应用中使用 Google Play 服务。正如谷歌文档所说,我们需要在使用之前检查谷歌 API 是否可用。我已经搜索了一些方法来检查它。这是我得到的: private
所以,我安装了所有东西,链接了项目文件夹,当我尝试检查服务时,我的应用程序崩溃了。 为了在我的应用程序上显示带有一些标记的简单 map ,我忘记跳上这个愚蠢的过于复杂的系统了吗? 我得到的只是“07-
我正在尝试按照 Google 文档中的 gcm 教程进行操作。他们说如果 Play Services 已过期则调用此方法: GooglePlayServicesUtil.getErrorDialog
我正在尝试实现 Google Cloud Messaging。当我运行该应用程序时,它会抛出异常 10-21 18:46:14.991: E/AndroidRuntime(4817): FATAL E
我想在我的 Android 应用程序中使用谷歌云消息。它对我有用,但是在将我的类组织到包中并清理我的项目后它停止工作,我收到以下错误:http://pastebin.com/uWgYW9fn FATA
在实现排行榜/成就编码后,我收到此错误消息重复 3 次: 07-18 10:27:02.351:E/GooglePlayServicesUtil(14261):找不到 Google Play 服务资源
我是一家拥有多个应用程序的公司的开发人员。我们正在使用 GooglePlayServicesUtil.isGooglePlayServicesAvailable() 检查设备是否在应用程序启动时定期安
我知道这个问题已经有很多答案和修复......但对我来说没有任何效果...... 我正在尝试将推送通知添加到我的 Android 应用程序中。为此,我使用了“google-play-services_
我花了无数个小时试图弄清楚这个 google drive android api,并且我一直在努力弄清楚如何使用它。我在 google android 开发者网站上使用 getting started
我用了this实现我的 AdMob 横幅,但我收到错误:W/GooglePlayServicesUtil:Google Play 服务缺失。 我已经将以下行添加到 build.gradle 中: co
我遇到了 GooglePlayServiceUtil 的问题,一些设备安装了 9.0.83 的 google play 服务。我在具有播放服务版本 8.7.03 的设备中检查了相同的内容,并且我收到了
我有一个 Android 应用程序用于尝试推送通知。到目前为止,我所拥有的只是一个简单的 Activity ,它启动以下检查功能: private boolean checkPlayServi
我是一名优秀的程序员,十分优秀!