美文网首页
Android-Cannot merge new index 6

Android-Cannot merge new index 6

作者: 切忌浮躁 | 来源:发表于2017-03-19 01:25 被阅读39次

    android studio 中,build.gradle添加一行 multiDexEnabled true

    apply plugin: 'com.android.application'
    
    android {
        compileSdkVersion 25
        buildToolsVersion "25.0.2"
        defaultConfig {
            applicationId "com.milo.testqqlogin"
            minSdkVersion 15
            targetSdkVersion 25
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
            multiDexEnabled true
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:Android-Cannot merge new index 6

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