java.lang.NoClassDefFoundError:com.google.android.gms.R $ string

时间:2015-12-21 20:09:25

标签: java android android-manifest twitter4j

我对编译器有点麻烦, 我在Nexus 5上使用相同的代码,没有错误。 因为我在平板电脑中使用它,它立即崩溃,错误说

java.lang.NoClassDefFoundError:com.google.android.gms.R $ string 与未知来源的早午餐...

如果我删除

multiDexEnabled true 

并删除

 compile 'org.twitter4j:twitter4j-core:4.0.2'

然后它适用于两者,有人知道原因吗? 下面是我的build.grade

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
    applicationId "com.package.name"
    minSdkVersion 16
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
     multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'

compile 'org.twitter4j:twitter4j-core:4.0.2'
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:design:23.1.1'
compile 'com.squareup.okhttp:okhttp:2.5.0'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.isseiaoki:simplecropview:1.0.8'
compile 'com.qozix:tileview:2.0.7'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.google.android.gms:play-services-gcm:8.4.0'

}

Blow是manifest.xml

  <?xml version="1.0" encoding="utf-8"?>
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.package.name" >

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission
    android:name="com.google.android.c2dm.permission.C2D_MESSAGE"
    android:protectionLevel="signature" />

<application
    android:name=".utility.Apps"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:largeHeap="true"
    android:theme="@style/AppTheme" >
    <receiver
        android:name=".gcm.GcmBroadcastReceiver"
        android:permission="com.google.android.c2dm.permission.SEND" >
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </receiver>

    <service android:name=".gcm.GcmIntentService" />

    <activity android:name=".SplashActivity"
              android:theme="@style/AppTheme.NoActionBar" >

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    and then a lot of activities

8 个答案:

答案 0 :(得分:5)

我多次查看我的代码,然后查看我正在使用的每个库,我能够修复它。

首先,像@BrainMiz一样说mutiDexEnabled应该将其关闭。我只是评论它而不是将其设置为false。

defaultConfig {
     applicationId "com.package.name"
     minSdkVersion 16
     targetSdkVersion 23
     versionCode 1
     versionName "1.0"
     //multiDexEnabled true
}

其次,它是依赖关系。 由于我的libs文件夹中没有任何jar,所以我删除了

  compile fileTree(dir: 'libs', include: ['*.jar'])

还删除所有未使用的gms库,只添加正在使用的那个。我必须给@Radix一些信用,因为我在代码中发现了一些关于代码的错误,我检查设备是否有google play store。

dependencies {
    //compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'

    compile 'org.twitter4j:twitter4j-core:4.0.2'
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.android.support:appcompat-v7:23.1.1'
    //compile 'com.google.android.gms:play-services:8.4.0'
    compile 'com.android.support:design:23.1.1'
    compile 'com.squareup.okhttp:okhttp:2.5.0'
    //compile 'com.android.support:support-v4:23.1.1'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.isseiaoki:simplecropview:1.0.8'
    compile 'com.qozix:tileview:2.0.7'
    compile 'com.android.support:cardview-v7:23.1.1'
    compile 'com.google.android.gms:play-services-gcm:8.4.0'
}

答案 1 :(得分:1)

更改此行

<uses-permission
android:name="com.google.android.c2dm.permission.C2D_MESSAGE"
android:protectionLevel="signature" />

用这个

<permission android:name="<your-package-name>.permission.C2D_MESSAGE"
    android:protectionLevel="signature" />
<uses-permission android:name="<your-package-name>.permission.C2D_MESSAGE" />

此外,我在你的清单中看到了很多关于你如何宣布GCM的异常现象。看看technical docs.

答案 2 :(得分:1)

我相信你应该尝试将multiDexEnabled变为false并摆脱编译com.google.android.gms:play-services-gcm:8.4.0&#39; 。你有两个播放服务强制你将multiDexEnabled变为true

答案 3 :(得分:0)

遇到同样的问题..只需清理项目,然后制作并最终运行它

答案 4 :(得分:0)

在我的情况下,我在AndroidManifest.xml文件中更改了应用程序的主题,并清除了styles.xml文件(因为我是菜鸟,希望只使用开箱即用的android主题)。启动该应用程序后,我认为存在导致该错误的旧主题的僵尸引用,因为在还原更改后,该错误消失了。

答案 5 :(得分:0)

我确实删除了

    compile 'com.android.support:multidex:1.0.1' 

并同步项目。添加此行后,再次同步。接下来,清理项目以删除旧的dex文件(可能会导致dex档案合并的问题),并且它有所帮助。

答案 6 :(得分:-1)

我有同样的问题

有gradle.build依赖项:

compile 'com.android.support:multidex:1.0.0'

在AndroidManifest.xml中:

<application
        ...
        android:name="android.support.multidex.MultiDexApplication">

答案 7 :(得分:-1)

有同样的问题,被困了一整天。终于得到了解决方案。

在您的应用级别添加 gradle.build

repositories {
  jcenter()
}

dependencies {
  compile 'com.google.android:multidex:0.1'
}

然后在应用程序类中覆盖 attachBaseContext ,如下所示:

@Override
protected void attachBaseContext(Context base) {
    super.attachBaseContext(base);
    MultiDex.install(this);
}

并且不要忘记启用mutlidex支持,如下所示:

android {
    ...
    defaultConfig {
        ...
        multiDexEnabled true
    }
}