Няма описание

build.gradle 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 28
  4. buildToolsVersion "28.0.3"
  5. defaultConfig {
  6. minSdkVersion 16
  7. targetSdkVersion 28
  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. sourceCompatibility = 1.7
  19. targetCompatibility = 1.7
  20. ext {
  21. bintrayRepo = 'android'
  22. bintrayName = 'pre-loader'
  23. publishedGroupId = 'com.billy.android'
  24. libraryName = 'PreLoader'
  25. artifact = 'pre-loader'
  26. libraryDescription = 'android data pre-loader'
  27. siteUrl = 'https://github.com/luckybilly/PreLoader'
  28. gitUrl = 'git@github.com:luckybilly/PreLoader.git'
  29. libraryVersion = '2.1.0'
  30. developerId = 'billy'
  31. developerName = 'billy'
  32. developerEmail = 'okkanan@hotmail.com'
  33. licenseName = 'The Apache Software License, Version 2.0'
  34. licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
  35. allLicenses = ["Apache-2.0"]
  36. }
  37. //apply from: rootProject.file('bintray.gradle')