Android资源无法找到资源ID#0x7f070024

时间:2016-06-21 10:46:28

标签: java android android-resources

这是我第一次遇到这样的问题而且我有点傻眼。我的问题是每当我调试我的应用程序时,一切都很好,花花公子,但是一旦我生成一个apk并通过crashlytics将它分发给我的beta测试者,所有的地狱都会失败,我抛出了这个{{1} }。

我检查了我的Resources$NotFoundExeption文件资源R.java,发现它显示了这一点:

0x7f070024

这对我来说并不是很重要。然后我继续进行另一个字符串资源错误,该错误指向资源ID public static final int common_google_play_services_unknown_issue=0x7f070024; ,它显示了我:

0x7f070036

我检查了这个变量的用法,我使用这个字符串资源的唯一地方是public static final int app_name=0x7f070036;

AndroidManifest.xml

为了完成这个问题,让我添加我的gradle文件,因为它们对解决这个问题很重要:

 <application
    android:name=".MyApplication"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"      //**HERE**
    android:theme="@style/AppTheme">
    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version"/>
    <meta-data
        android:name="io.fabric.ApiKey"
        android:value="blablablah"/>

    <activity
        android:name=".views.activities.LoginActivity"
        android:configChanges="keyboard|keyboardHidden"
        android:screenOrientation="portrait">
        <intent-filter android:label="@string/app_name"> //**HERE**
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
    applicationId "helpme.jesus"
    minSdkVersion 16
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:23.1.0'
    compile 'com.jakewharton:butterknife:7.0.1'
    compile 'com.squareup.retrofit:retrofit:1.9.0'
    compile 'com.google.android.gms:play-services-gcm:8.4.0'
    compile 'com.android.support:support-v4:21.0.+'
    compile 'com.android.support:design:23.1.0'
    compile 'de.greenrobot:greendao:2.0.0'
    compile 'com.squareup:otto:1.3.8'
    compile 'com.squareup.dagger:dagger:1.2.2'
    compile 'com.birbit:android-priority-jobqueue:1.3.5'
    compile 'com.android.support:cardview-v7:23.1.0'
    compile 'com.android.support:recyclerview-v7:23.1.0'
    compile 'com.google.zxing:core:3.2.1'
    compile('com.crashlytics.sdk.android:crashlytics:2.5.7@aar') {
        transitive = true;
    }
    compile('com.mapbox.mapboxsdk:mapbox-android-sdk:4.1.0-beta.2@aar') {
        transitive = true
    }
    apt 'com.squareup.dagger:dagger-compiler:1.2.2'

}

apply plugin: 'com.google.gms.google-services'

我错过了什么?我做错了什么?

这里只会添加Logcat文件:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.0-alpha3'
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
        classpath 'com.google.gms:google-services:2.0.0-alpha5'
    }
}

1 个答案:

答案 0 :(得分:3)

我和

有类似的问题
classpath 'com.android.tools.build:gradle:2.2.0-alpha3'

我尝试使用干净的项目,重建项目,使Android Studio缓存无效。仍然没有运气/ _ \

但是当我改为

classpath 'com.android.tools.build:gradle:2.1.2'

问题消失了。相同的代码!所有其他设置相同!

我认为这是gradle build 2.2.0-alpha3

中的一个错误

Gradle alpha总是遇到问题...