dependencies {
flavor1Compile(path: '{path}', configuration: 'flavor1Config')
flavor2Compile(path: '{path}', configuration: 'flavor2Config')
}
私も、私にできることを知っていますこれは:
dependencies {
debugCompile(path: '{path}', configuration: 'debugConfig')
releaseCompile(path: '{path}', configuration: 'releaseConfig')
}
私は何をしたい、基本的にこれです:
dependencies {
flavor1DebugCompile(path: '{path}', configuration: 'flavor1DebugConfig')
flavor1ReleaseCompile(path: '{path}', configuration: 'flavor1ReleaseConfig')
flavor2DebugCompile(path: '{path}', configuration: 'flavor2DebugConfig')
flavor2ReleaseCompile(path: '{path}', configuration: 'flavor2ReleaseConfig')
}
しかし、そのコードは、この生成:
Error:(30, 0) Gradle DSL method not found: 'flavor1DebugCompile()' Possible causes:
The project 'android' may be using a version of Gradle that does not contain the method. Open Gradle wrapper file The build file may be missing a Gradle plugin. Apply Gradle plugin
これを行う方法はありますか?
正確にあなたの症状は何ですか? IOW、「動作しない」とはどういう意味ですか? – CommonsWare
私の編集をご覧ください。 – KairisCharm