美文网首页ADB
Adb installation error: INSTALL_

Adb installation error: INSTALL_

作者: UNCLE_CHUCK | 来源:发表于2018-02-13 17:11 被阅读0次

Your connected android device (with old android version) must be comply with the minSdkVersion & targetSdkVersion in build.gradle which is under your module. If not, just to modify them in the build.gradle to align with your android OS version.

But compile & build version could be different, that is ok.

android {
    compileSdkVersion 24
    buildToolsVersion '24.0.3'
    defaultConfig {
        applicationId "xxx.xxx.xxx"
        minSdkVersion 19
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"

相关文章

网友评论

    本文标题:Adb installation error: INSTALL_

    本文链接:https://www.haomeiwen.com/subject/deojtftx.html