在Android studio 1.0 RC 4中,我试图导入eclipse Library项目而不导出库以从eclipse创建gradle文件。
将库作为模块导入后,在编译项目时,会抛出配置错误 "错误:模块不能是Android库"
我想这与mylibrar.gradle文件有关但我查了一下它没有错误。关于这个错误的任何想法。
mylibrary.gradle
apply plugin: 'com.android.library'
android {
compileSdkVersion 21
buildToolsVersion "21.1.1"
defaultConfig {
/*applicationId "xxxx"*/ // Library project doesnot have application id
minSdkVersion 9
targetSdkVersion 21
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile files('libs/yyy.jar')
}