我的谷歌眼镜有问题。
它不会在android studio中注册为设备,但是当我在终端中运行“adb devices”时,它会找到该设备并将其列为“设备”。
Android工作室说“请配置Android SDK”。我已经安装了所有东西,API 19玻璃开发套件,API 19,Google usb驱动程序等等。
编译Sdk版本指向API 19,以及 构建工具版本23.0.3。 图书库:jcenter,flatDir {dirs'prebuilt-libs'}
我的gradle指向正确的方式:
apply plugin: 'com.android.application'
repositories {
jcenter()
flatDir {
dirs 'prebuilt-libs'
}
}
android {
compileSdkVersion "Google Inc.:Glass Development Kit Preview:19"
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.example.thinknick.myapplication"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
我已经到了最后,我尝试重新安装Android工作室,重新启动ADB,重新启动计算机,更换USB端口,重新插入设备,其他USB端口等。
该文件是Windows 10 64位。我知道工作的电缆,因为它适用于同事mac。
答案 0 :(得分:1)
我找到了解决方案,我担心这对我来说太明显了几个小时。我以管理员身份运行Android工作室,现在运行得很好。
羞耻行走