mirror of
https://github.com/androidx/media.git
synced 2025-05-11 17:49:52 +08:00

- Add proguard rules for libraries/extensions into .aar files - Add proguard rules to retain CEA608/708 decoder constructors - Remove lots of default config from gradle files - Remove disabling of abort on lint error - Enable optimizations on release builds of demo app ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=144350233
17 lines
353 B
Groovy
17 lines
353 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion project.ext.compileSdkVersion
|
|
buildToolsVersion project.ext.buildToolsVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion 9
|
|
targetSdkVersion project.ext.targetSdkVersion
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':library')
|
|
compile 'org.mockito:mockito-core:1.9.5'
|
|
}
|