build.gradle 846 B

1234567891011121314151617181920212223242526272829303132333435
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion ANDROID_COMPILE_SDK_VERSION as int
  4. defaultConfig {
  5. minSdkVersion ANDROID_MIN_SDK_VERSION as int
  6. targetSdkVersion ANDORID_TARGET_SDK_VERSION as int
  7. versionCode 1
  8. versionName "1.0"
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  14. }
  15. }
  16. sourceSets {
  17. main {
  18. res.srcDirs = ['src/main/res', 'src/main/res-alertdialog']
  19. }
  20. }
  21. }
  22. dependencies {
  23. implementation 'androidx.appcompat:appcompat:1.0.0'
  24. }
  25. tasks.withType(Javadoc) {
  26. options.addStringOption('Xdoclint:none', '-quiet')
  27. options.addStringOption('encoding', 'UTF-8')
  28. options.addStringOption('charSet', 'UTF-8')
  29. }