build.gradle 772 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. group 'com.izouma.ttdj_plugin'
  2. version '1.0-SNAPSHOT'
  3. buildscript {
  4. repositories {
  5. google()
  6. jcenter()
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:3.2.1'
  10. }
  11. }
  12. rootProject.allprojects {
  13. repositories {
  14. google()
  15. jcenter()
  16. flatDir {
  17. dirs 'libs'
  18. }
  19. }
  20. }
  21. apply plugin: 'com.android.library'
  22. android {
  23. compileSdkVersion 28
  24. defaultConfig {
  25. minSdkVersion 16
  26. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  27. }
  28. lintOptions {
  29. disable 'InvalidPackage'
  30. }
  31. }
  32. dependencies {
  33. implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
  34. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  35. }