Android studio接入高德SDK时报错: startup failed: build file 'D:\AndroidProject\GuangdongVaccine\build.gradle': 8: only buildscript {}, pluginManagement {} and other plugins {} script blocks are allowed before plugins {} blocks, no other statements are allowed
时间: 2024-03-24 10:35:43 浏览: 135
这个报错信息提示你的 `build.gradle` 文件中存在错误。根据错误信息,你在 `plugins {}` 之前添加了其他的语句,而这并不被允许。
为了解决这个问题,你需要检查你的 `build.gradle` 文件,确保所有的语句都在正确的位置。具体来说,你需要将 `plugins {}` 块移动到所有其他语句之前。
以下是一个正确的 `build.gradle` 文件的示例:
```
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
}
}
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.example.myapp"
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'com.amap.api:3dmap:7.9.0'
implementation 'com.amap.api:location:5.4.1'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
```
请注意,`plugins {}` 块位于 `buildscript {}` 块之后,而在 `android {}` 和 `dependencies {}` 块之前。确保你的 `build.gradle` 文件与此示例相似,并重新运行你的项目。
阅读全文