- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我正在尝试在 Android Studio 中通过使用 Gradle 的项目在 Release模式下使用 Build Variant 测试应用。
build.gradle:
(omitted dependencies and repositories)
android {
apply plugin: 'android'
compileSdkVersion 19
buildToolsVersion "19.0.0"
defaultConfig {
minSdkVersion 11
targetSdkVersion 16
versionCode 1
versionName "1.0"
}
signingConfigs {
release {
storeFile file("release.jks")
storePassword "password"
keyAlias "MobileAndroid"
keyPassword "password"
}
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
signingConfig signingConfigs.release
}
}
}
如果 Build Variant 是 release Gradle 返回错误
A problem was found with the configuration of task ':app:packageRelease'.
File '/Users/andre/workspace/MobileAndroid/app/release.jks' specified for property 'signingConfig.storeFile' does not exist.
删除“signingConfig.storeFile”会返回 Android Studio 消息框错误:
Application Installation Failed
Installation failed since the APK was either not signed, or signed incorrectly. If this is a Gradle-based project, then make sure the signing configuration is specified in the Gradle build script.
release.jks 存在并且使用 Android Studio 向导“Build > Generate Signed APK...”我可以生成一个 app.apk 签名。
如何解决 Gradle 中的这个错误?
最佳答案
请仔细检查该文件是否存在于错误消息所在的位置 (Users/andre/workspace/MobileAndroid/app/release.jks),并且没有权限问题阻止文件被读取。
关于android - 带有 packageRelease “specified for property ' signingConfig.storeFile' 的 Gradle 签名应用程序不存在”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21780847/
Error:A problem was found with the configuration of task ':app:packageRelease'. File '/Volumes/Data/
我不知道是什么问题,希望你能帮助我。 错误代码: Execution failed for task ':app:packageRelease'. java.io.IOException: Faile
我正在使用 Android Studio,但是当我通过“gradlew packageRelease”打包 App 时,zipalign 对我不起作用。我已经通过 jarsigner 验证签名是正确的
我正在使用Android Studio 1.2.2,并尝试使用proguard设置生成APK。我也在我的应用程序中使用 joda-time-2.7.jar 。 这给我带来以下错误信息。 错误:任务':
我正在使用 Cordova 5.1.1 为 Android 开发应用程序。我想创建一个签名 APK 以上传到 Google Play。 我通过在/Applications/rubystack/apac
我正在尝试在 Android Studio 中通过使用 Gradle 的项目在 Release模式下使用 Build Variant 测试应用。 build.gradle: (omitted depe
我正在使用 Android Studio 1.2.2 并尝试使用 proguard 设置生成 APK。但我不能这样做并收到以下错误消息。 “任务':packageRelease'执行失败。 Unabl
我正在尝试在 Android 应用上进行“发布”构建,但我不断收到以下错误: Unable to compute hash of /../AndroidStudioProjects/../classe
当我尝试构建发布版本时出现以下错误。我正在使用 android studio 2.3 。我在下面添加了我的 gradle 和 proguard 规则文件,我将在 mac os X 上使用 mac Er
任务执行失败:app:packageRelease com.android.ide.common.signing.KeytoolException: Failed to read key key0 f
我正在尝试使用 minifyEnabled true 编译我的 apk buildTypes { release { minifyEnabled true p
当我从 gradle 文件启用 Proguard 并生成发布构建文件时,我收到以下错误消息。 Exception while processing task java.io.IOException:
我是一名优秀的程序员,十分优秀!