web-dev-qa-db-ja.com

Android Studio 3.0:gradleファイルにbuildToolsVersionが見つかりません

最近、Android Studio(v3.0)]の新しい安定バージョンをインストールしました。その後、新しいプロジェクトを作成しましたが、問題はありませんでしたが、アプリにbuildToolsVersionフィールドがありません-level build.gradleファイル。すべてのプロジェクトファイル(CtrlShiftF)、しかし何も見つかりませんでした!

これはどういう意味ですか?そして、どのようにアプリモジュールのビルドツールのバージョンを判断できますか?


build.gradle(プロジェクト):

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:3.0.0'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

build.gradle(モジュール:アプリ):

apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "ir.e900.androidstudio30"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.Android.support:appcompat-v7:26.1.0'
    implementation 'com.Android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.Android.support.test:runner:1.0.1'
    androidTestImplementation 'com.Android.support.test.espresso:espresso-core:3.0.1'
}
30
Mir-Ismaili

新しいAndroid gradle plugin 3.x)を使用すると、ビルドツールのバージョンを指定する必要がなくなりました 、_Android.buildToolsVersion_プロパティを削除できるようになりました)。
デフォルトでは、プラグインは=のバージョンに必要な最小限のビルドツールバージョンを自動的に使用します Android plugin使用しています。

こちら と読むことができます。

41