build.gradle 5.2 KB

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