Android Studio 3 + Gradle 4.0 + shrinkResources + libraryProject = Unable to find a matching configuration in project

前端 未结 4 2130
执笔经年
执笔经年 2021-01-11 19:03

I\'ve problems to migrate my project to the newest Gradle 4.0 + Android Studio 3 version, which gives me all kind of errors. Little by little I managed to sort them all out

4条回答
  •  无人及你
    2021-01-11 20:02

    if you reach here,then my solution is:

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

提交回复
热议问题