android库:多个源集

时间:2017-09-25 19:12:38

标签: android android-library source-sets

包含多个源集的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
    }
}
  1. 在android工作室内部,当向库中添加新类时,没有选择源Set来添加新类。

  2. 如何编译除main之外的源集(foo,bar)?以及如何将它们打包成.aar文件?

0 个答案:

没有答案