Tag: How To Install The Application On Physical Device?


  • How To Install The Application On Physical Device?

    How To Install The Application On Physical Device? Table Of Contents: Build A Debug APK. Check For The Device Id. Install The App On Specific Device. Check if the App is Installed. Add Changes In AndroidManifest.xml File. (1) Build A Debug APK cd android ./gradlew assembleDebug The APK will be generated at: android/app/build/outputs/apk/debug/app-debug.apk (2) Check For The Device Id adb devices (3) Install The App On Specific Device. Now, install the APK on a specific device by using its device ID: adb -s P122C3000278 install androidappbuildoutputsapkdebugapp-debug.apk (4) Check if the App is Installed. adb -s P122C3000278 shell pm list packages

    Read More