我使用较旧的android studio版本来构建我的应用程序,现在我有最后一个版本。当我想要make signed apk时我会给出错误,因为我想使用proguard并且proguard-rules.pro不存在。我手动构建它在应用程序文件夹中,但我仍然遇到错误。当我将'proguard-rules.pro'
删除到 build.gradle 时,问题正在解决,但我想使用带有规则的proguard,因为在{时,sum类和sum文件不起作用{1}} minifyEnabled
已将true
从此代码'proguard-rules.pro'
移至 build.gradle 。
FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:transformClassesAndResourcesWithProguardForRelease'. > java.io.FileNotFoundException: C:\Users\Hossein\Desktop\Root\app\proguard-rules.pro (The system cannot find the file specified) * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED
答案 0 :(得分:2)
在项目的Root\app\
中添加一个名为proguard-rules.pro
的文件,然后重新签名。