config.gradle 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ext {
  2. plugins = [application: 'com.android.application',
  3. library : 'com.android.library',
  4. maven : 'com.github.dcendents.android-maven',
  5. bintray : 'com.jfrog.bintray']
  6. android = [applicationId : "com.yanzhenjie.permission.sample",
  7. compileSdkVersion: 29,
  8. buildToolsVersion: "29.0.2",
  9. minSdkVersion : 14,
  10. targetSdkVersion : 29,
  11. versionCode : 108,
  12. versionName : "2.0.3"]
  13. bintray = [version : "2.0.3",
  14. siteUrl : 'https://github.com/yanzhenjie/AndPermission',
  15. gitUrl : 'https://github.com/yanzhenjie/AndPermission.git',
  16. group : "com.yanzhenjie",
  17. packaging : 'aar',
  18. name : 'Permission',
  19. description : 'Permission manager for Android',
  20. licenseName : 'The Apache Software License, Version 2.0',
  21. licenseUrl : 'http://www.apache.org/licenses/LICENSE-2.0.txt',
  22. developerId : 'yanzhenjie',
  23. developerName : 'yanzhenjie',
  24. developerEmail: 'im.yanzhenjie@gmail.com',
  25. binrayLibrary : "permission",
  26. bintrayRepo : "maven",
  27. bintrayUser : 'yolanda',
  28. bintrayLicense: "Apache-2.0"]
  29. dependencies = [
  30. fragment: 'com.android.support:appcompat-v7:28.0.0'
  31. ]
  32. }