build.gradle 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. import java.text.SimpleDateFormat
  2. plugins {
  3. id 'com.android.application'
  4. }
  5. android {
  6. compileSdkVersion rootProject.ext.android.compileSdkVersion
  7. defaultConfig {
  8. applicationId rootProject.ext.version.applicationId
  9. minSdkVersion rootProject.ext.android.minSdkVersion
  10. targetSdkVersion rootProject.ext.android.targetSdkVersion
  11. versionCode rootProject.ext.version.versionCode
  12. versionName rootProject.ext.version.versionName
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. signingConfigs {
  16. release {
  17. storeFile file('greatself.jks')
  18. keyAlias 'great'
  19. keyPassword 'great123456'
  20. storePassword 'great123456'
  21. }
  22. }
  23. buildTypes {
  24. release {
  25. minifyEnabled false
  26. zipAlignEnabled false
  27. signingConfig signingConfigs.release
  28. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  29. buildConfigField "String", "API_HOST", rootProject.ext.release.apiHost
  30. buildConfigField "String", "API_PATH", rootProject.ext.release.apiName
  31. buildConfigField "String", "FILEAPI_HOST", rootProject.ext.release.fileApiHost
  32. buildConfigField "String", "FILEAPI_PATH", rootProject.ext.release.fileApiName
  33. }
  34. debug {
  35. // debuggable true // 是否调试
  36. minifyEnabled false
  37. zipAlignEnabled false
  38. signingConfig signingConfigs.release
  39. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  40. buildConfigField "String", "API_HOST", rootProject.ext.debug.apiHost
  41. buildConfigField "String", "API_PATH", rootProject.ext.debug.apiName
  42. buildConfigField "String", "FILEAPI_HOST", rootProject.ext.debug.fileApiHost
  43. buildConfigField "String", "FILEAPI_PATH", rootProject.ext.debug.fileApiName
  44. }
  45. }
  46. sourceSets {
  47. main {
  48. jniLibs.srcDirs = ['libs']
  49. aidl.srcDirs = ['src/main/aidl']
  50. }
  51. }
  52. compileOptions {
  53. sourceCompatibility JavaVersion.VERSION_1_8
  54. targetCompatibility JavaVersion.VERSION_1_8
  55. }
  56. lint {
  57. abortOnError false
  58. checkReleaseBuilds false
  59. }
  60. namespace 'com.hw.nativeapp'
  61. android.applicationVariants.all {
  62. variant ->
  63. variant.outputs.all {
  64. //在这里修改apk文件名
  65. def df = new SimpleDateFormat('yyyyMMdd')
  66. outputFileName = "PDA_${variant.name}_${df.format(new Date())}_${variant.versionName}_${variant.versionCode}.apk"
  67. }
  68. }
  69. }
  70. dependencies {
  71. implementation fileTree(include: ['*.aar','*.jar'], dir: 'libs')
  72. // implementation fileTree(dir: 'libs', include: ['*.aar', '*.jar'], exclude: [])
  73. implementation 'androidx.appcompat:appcompat:1.2.0'
  74. implementation 'androidx.multidex:multidex:2.0.0'
  75. implementation 'com.google.android.material:material:1.1.0'
  76. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  77. implementation 'androidx.navigation:navigation-fragment:2.2.2'
  78. implementation 'androidx.navigation:navigation-ui:2.2.2'
  79. implementation 'androidx.viewpager:viewpager:1.0.0'
  80. testImplementation 'junit:junit:4.+'
  81. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  82. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  83. implementation 'com.xw.repo:xedittext:2.1.0@aar'
  84. api 'com.jakewharton:butterknife:10.2.3'
  85. annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'
  86. implementation 'com.squareup.retrofit2:converter-scalars:2.2.0'
  87. implementation 'com.squareup.retrofit2:converter-gson:2.2.0'
  88. implementation 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
  89. implementation 'de.hdodenhof:circleimageview:2.2.0'
  90. implementation 'androidx.cardview:cardview:1.0.0'
  91. implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.34'
  92. implementation 'com.jakewharton:butterknife:10.2.3'
  93. implementation 'com.blankj:utilcode:1.30.5'
  94. api 'io.reactivex.rxjava2:rxjava:2.0.6'
  95. api 'io.reactivex.rxjava2:rxandroid:2.0.1'
  96. implementation 'com.squareup.okhttp3:okhttp:3.8.1'
  97. implementation 'com.hjq:titlebar:5.0'
  98. // implementation 'org.xutils:xutils:3.4.0'
  99. implementation 'com.alibaba:fastjson:1.2.8'
  100. implementation 'com.google.zxing:core:3.4.1'
  101. implementation('com.journeyapps:zxing-android-embedded:3.6.0') { transitive = false }
  102. //文件下载--升级
  103. implementation 'com.liulishuo.filedownloader:library:1.7.4'
  104. // 图片加载
  105. implementation 'com.squareup.picasso:picasso:2.5.2'
  106. implementation 'androidx.appcompat:appcompat:1.2.0'
  107. implementation 'com.google.android.material:material:1.2.1'
  108. implementation 'androidx.recyclerview:recyclerview:1.1.0'
  109. implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0'
  110. implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0'
  111. }
  112. // SH1: 84:DD:2A:D6:4A:63:12:6B:06:9F:24:38:1F:57:32:8F:4D:5F:EE:78