I follow the instructions for a signed apk with native response https://facebook.imtqy.com/react-native/docs/signed-apk-android.html
MYAPP_RELEASE_STORE_FILE=my-release-key.keystore
MYAPP_RELEASE_KEY_ALIAS=my-key-alias
MYAPP_RELEASE_STORE_PASSWORD=*****
MYAPP_RELEASE_KEY_PASSWORD=*****
However, in the gradle variable configuration step, I cannot find the file ~/.gradle/gradle.propertieson my mac. I see the folder ~/.gradle, but I do not see the file there gradle.properties, should I create it? Alternatively, I see a file /android/gradle.propertiesin my project folder - should gradle variables be updated instead?
Also, should I replace the keyword MYAPPwith the name of my application? If so, where can I find a key that will replace this - is that based on some kind of setup? for example FOOAPP_RELEASE_STORE_FILE...
source
share