gpt4 book ai didi

为属性 'signingConfig.storeFile' 指定的 Android 不存在

转载 作者:IT老高 更新时间:2023-10-28 22:09:23 28 4
gpt4 key购买 nike

我正在尝试使用 AndroidStudio 生成签名的 APK,但出现此错误:

    Error:A problem was found with the configuration of task ':app:packageRelease'.
> File 'com.pachu.fartsound' specified for property 'signingConfig.storeFile' does not exist.

我不知道你是否需要它,但有我的 build.gradle:

    apply plugin: 'com.android.application'
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "20.0.0"

defaultConfig {
applicationId "com.pachu.fartsounds"
minSdkVersion 9
targetSdkVersion 19
versionCode 1
versionName "1.2"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:19.+'
compile 'com.google.android.gms:play-services:5.0.89'
}

最佳答案

转到构建 -> 生成签名的 APK。创建您的 key (或选择现有的) -> 下一个 -> 下一个 -> 完成!

如果你想用“艰难的方式”来做,你需要在 buildTypes 之前将已经创建的发布 key 指定到 signingConfigs 中。像这样的:

signingConfigs {
release {
storeFile file("/yourkey.jks") //check that the file exists
storePassword "YourPassword"
keyAlias "YourAlias"
keyPassword "YourPassword"
}
}

但这有点没用。因为 Android Studio 提供了非常简单易用的方法来创建准备发布的签名 APK 文件。并且还将您的 key 密码指定到 build.gradle 文件中... - 从安全性的角度来看,不建议这样做。

关于为属性 'signingConfig.storeFile' 指定的 Android 不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25211444/

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