我安裝的Android 2.3工作室和更新我的SDK然後the following error發生後。可以做些什麼來解決這個問題?找不到com.android.tools.build:gradle:3.2
0
A
回答
1
使用這build.gradle.project
//頂級構建文件,你可以添加常用的配置選項,所有子項目/模塊。
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
而這build.gradle.module
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.example.madridistansit.mapapplication"
minSdkVersion 18
targetSdkVersion 25
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:25.3.1'
}
+0
謝謝你兄弟的大力幫助。我很感謝你 –
+0
好borther請接受答案??? @AdityaMishra –
相關問題
- 1. :找不到JAVA_HOME。在/ usr/JDK找不到
- 2. 找不到文件'jquery',找不到'foundation'
- 3. LD找不到找不到-luser32(在Eclipse)
- 4. WirelessOnlinePath未找到,找不到BatteryVoltagePath,找不到batteryTemperaturePath錯誤
- 5. PHP'MongoClient'找不到
- 6. 找不到gtkmm.h
- 7. 找不到ICreatesObservableForProperty
- 8. 找不到openuri
- 9. self.rect找不到?
- 10. DXApplication找不到
- 11. ManagementBaseObject找不到
- 12. 找不到Interop.Word
- 13. 找不到Html.TextBox
- 14. TeEngine.pas找不到
- 15. JSQMessages.h找不到
- 16. com.google.android.maps.MapView找不到
- 17. Microsoft.VisualBasic.Powerpacks.ShapeContainer找不到
- 18. NPM找不到
- 19. Version'GLIBCXX_3.4.22'找不到
- 20. WPF:Microsoft_Windows_Themes找不到
- 21. 找不到com.mysql.jdbc.Driver
- 22. 找不到persistence.xml
- 23. 'fontawesome.less'找不到
- 24. CrystalImageHandler.aspx找不到
- 25. com.android.library找不到
- 26. 找不到RoutePluginManager
- 27. 找不到microsoft.sqlserver.batchparser.dll
- 28. 找不到CMAKE_C_COMPILER
- 29. net_rim_json_org找不到
- 30. NameScope.SetNameScope找不到
這是從your're使用發佈的werent又一個搖籃版本的問題,標題清晰。 AS的最新版本是2.3.3。 –