Upgrade RTMP dependency

- Drop minimum version to new RTMP min version
- Publish the extension

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=162477200
This commit is contained in:
olly 2017-07-19 06:15:24 -07:00 committed by Oliver Woodman
parent 5e203f482a
commit e5952d4859

View File

@ -19,14 +19,23 @@ android {
buildToolsVersion project.ext.buildToolsVersion buildToolsVersion project.ext.buildToolsVersion
defaultConfig { defaultConfig {
// TODO: Lower minSdkVersion as much as possible once this issue in LibRtmp is fixed: minSdkVersion 15
// https://github.com/ant-media/LibRtmp-Client-for-Android/issues/39
minSdkVersion 21
targetSdkVersion project.ext.targetSdkVersion targetSdkVersion project.ext.targetSdkVersion
} }
} }
dependencies { dependencies {
compile project(modulePrefix + 'library-core') compile project(modulePrefix + 'library-core')
compile 'net.butterflytv.utils:rtmp-client:0.2.7.1' compile 'net.butterflytv.utils:rtmp-client:0.2.8'
} }
ext {
javadocTitle = 'RTMP extension'
}
apply from: '../../javadoc_library.gradle'
ext {
releaseArtifact = 'extension-rtmp'
releaseDescription = 'RTMP extension for ExoPlayer.'
}
apply from: '../../publish.gradle'