我的android apk无法在android 6.0上运行

时间:2016-05-30 12:21:58

标签: android android-6.0-marshmallow

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "com.example.aclientz.aclientzcds"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        debug {
            debuggable true
        }
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }

    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
}

我在Android studio中开发了一个android应用程序。修复了一个已签名的buindle apk并安装我的手机(android 5.0)的工作,但它不能在andoid 5.0+版本中工作。如何避免这个问题,pLease给出建议

2 个答案:

答案 0 :(得分:1)

将targetSDK更改为22将在没有权限运行时的所有设备上运行,如果你的targetSDK是23而不是你必须设置权限,那么你就无法解决这个问题。

答案 1 :(得分:0)

如果您有任何权限使用需要运行时权限的相机或联系人,请检查运行时权限(link

或用于检查目的请将您的targetsdk设置为22