build.gradle 687 B

123456789101112131415161718192021222324252627
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion COMPILE_SDK_VERSION as int
  4. buildToolsVersion BUILD_TOOLS_VERSION
  5. defaultConfig {
  6. minSdkVersion MIN_SDK_VERSION
  7. targetSdkVersion TARGET_SDK_VERSION as int
  8. versionCode 1
  9. versionName "1.0"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. implementation 'com.forward.androids:androids:1.1.4'
  20. }
  21. //if (isForUpload2Maven()) {
  22. // apply from: "https://raw.githubusercontent.com/1993hzw/common/master/bintrayUpload.gradle"
  23. //}