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

前端 未结 4 2096
执笔经年
执笔经年 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 19:53

    Possible workaround is create in all modules missing buildTypes, but it's crazy messing code when Google planed create a sollution for it. More info in: https://issuetracker.google.com/issues/62170415 as me (but deleted by moderator) and you mention.

    But there is second (same but much cleaner) solution: add this to your top project build.gradle

    subprojects {
        afterEvaluate {project ->
            if (project.hasProperty("android")) {
                android {
                    buildTypes {
                        YOUR_MISSING_BUILD_TYPES {
                           BUILD_TYPE_PARAMS_OR_EMPTY
                        }
                    }
                }
            }
        }
    }
    

    EDIT: 2017-07-12

    It's finally fixed in classpath 'com.android.tools.build:gradle:3.0.0-alpha6'. You can use new DSL: https://issuetracker.google.com/issues/62241369

    android {
      buildTypeMatching 'staging', 'debug'
      productFlavorMatching 'color', 'blue', 'cyan'
    }
    

    Don't forgot to remove above workaround before build project!

    EDIT: 2017-07-18

    There is official documentation: https://issuetracker.google.com/issues/62241369

    To resolve this error, you need to specify which build type from "mylibrary" the Android plugin should match to the app's "staging" build type. You can do this with the buildTypeMatching property in the app's build.gradle file, as shown below:

    // Add the following to the consumer's build.gradle file.
    android {
        ...
        // Tells the Android plugin to use a library's 'debug' build type
        // when a 'staging' build type is not available. You can include
        // additional build types, and the plugin matches 'staging' to the
        // first build type it finds from the one's you specify. That is,
        // if 'mylibrary' doesn't include a 'debug' build type either, the
        // plugin matches 'staging' with the producer's 'release' build type.
        buildTypeMatching 'staging', 'debug', 'release'
    }
    

    EDIT: 2017-09-06

    buildTypeMatching has been removed from AS beta 4.
    now use matchingFallbacks.
    see: https://stackoverflow.com/a/46038946/4594990

    0 讨论(0)
  • 2021-01-11 19:54

    IF your app includes a build type that a library dependency does not.

    For example, your app includes a "staging" build type, but a dependency includes only a "debug" and "release" build type.

    You will get error like

    Unable to resolve dependency for ':app@staging/compileClasspath': Could not resolve project :library. Open File Show Details

    You can resolve this error by adding

    buildTypes {
            staging {
                proguardFile getDefaultDexGuardFile('dexguard-release.pro')
                proguardFile 'dexguard-rules.pro'
                matchingFallbacks = ['debug', 'release'] //add this line
            }
        }
    

    Resolve build errors related to dependency matching official docs

    0 讨论(0)
  • 2021-01-11 20:01

    Possible duplicate of Gradle 4.0 Unable to find a matching configuration

    Make sure you have the exact number of build configurations (buildTypes) in all of your modules.

    In my pre-3.0 setup, I was having only debug{} and release{} in all of my com.android.library modules. I added one more configuration similar to that of :app module. It builds fine for me.

    0 讨论(0)
  • 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'
            }
        }
    
    0 讨论(0)
提交回复
热议问题