
With this change, it becomes possible to depend on ExoPlayer locally in settings.gradle by doing: gradle.ext.exoplayerRoot = 'path/to/exoplayer/root' apply from: new File(gradle.ext.exoplayerRoot, 'core_settings.gradle') You can optionally add a prefix onto ExoPlayer's module names by adding: gradle.ext.exoplayerModulePrefix = 'prefix' Issue: #2851 Issue: #2974 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=160277967
37 lines
1.7 KiB
Groovy
37 lines
1.7 KiB
Groovy
apply from: '../../constants.gradle'
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion project.ext.compileSdkVersion
|
|
buildToolsVersion project.ext.buildToolsVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion project.ext.targetSdkVersion
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(modulePrefix + 'library-core')
|
|
compile 'com.android.support:support-annotations:' + supportLibraryVersion
|
|
compile 'com.google.ads.interactivemedia.v3:interactivemedia:3.6.0'
|
|
compile 'com.google.android.gms:play-services-ads:10.2.4'
|
|
// There exists a dependency chain:
|
|
// com.google.android.gms:play-services-ads:10.2.4
|
|
// |-> com.google.android.gms:play-services-ads-lite:10.2.4
|
|
// |-> com.google.android.gms:play-services-basement:10.2.4
|
|
// |-> com.android.support:support-v4:24.0.0
|
|
// The support-v4:24.0.0 module directly includes older versions of the same
|
|
// classes as com.android.support:support-annotations. We need to manually
|
|
// force it to the version we're using to avoid a compilation failure. This
|
|
// will become unnecessary when the support-v4 dependency in the chain above
|
|
// has been updated to 24.2.0 or later.
|
|
compile 'com.android.support:support-v4:' + supportLibraryVersion
|
|
androidTestCompile project(modulePrefix + 'library')
|
|
androidTestCompile 'com.google.dexmaker:dexmaker:' + dexmakerVersion
|
|
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:' + dexmakerVersion
|
|
androidTestCompile 'org.mockito:mockito-core:' + mockitoVersion
|
|
androidTestCompile 'com.android.support.test:runner:' + testSupportLibraryVersion
|
|
}
|