2017-09-14 37 views
0

我已经安装的工具 enter image description here尝试添加DataDroid的模块。但它给需要的错误最少是19.1.0

所有最后版本,并在gradle这个也是最后一个版本

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 26 
    buildToolsVersion "26.0.0" 
    defaultConfig { 
     applicationId "com.example.android.newsapp" 
     minSdkVersion 16 
     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 { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
     exclude group: 'com.android.support', module: 'support-annotations' 
    }) 
    compile 'com.android.support:appcompat-v7:26.0.0-alpha1' 
    testCompile 'junit:junit:4.12' 
} 

但误差

Error:The SDK Build Tools revision (19.0.0) is too low for project ':DataDroid'. Minimum required is 19.1.0 
+0

我不认为你是显示'DataDroid/build.gradle' –

+0

@ cricket_007是这就是问题所在。我已经在wrond gradle文件中制作了安装工具 –

回答

1

的问题是,我是在应用程序中的gradle的Gradle模块文件中更改版本没有。在模块gradle这个一切更新版本后开始工作

相关问题