我正在使用 Android Studio 3.0.1
graddle: gradle-4.6-all
我创建了一个空体结构的模块,当我尝试将compile project (:testmodule)
添加到我的 app build.gradle并同步时,它会一直说could not resolve project :testmodule
这是我的应用 build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.krot.aidltest"
minSdkVersion 22
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
compile project (':testmodule')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
}
这是我的模块(testmodule) build.graddle
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.testmodule"
minSdkVersion 22
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
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:26.1.0'
}
我尝试了一些方法,但它没有用,请帮忙。
答案 0 :(得分:0)
尝试使用实现代替编译。
implementation project (':testmodule')
修改 - 请尝试以下选项。
答案 1 :(得分:0)
最后,我找到了我的问题的答案。这是因为当我尝试New module ...
时,我选择了 Phone & Tablet Module
这个选项。事实上,它必须是 Android Library
(在电话和平板电脑模块旁边)而不是第一个选项。