I'm trying to make an appbundle for my app, but this warning shows up.
C:\Users\IMBA\AndroidStudioProjects\quizzi>flutter build appbundle
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:validateSigningRelease'.
> Keystore file 'C:\Users\IMBA\AndroidStudioProjects\quizzi\android\app\<C:UsersIMBAAndroidStudioProjectsquizziandroidappkey.jks>' not found for signing config 'release'.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 7s
Running Gradle task 'bundleRelease'...
Running Gradle task 'bundleRelease'... Done 7.8s
Gradle task bundleRelease failed with exit code 1
But my key.jks file was already made and my key.properties path to the key.jks file is correct.
What should I do?
Once you have the
key.jks
in theandroid/app/
folder, just change line 4 in yourkey.properties
to:storeFile=key.jks
.