我有InteliJ Idea 2018.1,也将其用于Android开发。我已经使用此配置很多月了,没有任何问题... Unfortunatley我仍然是Android / InteliJ的新手,无法解决此刻我面临的问题:
当我尝试仅创建基本的Android项目时,我的build.gradle显示以下信息:
符号applicationId,versionCode,versionName,testInstrumentationRunner,排除符号“无法解析”
最终构建失败:
无法解析javax.annotation:javax.annotation-api:1.2。 要求: 项目:app> com.android.support.test.espresso:espresso-core:2.2.2
自然地,当我删除“ testCompile”状态时,构建成功。但是,我担心InteliJ Idea中Android SDK的默认配置是错误的,我不知道如何解决。我怀疑,在InteliJ(项目语言级别)中修改默认项目结构后,此问题已经开始,但是恢复此更改无济于事...
我的build.gradle如下:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "com.tcc.andtesttest"
minSdkVersion 26
targetSdkVersion 26
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'])
//compile 'com.android.support:appcompat-v7:26.0.0-beta1'
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
}
顶级build.gradle文件如下:
buildscript {
repositories {
google()
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
有人可以帮助我确定我的InteliJ / Andoid SDK配置出了什么问题吗?