gpt4 book ai didi

android - 在 Android Studio 中以 Release模式构建 Android 应用程序时出错

转载 作者:行者123 更新时间:2023-12-03 06:19:38 25 4
gpt4 key购买 nike

我正在尝试在 Android Studio 中以 Release模式签署我的 android 应用程序。

我关注了this official guide .所以我创建了 keystore 和私钥。然后我尝试从 生成签名的 APK构建 -> 生成签名的 API key .但是构建失败,出现以下错误:

:app:packageRelease FAILED
Error:A problem was found with the configuration of task ':app:packageRelease'.
> File 'C:\Documents\myapp\android.jks' specified for property 'signingConfig.storeFile' does not exist.

我还检查了 build.gradle 配置。我发现了这个:
   signingConfigs {
releaseConfig {
keyAlias 'xxxxxxxxxx'
keyPassword 'xxxxxxxxx'
storeFile file('C:\Documents\myapp\android.jks')
storePassword 'xxxxxxxxx'
}
}

但在同一个gradle文件中我有这个:
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.releaseConfig
}
}

怎么了?

最佳答案

替换 \通过 \\ :

storeFile file('C:\\Documents\\myapp\\android.jks')

关于android - 在 Android Studio 中以 Release模式构建 Android 应用程序时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27323000/

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