包含多个源集的Android库:
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 12
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'
}
}
sourceSets {
foo
bar
}
}
在android工作室内部,当向库中添加新类时,没有选择源Set来添加新类。
如何编译除main之外的源集(foo,bar)?以及如何将它们打包成.aar文件?