udplabs / udp-mobile

React Native project
5 stars 3 forks source link

[Bug] README should have instructions on the #1

Open noinarisak opened 3 years ago

noinarisak commented 3 years ago

README did not instruct me to create debug.keystore file that is required when you execute npx reactive-native run-android.

I did the following to resolve the error that I got.

$ keytool -genkey -v -keystore {$HOME_REPO}/android/app/debug.keystore \
    -storepass android \
    -alias androiddebugkey \
    -keypass android \
    -keyalg RSA \
    -keysize 2048 \
    -validity 10000

# Go through the commandline wizard 

$ ls {$HOME_REPO}/android/app
...
debug.keystore
...