gpt4 book ai didi

android - Gradle 同步失败 : Cause: compileSdkVersion is not specified

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:11:11 48 4
gpt4 key购买 nike

我正在尝试在 android studio 中测试我的 ionic 应用程序。它抛出以下错误。

Gradle sync failed: Cause: compileSdkVersion is not specified.

有什么解决办法吗?我做错了什么。

这是我的build.gradle文件

apply plugin: 'com.android.application'

buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url "https://maven.google.com"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
}
}

// Allow plugins to declare Maven dependencies via build-extras.gradle.

allprojects {
repositories {
mavenCentral();
jcenter()
}
}

task wrapper(type: Wrapper) {
gradleVersion = '4.1.0'
}

dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:+'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:+'
implementation 'com.android.support:appcompat-v7:27.+'
}

最佳答案

您正在使用 27.+android 支持 库,因此您必须提供 sdk 版本 27作为 compileSdkVersiontargetSdkVersion 否则你的项目不知道你的项目应该为哪个平台构建。这些参数应该在build.gradle(app)中像这样在android目录中给出:

android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.example.abc.test"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

只需将这段代码粘贴到 apply plugin: 'com.android.application' 这一行下面

关于android - Gradle 同步失败 : Cause: compileSdkVersion is not specified,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50530889/

48 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com