Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React-native debug apk

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.

like image 301
Vamsidhar Mamillapalli Avatar asked May 26 '16 08:05

Vamsidhar Mamillapalli


People also ask

How do I debug an APK file?

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.

What is signed APK?

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?


1 Answers

Use

cd android && ./gradlew assembleDebug

to generate debug apk.

Apk will be generated in directory

app/build/outputs/apk

apk name 'app-debug.apk'

like image 190
Jickson Avatar answered Oct 26 '22 18:10

Jickson