私はアンドロイドアプリケーションで新しいです、私はアプリケーションをインポートし、私はこのエラーは何をすべきか分からない..誰かが私を助けることができます! 私のbuild.gradleファイルエラー:(18、0)引数のためのメソッドandroid()を見つけることができませんでした
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.0 rc3"
}
があり、私のアプリ/ build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "23.0.0 rc3"
defaultConfig {
applicationId "com.codeandcoder.finalguide"
minSdkVersion 15
targetSdkVersion 22
versionCode 2
versionName "1.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:7.5.0'
compile 'com.android.support:appcompat-v7:22.2.1'
}
正確にはどういう意味ですか? – ilham
こんにちは@ilham、私は他のポストを探していた。私の間違い。 – r3x