just_audio/android/build.gradle

41 lines
649 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 {
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 {
minSdkVersion 21
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
}