blob: 697bcd21744c456397a0aac277ff1d375a165811 [file] [log] [blame]
apply plugin: 'com.android.library'
archivesBaseName = 'support-v4'
dependencies {
compile project(':support-compat')
compile project(':support-media-compat')
compile project(':support-core-utils')
compile project(':support-core-ui')
compile project(':support-fragment')
}
android {
compileSdkVersion project.ext.currentSdk
defaultConfig {
minSdkVersion 9
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
// This disables the builds tools automatic vector -> PNG generation
generatedDensities = []
}
sourceSets {
main.manifest.srcFile 'AndroidManifest.xml'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}