在Android Studio中部署随附的Hello,World watch应用的磨损版本时,出现以下错误:
失败[INSTALL_Failed_olDER_SDK]
更新:从Reddit帖子中删除有关尝试L的被破解版本的详细信息,因为这对我来说不是解决方案,可能会造成更多混乱.
mobile / build.gradle
apply plugin: 'com.androID.application'androID { compileSdkVersion 20 buildToolsversion "20.0.0" defaultConfig { applicationID "com.example.erikbabel.myapplication" minSdkVersion 15 targetSdkVersion 20 versionCode 1 versionname "1.0" } buildTypes { release { runProguard false proguardfiles getDefaultProguardfile('proguard-androID.txt'), 'proguard-rules.pro' } }}dependencIEs { compile filetree(dir: 'libs', include: ['*.jar']) wearapp project(':wear') compile 'com.androID.support:appcompat-v7:19.+' compile 'com.Google.androID.gms:play-services-wearable:+'}
磨损/建造
apply plugin: 'com.androID.application'androID { compileSdkVersion 20 buildToolsversion "20.0.0" defaultConfig { applicationID "com.example.erikbabel.myapplication" minSdkVersion 20 targetSdkVersion 20 versionCode 1 versionname "1.0" } buildTypes { release { runProguard false proguardfiles getDefaultProguardfile('proguard-androID.txt'), 'proguard-rules.pro' } }}dependencIEs { compile filetree(dir: 'libs', include: ['*.jar']) compile 'com.Google.androID.support:wearable:+' compile 'com.Google.androID.gms:play-services-wearable:+'}
New Project directions保持了所有其他功能.我在Moto ultra 4.4和LG G手表上运行.
解决方法:
错误[INSTALL_Failed_olDER_SDK]是因为我正在将磨损gradle构建部署到手机(具有不兼容的API).为了将可穿戴式gradle版本部署到LG G手表,您必须设置为enable bluetooth debugging and connect your adb to the watch.,然后在“选择设备”对话框中选择手表.
总结以上是内存溢出为你收集整理的无法在Android Studio中设置Hello,World watch应用全部内容,希望文章能够帮你解决无法在Android Studio中设置Hello,World watch应用所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)