We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
before flavorDimensions "env", "moduleEnv" after flavorDimensions("env", "moduleEnv")
flavorDimensions "env", "moduleEnv"
flavorDimensions("env", "moduleEnv")
before
productFlavors { dev { dimension "env" resValue "string", "app_name", "Test App DEV" buildConfigField "boolean", "IS_DEBUG", "true" } pub { dimension "env" buildConfigField "boolean", "IS_DEBUG", "false" } moduleDev { dimension "moduleEnv" } modulePub { dimension "moduleEnv" } }
after
productFlavors { create ("dev") { setDimension("env") resValue("string", "app_name", "Test App DEV") buildConfigField("boolean", "IS_DEBUG", "true") } create ("pub") { setDimension("env") buildConfigField("boolean", "IS_DEBUG", "false") } create ("moduleDev") { setDimension("moduleEnv") } create ("modulePub") { setDimension("moduleEnv") } }
before useLibrary "org.apache.http.legacy" after useLibrary("org.apache.http.legacy")
useLibrary "org.apache.http.legacy"
useLibrary("org.apache.http.legacy")
testOptions { unitTests { includeAndroidResources = true } }
testOptions { unitTests.isIncludeAndroidResources = true }
sourceSets { main.java.srcDirs += "src/main/kotlin" }
sourceSets.getByName("main") { java.srcDir("src/main/kotlin") }
The text was updated successfully, but these errors were encountered:
Some conversions you ask for can't be done with just regex. For that we need a Groovy parser.
Sorry, something went wrong.
No branches or pull requests
before
flavorDimensions "env", "moduleEnv"
after
flavorDimensions("env", "moduleEnv")
before
after
before
useLibrary "org.apache.http.legacy"
after
useLibrary("org.apache.http.legacy")
before
after
before
after
The text was updated successfully, but these errors were encountered: