123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- apply plugin: 'com.android.application'
- //apply plugin: 'kotlin-android'
- //apply plugin: 'kotlin-android-extensions'
- android {
- signingConfigs {
- pda_storage {
- keyAlias 'ruiziuasmes_alias'
- keyPassword 'pdakeystone'
- storeFile file('C:\\sigin\\ruiziuasmes.jks')
- storePassword 'pdakeystone'
- }
- }
- compileSdkVersion rootProject.ext.android.compileSdkVersion
- buildToolsVersion rootProject.ext.android.buildToolsVersion
- defaultConfig {
- applicationId "com.uas.ruiziuasmes"
- minSdkVersion rootProject.ext.android.minSdkVersion
- targetSdkVersion rootProject.ext.android.targetSdkVersion
- versionCode rootProject.ext.android.versionCode
- versionName rootProject.ext.android.versionName
- javaCompileOptions {
- annotationProcessorOptions {
- includeCompileClasspath = true
- }
- }
- multiDexEnabled true
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- packagingOptions {
- exclude 'META-INF/LICENSE.txt'
- exclude 'META-INF/NOTICE.txt'
- }
- applicationVariants.all { variant ->
- variant.outputs.all { output ->
- def outputFile = output.outputFile
- def fileName
- if (outputFile != null && outputFile.name.endsWith('.apk')) {
- if (variant.buildType.name.equals('release')) {
- def releaseInfo = getVersionName()
- fileName = "RUIZI_UAS_MES_STORAGE_RELEASE_${releaseInfo}.apk"
- } else if (variant.buildType.name.equals('debug')) {
- def debugInfo = getVersionName()
- fileName = "RUIZI_UAS_MES_STORAGE_DEBUG_${debugInfo}.apk"
- }
- outputFileName = fileName
- }
- }
- }
- compileOptions {
- targetCompatibility 1.8
- sourceCompatibility 1.8
- }
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'com.android.support:design:28.0.0'
- implementation 'com.android.support:appcompat-v7:28.0.0'
- implementation 'com.android.support.constraint:constraint-layout:2.0.1'
- testImplementation 'junit:junit:4.12'
- api files('libs/volley.jar')
- api files('libs/gson-2.2.4.jar')
- api project(':pulltoreflashlibrary')
- api project(':progresslitelibrary')
- api project(':lib-zxing')
- api deps.appcompatV7
- api deps.stetho
- api deps.fastjson
- api deps.xUtils
- api deps.okhttp
- api deps.BaseRecyclerViewAdapterHelper
- api deps.smartRefreshLayout
- api deps.smartRefreshHeader
- api deps.smartTable
- api deps.basePopup
- api deps.permisson
- api deps.recyclerview
- api project(':bluetooth')
- implementation deps.switchView
- implementation 'org.jetbrains:annotations:15.0'
- implementation(deps.MultiTypeFilePicker) {
- exclude group: "com.android.support"
- }
- implementation 'com.umeng.umsdk:common:9.4.0'// 必选
- implementation 'com.umeng.umsdk:asms:1.2.3'// 必选
- implementation 'com.umeng.umsdk:apm:1.4.0' // 错误分析升级为独立SDK,看crash数据请一定集成,可选
- implementation 'org.greenrobot:eventbus:3.2.0'
- implementation 'com.gavin.com.library:stickyDecoration:1.4.11'
- //OKGO
- implementation 'com.lzy.net:okgo:3.0.4'
- implementation 'com.lzy.net:okrx2:2.0.2'
- implementation 'com.lzy.net:okserver:2.0.5'
- implementation 'com.contrarywind:Android-PickerView:4.1.9'
- }
- def getVersionName() {
- return rootProject.ext.android.versionName
- }
|