我安装了Android Studio 3.1.3,但只显示黑屏
build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.herson.freed"
minSdkVersion 23
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-alpha3'
implementation 'com.android.support:design:28.0.0-alpha3'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.android.support:support-v4:28.0.0-alpha3'
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'
}
它在gradle中给出了此错误:
support-v4:28.0.0-alpha中的“无法解决依赖性”错误
请帮助,我还是Android的新手。
答案 0 :(得分:1)
确保您已连接到良好的网络
选中此复选框
转到>文件->其他设置->在构建,执行和部署下 ->您将看到Gradle。取消选中复选框离线工作
尝试将Google Maven存储库添加到应用程序的build.gradle文件中:
repositories {
maven { url "https://maven.google.com" }
}
重建项目。
如果第1步不起作用,请从项目根文件夹中删除gradle,然后重新构建项目。