build.gradle 440 B

123456789101112131415161718192021
  1. apply plugin: 'com.android.library'
  2. android {
  3. namespace 'com.github.jaredrummler' // <-- 在这里添加 namespace
  4. compileSdkVersion 28
  5. buildToolsVersion '28.0.3'
  6. resourcePrefix 'ms__'
  7. defaultConfig {
  8. minSdkVersion 14
  9. targetSdkVersion 28
  10. }
  11. }
  12. dependencies {
  13. implementation 'androidx.annotation:annotation:1.0.0'
  14. testImplementation 'junit:junit:4.12'
  15. }
  16. //apply from: rootProject.file('gradle/maven-push.gradle')