gpt4 book ai didi

android-studio - Android Studio - 用于发布崩溃的签名 APK

转载 作者:行者123 更新时间:2023-12-03 15:58:46 25 4
gpt4 key购买 nike

我正在为我的应用程序的下一次更新创建一个签名的 APK。但是当我将此 APK 文件传输到我的设备并安装它时,它会在打开应用程序时崩溃。

这是我的项目级 gradle 文件

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.google.gms:google-services:2.0.0-alpha6'

}
}

allprojects {
repositories {
jcenter()
}
}

这是我的模块 gradle 文件代码:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.0'
useLibrary 'org.apache.http.legacy'

defaultConfig {
applicationId "com.washkart.activities"
minSdkVersion 15
targetSdkVersion 19

// Enabling multidex support.
multiDexEnabled true
}

repositories {
jcenter()
flatDir {
dirs 'libs'
}
}



buildTypes {
release {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
}
}
dataBinding {
enabled = true
}
}

dependencies {
compile files('libs/joda-time-2.4.jar')
compile(name:'acra-4.7.0', ext:'aar')
compile project(':ViewPagerIndicator')
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.android.gms:play-services-ads:8.4.0'
compile 'com.google.android.gms:play-services-identity:8.4.0'
compile 'com.google.android.gms:play-services-gcm:8.4.0'
compile 'com.facebook.android:facebook-android-sdk:4.6.0'
compile 'com.google.android.gms:play-services-analytics:8.4.0'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:multidex:1.0.0'
}
apply plugin: 'com.google.gms.google-services'

我在我的 proguard 文件中添加了以下行,以避免在签署 APK 时出现警告/错误:
-keepnames class org.apache.** {*;}
-keep class org.apache.** {*;}
-keep class android.support.v4.** { *; }
-keep interface android.support.v4.app.** { *; }
-dontnote android.support.v4.**
-keep class org.joda.time.** { *; }
-keep interface org.joda.time.** { *;}
-keep class android.support.v7.app.** { *; }
-keep interface android.support.v7.app.** { *; }
-dontskipnonpubliclibraryclassmembers

-dontwarn org.apache.commons.logging.LogFactory
-dontwarn org.apache.http.annotation.ThreadSafe
-dontwarn org.apache.http.annotation.Immutable
-dontwarn org.apache.http.annotation.NotThreadSafe
-dontwarn org.jodatime.time.**
-dontwarn org.joda.convert.**
-dontwarn org.apache.http.**
-dontwarn android.net.**

我有 android studio 1.5.1 并在 Android 4.4.2 上进行测试。
以及我用来生成的程序 Build>Generate Signed APK>Selecting the module from dropdown > Add keystore file, alias and password> Build type = release > finish

最佳答案

我遇到了同样的问题,问题出在你的 proguard 文件中。
你在使用时启用了proguard minifyEnabled true .
禁用它以禁用 proguard 或从 here 阅读有关如何使用 proguard 的信息因为它丢弃了 proguard-rules.pro 中未添加的类文件和其他资源。

关于android-studio - Android Studio - 用于发布崩溃的签名 APK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37026185/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com