AdbApp
AdbApp copied to clipboard
Execute linux commands on your android device in the context of an app
AdbApp
Hints
If compiling from source, you propably want to set a lower android api level in AdbApp.Android/Properties/AndroidManifest.xml
like
<uses-sdk android:minSdkVersion="yourlevel" android:targetSdkVersion="yourlevel" />
Targeting newer android api versions are very restrictive regarding reading device information such as serialnumbers of the hardware. Newer api version forbid reading such information complete. You need than to target a lower api version.
For more information see for example https://developer.android.com/reference/android/os/Build#getSerial()