How to get debug version of react-native app. For release version of apk, i am using >cd android && ./gradlew assembleRelease. Generated apk will be stored at app/build/outputs/apk.
Is there any command like this to generate debug version of apk? Please let me know the path where it stores.
Thanks.
To start debugging an APK, click Profile or debug APK from the Android Studio Welcome screen. Or, if you already have a project open, click File > Profile or Debug APK from the menu bar. In the next dialog window, select the APK you want to import into Android Studio and click OK.
The signed apk is simply the unsigned apk that has been signed via the JDK jarsigner tool. If you want to generate a signed apk then refer to How to Generate Signed Apk in Android Studio?
Use
cd android && ./gradlew assembleDebug
to generate debug apk.
Apk will be generated in directory
app/build/outputs/apk
apk name 'app-debug.apk'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With