虽然minSdkVersion = 15,但无法在装有Android API 15的设备上安装apk

时间:2014-08-12 12:06:12

标签: android gradle android-studio

我有一个build.gradle文件minSdkVersion设置为15,但我无法在任何版本上安装apk< 19(我收到一条消息Application no installed)。

可能出现什么问题?

apply plugin: 'com.android.application'

android {
    compileSdkVersion 19
    buildToolsVersion '20.0.0'

    defaultConfig {
        applicationId "com.xxx"
        minSdkVersion 15
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

repositories {
    mavenCentral()
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.squareup.okhttp:okhttp:2.0.+'
    compile 'com.google.android.gms:play-services:5.0.+'
    compile 'com.squareup.picasso:picasso:2.3.+'
    compile 'me.grantland:autofittextview:0.1.1@aar'
    compile 'com.squareup.okhttp:okhttp-urlconnection:2.0.0@jar'
    compile 'com.google.code.gson:gson:2.2.+'
    compile 'se.emilsjolander:stickylistheaders:2.4.1@aar'
    compile files('libs/OoyalaSDK.jar')
    compile 'de.greenrobot:eventbus:2.2.1@jar'
    compile 'com.sothree.slidinguppanel:library:2.0.1@aar'
    compile 'net.danlew:android.joda:2.3.4@aar'
    compile 'com.android.support:support-v4:19.1.+'
}

修改

我刚尝试使用在Android Studio中创建的简单默认项目,我遇到了同样的问题。我可以调试应用程序,但如果我创建一个apk并尝试手动安装它,我会得到错误Application not installed(apk已签名并对齐)。

1 个答案:

答案 0 :(得分:0)

问题在于签名过程。我必须使用-digestalg SHA1 -sigalg MD5withRSA选项对apk进行签名。奇怪的是,即使没有这些选项,我也可以在带有API 19的设备上安装apk。