just_audio/android/build.gradle

48 lines
965 B
Groovy
Raw Normal View History

2019-11-28 06:55:32 +00:00
group 'com.ryanheise.just_audio'
2019-11-25 14:50:21 +00:00
version '1.0'
buildscript {
repositories {
google()
jcenter()
}
dependencies {
2020-08-21 05:04:57 +00:00
classpath 'com.android.tools.build:gradle:3.5.0'
2019-11-25 14:50:21 +00:00
}
}
rootProject.allprojects {
repositories {
google()
jcenter()
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
defaultConfig {
2019-12-31 10:50:16 +00:00
minSdkVersion 16
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2019-11-25 14:50:21 +00:00
}
2019-11-25 14:50:21 +00:00
lintOptions {
disable 'InvalidPackage'
}
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
2019-11-25 14:50:21 +00:00
}
2019-12-31 09:38:46 +00:00
dependencies {
implementation 'com.google.android.exoplayer:exoplayer-core:2.11.4'
implementation 'com.google.android.exoplayer:exoplayer-dash:2.11.4'
implementation 'com.google.android.exoplayer:exoplayer-hls:2.11.4'
implementation 'com.google.android.exoplayer:exoplayer-smoothstreaming:2.11.4'
2019-12-31 09:38:46 +00:00
}