ADB 在 Android 6.0.1 上看不到我的 Nexus 7 运行
ADB doesn't see my Nexus 7 running on Android 6.0.1
我正在开发 Android 应用程序并使用运行在 Android 6.0.1 上的 Nexus 7 设备进行测试。
问题是当我尝试使用此设备测试 ADB 时没有看到它!
如果你能帮助我,这是我的 build.gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.sifast.gpstracking.client"
minSdkVersion 19
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'org.apache.httpcomponents:httpclient:4.5'
}
您需要安装 Google USB 驱动程序才能连接到 Nexus 设备,请参阅:http://developer.android.com/sdk/win-usb.html
您还需要激活开发者模式,方法是在关于phone[=11]下多次点击版本号 =]
完成此操作后,您可以访问 开发人员选项,在那里您可以打开 USB 调试,当您将设备连接到电脑时将弹出一个对话框以允许这台电脑 USB 调试。
如果您的设备已成功连接,您应该会收到一条通知,其中包含 USB 调试已连接
是这样吗?
我正在开发 Android 应用程序并使用运行在 Android 6.0.1 上的 Nexus 7 设备进行测试。
问题是当我尝试使用此设备测试 ADB 时没有看到它! 如果你能帮助我,这是我的 build.gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.sifast.gpstracking.client"
minSdkVersion 19
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'org.apache.httpcomponents:httpclient:4.5'
}
您需要安装 Google USB 驱动程序才能连接到 Nexus 设备,请参阅:http://developer.android.com/sdk/win-usb.html
您还需要激活开发者模式,方法是在关于phone[=11]下多次点击版本号 =]
完成此操作后,您可以访问 开发人员选项,在那里您可以打开 USB 调试,当您将设备连接到电脑时将弹出一个对话框以允许这台电脑 USB 调试。
如果您的设备已成功连接,您应该会收到一条通知,其中包含 USB 调试已连接
是这样吗?