无法从Android Studio

时间:2016-10-17 06:10:26

标签: android android-studio signed-apk

从android工作室生成签名的apk获取错误。 几天后所有工作都很好,而从最近2天起,我面临生成签名apk的问题。

错误是 -

  

失败:构建因异常而失败。   出了什么问题:

     

在任务':app:packageRelease'中发现了一个问题。   文件' /media/user86/data/MySIPonline/app/build/intermediates/res/resources-release-stripped.ap _'为属性' resourceFile'指定的不存在。

我检查过该文件夹和release-stripped.ap文件。 我无法弄清楚错误。

这是build.gradle(app)

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"

defaultConfig {
    applicationId "com.xxxxxxxxxx"
    minSdkVersion 14
    targetSdkVersion 23
    versionCode 15
    versionName "1.5.1"
    multiDexEnabled true
}

buildTypes {
    release {
        minifyEnabled false
        shrinkResources true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
dexOptions {
    javaMaxHeapSize "2048M"
}}


repositories {
maven { url "https://jitpack.io" }
maven { url 'https://maven.fabric.io/public' }}



dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.github.PhilJay:MPAndroidChart:v2.2.3'
compile 'com.mcxiaoke.volley:library:1.0.19'
compile 'com.google.code.gson:gson:2.5'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'de.greenrobot:eventbus:2.4.0'
compile 'com.squareup.okhttp:okhttp:2.3.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile files('libs/paynimo_v2.0_live.jar')
compile 'com.google.android.gms:play-services-analytics:9.4.0'
compile('com.crashlytics.sdk.android:crashlytics:2.6.1@aar') {
    transitive = true;
}
compile files('libs/paynimo.scanner.jar')
compile 'com.google.android.gms:play-services-gcm:9.4.0'
compile 'com.android.support:design:23.2.1'
compile 'com.android.support:recyclerview-v7:23.2.1'
compile 'com.android.support:cardview-v7:23.2.1'
}
apply plugin: 'com.google.gms.google-services

以下是亲保护档案的链接 - https://gist.github.com/Sanwal13/b667326812b87702c86fa02870b28240

请提前帮助和感谢。

3 个答案:

答案 0 :(得分:1)

您需要将shrinkResources属性设置为false,因为它不适用于Instant Run功能。如果您使用 Android Studio 2.2 ,只需在清单中将其指定为:

buildTypes {
release {
    minifyEnabled false
    shrinkResources false
    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}

如果您使用 Android Studio 2.0

  1. 打开设置。
  2. 选择构建,执行和部署。
  3. 取消选中启用“即时运行”选项。

答案 1 :(得分:0)

清理您的项目并尝试生成签名的APK我有同样的问题我清理项目重建它为我工作的项目。

答案 2 :(得分:0)

按照以下步骤删除错误 -

第1步: - 清理项目

第2步: - 重建项目

第3步: - 使Android Studio无效并重启

第4步: - 使用以下代码编辑build.gradle

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

只需删除 - 此行

  

shrinkResources false

问题解决:)