blob: 35636cef22093aee08ba03dcb24c25d55ea49cb6 [file] [log] [blame]
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.0"
defaultConfig {
applicationId "com.example.manifest_merger_example"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
productFlavors {
flavor {
applicationId "com.example.manifest_merger_example.flavor"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
}
buildTypes {
release {
minifyEnabled false
}
}
}
dependencies {
compile project(':examplelibrary')
compile fileTree(dir: 'libs', include: ['*.jar'])
}