Android Studio项目在Lollipop上运行良好,但在KitKat设备上进行测试时崩溃

时间:2016-03-05 16:41:50

标签: java android android-layout

我的android studio项目在lollipop上运行良好,但在kitkat设备上进行测试时崩溃了。它有一个材质视图寻呼机,在打开具有材料视图寻呼机的活动时,应用程序只需强制关闭套件kat设备。

的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.production.iedc.helo"
        minSdkVersion 14
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        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.1.1'
    compile 'com.android.support:design:23.1.1'
    compile ('com.github.florent37:materialviewpager:1.0.8@aar'){
        transitive=true

    }
    compile 'com.squareup.picasso:picasso:2.3.3'
    compile 'com.github.paolorotolo:appintro:3.4.0'
    compile 'com.android.support:multidex:1.0.0'
}

0 个答案:

没有答案