我想使用标签创建简单的移动应用,但是我遇到了这个问题。
创建和构建gradle后 activiy_main无法加载并且什么也没显示 gradle版本:: com.android.tools.build:gradle:3.1.4
应用插件:'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "kz.starbuzzapplication"
minSdkVersion 14
targetSdkVersion 28
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:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
这是屏幕 我尝试过:
1)清理并重建项目
2)更改值/样式
3)重新启动Android Studio
4)删除项目,然后创建一个新项目,但结果相同。
如何解决????????????????
答案 0 :(得分:2)
这是android Studio版本 28
中的错误更改
compileSdkVersion 28
收件人
compileSdkVersion 27
并更改
implementation 'com.android.support:appcompat-v7:28.0.0'
收件人
implementation 'com.android.support:appcompat-v7:27.1.1'