我想第一次在Raspberry Pi 3主板上安装apk,它已经安装了从带有空包的android事件控制台下载的闪存.zip。
现在我可以使用wifi IP地址分配到电路板来连接我的设备。
所以我把它连接起来:
adb connect 10.xxx.x.xxx:5555
connected to 10.xxx.x.xxx:5555
现在我正在尝试安装apk:
adb install D:\Project\xxx\xxx\app\build\outputs\
things_V01.apk
Failed to install D:\Project\xxx\xxx\app\build\outputs\
things_V01.apk
这里有什么问题。
以下是我的应用程序。
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "xx.xxxx.xxxx"
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
provided 'com.google.android.things:androidthings:0.4.1-devpreview'
testCompile 'junit:junit:4.12'
}
另请注意,在adb install命令之后,需要花费很多时间才能获得带有1.50MB apk的apk大小。
答案 0 :(得分:1)
作为完整性检查,您是否尝试使用其他adb命令(例如** adb **)与设备进行交互?