Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save luminuszz/75adb306feda2f9f935b228253df498b to your computer and use it in GitHub Desktop.
Save luminuszz/75adb306feda2f9f935b228253df498b to your computer and use it in GitHub Desktop.
React-Native Generating SigningReport (Error: Missing keystore)

Fix Firebase Missing Keystore for React Native App

Generate new keystore certificate

For more info, visit https://rnfirebase.io/

 # Open your terminal 
 # Enter the following to generate your missing key. (if fails, try elevating your privileges with `sudo`).
 
  keytool -genkey -v -keystore ~/.android/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"

# Navigate to your `android` directory inside your React Native app, and re-run `./gradlew signingReport`
  
  cd <your-project-name>/android/
  ./gradlew signingReport

Hope this help you out! 😃 Happy coding!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment