我想在android中获取adb的路径/位置 - 通过此代码 -
String adbLocation = System
.getProperty("com.android.screenshot.bindir");
if (adbLocation == null)
{
adbLocation = System.getenv("ANDROID_HOME");
if (adbLocation != null) {
adbLocation += File.separator + "platform-tools";
}
现在通过
获取日志中的路径/位置Log.e(“adbpathTag - ”,“adb: - ”+ adbLocation);
但我得到的输出是 -
adbpathTag - adb: - null
我怎么能在这里找到正确的adb路径?有没有其他方法可以获得adb路径/位置