Table of Contents

Android - (Installation|Configuration) for Development

Steps

Android Studio Run Device Chooser

buildTypes {
        debug {
            debuggable true
        }
    }

Env variable

Sqlite

# Android CPU
adb -d shell uname -m
# ex: aarch64
# Get sqlite3 from an emulator with the same architecture
adb -e pull /system/xbin/sqlite3 
# Push it to the USB device
adb -d push sqlite3 /data/local/tmp/sqlite3