123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- import java.text.SimpleDateFormat
- plugins {
- id 'com.android.application'
- }
- android {
- compileSdkVersion rootProject.ext.android.compileSdkVersion
- defaultConfig {
- applicationId rootProject.ext.version.applicationId
- minSdkVersion rootProject.ext.android.minSdkVersion
- targetSdkVersion rootProject.ext.android.targetSdkVersion
- versionCode rootProject.ext.version.versionCode
- versionName rootProject.ext.version.versionName
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- signingConfigs {
- release {
- storeFile file('greatself.jks')
- keyAlias 'great'
- keyPassword 'great123456'
- storePassword 'great123456'
- }
- }
- // dataBinding.enabled true
- buildTypes {
- release {
- minifyEnabled false
- zipAlignEnabled false
- signingConfig signingConfigs.release
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- buildConfigField "String", "API_HOST", rootProject.ext.release.apiHost
- buildConfigField "String", "API_PATH", rootProject.ext.release.apiName
- buildConfigField "String", "FILEAPI_HOST", rootProject.ext.release.fileApiHost
- buildConfigField "String", "FILEAPI_PATH", rootProject.ext.release.fileApiName
- buildConfigField "String", "prjectName", rootProject.ext.release.prjectName
- }
- debug {
- // debuggable true // 是否调试
- minifyEnabled false
- zipAlignEnabled false
- signingConfig signingConfigs.release
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- buildConfigField "String", "API_HOST", rootProject.ext.debug.apiHost
- buildConfigField "String", "API_PATH", rootProject.ext.debug.apiName
- buildConfigField "String", "FILEAPI_HOST", rootProject.ext.debug.fileApiHost
- buildConfigField "String", "FILEAPI_PATH", rootProject.ext.debug.fileApiName
- buildConfigField "String", "prjectName", rootProject.ext.debug.prjectName
- }
- }
- sourceSets {
- main {
- jniLibs.srcDirs = ['libs']
- aidl.srcDirs = ['src/main/aidl']
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- lint {
- abortOnError false
- checkReleaseBuilds false
- }
- namespace 'com.hw.nativeapp'
- android.applicationVariants.all {
- variant ->
- variant.outputs.all {
- //在这里修改apk文件名
- def df = new SimpleDateFormat('yyyyMMdd')
- outputFileName = "${rootProject.ext.defaultConfig.apklabel}_${variant.name}_${df.format(new Date())}_${variant.versionName}_${variant.versionCode}.apk"
- }
- }
- }
- dependencies {
- implementation fileTree(include: ['*.aar','*.jar'], dir: 'libs')
- // implementation fileTree(dir: 'libs', include: ['*.aar', '*.jar'], exclude: [])
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'androidx.multidex:multidex:2.0.0'
- implementation 'com.google.android.material:material:1.1.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- implementation 'androidx.navigation:navigation-fragment:2.2.2'
- implementation 'androidx.navigation:navigation-ui:2.2.2'
- implementation 'androidx.viewpager:viewpager:1.0.0'
- testImplementation 'junit:junit:4.+'
- androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- implementation 'com.xw.repo:xedittext:2.1.0@aar'
- api 'com.jakewharton:butterknife:10.2.3'
- implementation 'androidx.appcompat:appcompat:1.2.0'
- annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'
- implementation 'com.squareup.retrofit2:converter-scalars:2.2.0'
- implementation 'com.squareup.retrofit2:converter-gson:2.2.0'
- implementation 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
- implementation 'de.hdodenhof:circleimageview:2.2.0'
- implementation 'androidx.cardview:cardview:1.0.0'
- implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.34'
- implementation 'com.jakewharton:butterknife:10.2.3'
- implementation 'com.blankj:utilcode:1.30.5'
- api 'io.reactivex.rxjava2:rxjava:2.0.6'
- api 'io.reactivex.rxjava2:rxandroid:2.0.1'
- implementation 'com.squareup.okhttp3:okhttp:3.8.1'
- implementation 'com.hjq:titlebar:5.0'
- // implementation 'org.xutils:xutils:3.4.0'
- implementation 'com.alibaba:fastjson:1.2.8'
- implementation 'com.google.zxing:core:3.4.1'
- implementation('com.journeyapps:zxing-android-embedded:3.6.0') { transitive = false }
- //文件下载--升级
- implementation 'com.liulishuo.filedownloader:library:1.7.4'
- // 图片加载
- implementation 'com.squareup.picasso:picasso:2.5.2'
- implementation 'com.google.android.material:material:1.2.1'
- implementation 'androidx.recyclerview:recyclerview:1.1.0'
- implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0'
- implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0'
- implementation 'cn.yhq:android-dialog:1.6.0'
- implementation 'androidx.appcompat:appcompat:1.1.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- testImplementation 'junit:junit:4.13'
- androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- implementation 'com.github.bumptech.glide:glide:4.8.0'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
- implementation 'com.github.bumptech.glide:okhttp3-integration:4.8.0'
- //新版SDK 只需要集成这一个包即可完成所有流程
- implementation "com.sunmi:SunmiEID-SDK:1.3.11"
- }
- // SH1: 84:DD:2A:D6:4A:63:12:6B:06:9F:24:38:1F:57:32:8F:4D:5F:EE:78
|