blob: 3f4c53ef76987225cc53fe6eebee24434035afb0 [file] [log] [blame]
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
defaultConfig {
minSdkVersion 9
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
}
}
flavorDimensions 'foo'
productFlavors {
basic {
dimension 'foo'
applicationId "com.example.dependentmodules.app"
}
paid {
dimension 'foo'
applicationId "com.example.dependentmodules.app.paid"
}
}
}
dependencies {
api 'com.android.support:appcompat-v7:+'
api fileTree(dir: 'libs', include: ['*.jar'])
api project(":lib")
}