Android应用很少有功能在kitkat版本中无效但在其他版本上正常运行

时间:2016-05-24 05:08:17

标签: android

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.app.threedb"
        minSdkVersion 15
       // targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    packagingOptions {
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.0'
    compile 'com.android.support:recyclerview-v7:21.0.+'
}

这段代码我是用gradle编写的,但很少有功能,例如创建新消息和从图库添加图片,这些功能在kitkat版本中不起作用。请帮忙

0 个答案:

没有答案