Describe the bug
following steps in the link https://aws-amplify.github.io/docs/js/push-notifications#configure-your-app to create a react-native app and firebase app to test android push notification.
it seems that the document is out of sync, the last step is "expo start". however, the first step is
"react-native init myapp".
I tried to run ./gradlew assembleRelease,
got error:
Task :@aws-amplify_pushnotification:verifyReleaseResources FAILED
FAILURE: Build failed with an exception.
Solved just now
react-native run-android --variant=release
./gradlew app:installRelease
Worked very well
tried to run react-native run-android --variant=release
I got error :
FAILURE: Build failed with an exception.
added keystore, works now. thanks!
So this simply doesn't work for running in debug on simulator?
Most helpful comment
Solved just now
react-native run-android --variant=release
./gradlew app:installRelease
Worked very well