私はbuild.gradleに追加してい(モジュール:アプリ)以下:追加productFlavors(モジュール:アプリ)を与えるエラー
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.sis.newpro"
minSdkVersion 22
targetSdkVersion 25
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
productFlavors {
prod {
buildConfigField 'String', 'URL', '"http://api.abcd.com"'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
}
与えるエラー:(22、0)の方法を見つけることができませんでしたorg.gradle.api.Project型の 'app'プロジェクトの引数[build_bqh9qnip9k7nqy2kbpova0vtq $ _run_closure2 @ 5b30b3a7]のproductFlavors()
私は(モジュール:アプリ)build.gradleに追加するための任意のものを欠落しているか、または私が(プロジェクト:NewProject)build.gradleする任意のものを追加する必要がありますビルドの風味を作成する手順以下
あなたのbuild.gradleファイル –
を投稿するあなたは、モジュールレベルのGradleでproductFlavorを追加しましたか? –
yesを追加し、build.gradleファイルもここに追加 – Tarumoy