我正在尝试制作我的第一个Android应用程序。 下载并安装Android Studio,并按照教程开始一个新的简单" Hello world"应用程序,只是为了开始,并看到一切正常。 但事实并非如此。 我自己没有写过一行代码,所以源代码完全是由Android Studio本身生成的。
我收到此错误: 无法解决:com.android.support:appcompat-v7:25。+
和
无法解决:com.android.support.test.espresso:espresso-core:2.2.2
创建项目时,我选择API级别15。
在SDK管理器中,我安装了API级别15和25(我认为25是默认安装,我安装了API 15,反之亦然)。
我搜索了很多,并尝试了不同的SDK,但总是出现同样的错误。无论我尝试使用哪种版本,它都会失败并显示相同的消息。
为什么第一个教程不起作用? 我有点困惑,如果很难做出第一个" Hello world" app:0)
提前致谢!
答案 0 :(得分:0)
转到文件 - >设置 - >构建,执行,部署 - >构建工具 - > Gradle然后取消选中离线,然后重新同步项目并重建,即使上述所有内容都无效,请尝试重新安装整个设置
答案 1 :(得分:0)
@Rahul Kumar
我的build.gradle如下。 项目是使用API 15创建的。
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "dk.surlution.app3"
minSdkVersion 15
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.+'
compile 'com.android.support.constraint:constraint-layout:1.0.1'
testCompile 'junit:junit:4.12'
}
答案 2 :(得分:0)