build.gradle 679 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. group 'com.ryanheise.audioservice'
  2. version '1.0-SNAPSHOT'
  3. buildscript {
  4. repositories {
  5. google()
  6. jcenter()
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:3.5.0'
  10. }
  11. }
  12. rootProject.allprojects {
  13. repositories {
  14. google()
  15. jcenter()
  16. }
  17. }
  18. apply plugin: 'com.android.library'
  19. android {
  20. compileSdkVersion 28
  21. defaultConfig {
  22. minSdkVersion 16
  23. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  24. }
  25. lintOptions {
  26. disable 'InvalidPackage'
  27. }
  28. }
  29. dependencies {
  30. implementation 'androidx.core:core:1.1.0'
  31. implementation 'androidx.media:media:1.1.0'
  32. }