build.gradle.bak 879 B

1234567891011121314151617181920212223242526272829303132333435
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.novoda.bintray-release'
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion "25.0.3"
  6. defaultConfig {
  7. minSdkVersion 10
  8. targetSdkVersion 25
  9. versionCode 1
  10. versionName "1.0"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. implementation fileTree(include: ['*.jar'], dir: 'libs')
  21. implementation 'com.android.support:support-v4:25.0.0'
  22. }
  23. publish {
  24. userOrg = 'hongyangandroid'//bintray.com用户名
  25. groupId = 'com.hyman'//jcenter上的路径
  26. artifactId = 'flowlayout-lib'//项目名称
  27. publishVersion = '1.1.2'//版本号
  28. desc = 'save time'
  29. website = 'https://github.com/hongyangAndroid/FlowLayout'
  30. }