-
Following the documentation, especially the Signing Android apps using Gradle part, I modified the So now, it looks like the following:
But here is my problem now: how can I still run my app on release mode for testing purposes (or run Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
mregnauld
Jan 25, 2023
Replies: 1 comment
-
OK so after some research, here is how I managed to make it work:
cd android
keytool -genkey -v -alias androiddebugkey -keystore keystore.p12 -storetype PKCS12 -storepass android -keypass android -keyalg RSA -keysize 4096 -validity 10000
Now I can run my app in debug, profile and release mode on my computer without any problem. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mregnauld
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK so after some research, here is how I managed to make it work:
cd android keytool -genkey -v -alias androiddebugkey -keystore keystore.p12 -storetype PKCS12 -storepass android -keypass android -keyalg RSA -keysize 4096 -validity 10000
android/app/build.gradle
file: