14

최근 Android Studio (v3.0)의 새 안정 버전을 설치했습니다. 그런 다음 새 프로젝트를 만들었고 아무런 문제가 없었습니다. 하지만 앱 수준 build.gradle 파일에 buildToolsVersion 필드가 없습니다. 심지어 모든 프로젝트 파일 (CtrlShiftF)을 검색했지만 찾지 못했습니다!Android Studio 3.0 : 그라디언트 파일에 buildToolsVersion이 없습니다.

이것은 무엇을 의미합니까? 그리고 내 앱 모듈에서 빌드 도구의 버전이 무엇인지 어떻게 알 수 있습니까?


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' 
} 

답변

14

새로운 안드로이드 Gradle을 플러그인 3.X로 더 이상 빌드 도구 용 버전을 지정할 필요가 없습니다 (이제를 제거 할 수 있습니다.속성).
기본적으로으로, 플러그인은 Android 플러그인 버전에 최소 필요한 빌드 도구 버전 을 자동으로 사용합니다.

more here을 읽을 수 있습니다.

관련 문제