41cbf073c7
Bandwidth is reported as enevts when download happens. Not by timer method
42 lines
1.6 KiB
Groovy
42 lines
1.6 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
def safeExtGet(prop, fallback) {
|
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion safeExtGet('compileSdkVersion', 27)
|
|
buildToolsVersion safeExtGet('buildToolsVersion', '27.0.3')
|
|
|
|
defaultConfig {
|
|
minSdkVersion safeExtGet('minSdkVersion', 16)
|
|
targetSdkVersion safeExtGet('targetSdkVersion', 27)
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
|
|
// implementation('com.google.android.exoplayer:exoplayer:2.9.0') {
|
|
// exclude group: 'com.android.support'
|
|
// }
|
|
implementation project(':exoplayer-library-core')
|
|
implementation project(':exoplayer-library-dash')
|
|
implementation project(':exoplayer-library-ui')
|
|
implementation project(':exoplayer-library-smoothstreaming')
|
|
implementation project(':exoplayer-library-hls')
|
|
implementation project(':exoplayer-extension-okhttp')
|
|
|
|
// All support libs must use the same version
|
|
implementation "com.android.support:support-annotations:${safeExtGet('supportLibVersion', '+')}"
|
|
implementation "com.android.support:support-compat:${safeExtGet('supportLibVersion', '+')}"
|
|
implementation "com.android.support:support-media-compat:${safeExtGet('supportLibVersion', '+')}"
|
|
|
|
// implementation('com.google.android.exoplayer:extension-okhttp:2.9.0') {
|
|
// exclude group: 'com.squareup.okhttp3', module: 'okhttp'
|
|
// }
|
|
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
|
|
|
|
}
|