We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I took the steps in the wallet documentation on how to sign and generate the bundle for android. https://github.com/valora-inc/wallet/blob/main/WALLET.md#building-apks--bundles
But when I upload it to the google play console for testing I get the following error:
"You uploaded an APK or Android App Bundle that was signed in debug mode. You need to sign your APK or Android App Bundle in release mode."
When bundled using steps in WALLET.md#building-apks--bundles google play store gives an error that the App bundle was signed in debug mode.
The app should bundle with the fake keystore and not in debug mode but in release mode.
cd android/app keytool -genkey -v -keystore celo-release-key.keystore -alias celo-key-alias -storepass celoFakeReleaseStorePass -keypass celoFakeReleaseKeyPass -keyalg RSA -keysize 2048 -validity 10000 -dname "CN=Android Debug,O=Android,C=US" export CELO_RELEASE_STORE_PASSWORD=celoFakeReleaseStorePass export CELO_RELEASE_KEY_PASSWORD=celoFakeReleaseKeyPass
cd android ./gradlew clean ./gradlew bundleAlfajoresdevReleaseJsAndAssets
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I took the steps in the wallet documentation on how to sign and generate the bundle for android.
https://github.com/valora-inc/wallet/blob/main/WALLET.md#building-apks--bundles
But when I upload it to the google play console for testing I get the following error:
"You uploaded an APK or Android App Bundle that was signed in debug mode. You need to sign your APK or Android App Bundle in release mode."
Current behavior
When bundled using steps in WALLET.md#building-apks--bundles google play store gives an error that the App bundle was signed in debug mode.
Desired behavior
The app should bundle with the fake keystore and not in debug mode but in release mode.
Steps to Reproduce
The text was updated successfully, but these errors were encountered: