apply plugin: 'com.android.application'
|
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android-extensions'
|
|
android {
|
compileSdkVersion 29
|
buildToolsVersion "29.0.3"
|
|
signingConfigs {
|
config {
|
keyAlias 'future'
|
keyPassword 'sinata'
|
storeFile file('future_dispatch.jks')
|
storePassword 'sinata'
|
}
|
}
|
|
defaultConfig {
|
applicationId "com.future.dispatch"
|
minSdkVersion 22
|
targetSdkVersion 29
|
versionCode 1
|
versionName "1.0"
|
multiDexEnabled true
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
ndk {
|
// 设置支持的SO库架构,第三方给的so库哪几种架构,就配置这几种架构
|
abiFilters 'armeabi'
|
}
|
manifestPlaceholders = [
|
JPUSH_PKGNAME : applicationId,
|
JPUSH_APPKEY : "55d1b9ab98801279a6bc65a7", //JPush 上注册的包名对应的 Appkey.
|
JPUSH_CHANNEL : "developer-default", //暂时填写默认值即可.
|
]
|
applicationVariants.all { variant ->
|
// 更新至Android Studio 3.3 gradle 4.10.1
|
variant.outputs.all {
|
outputFileName = "future_dispatch-${defaultConfig.versionName}-${new Date().format("yyyy-MM-dd" , TimeZone.getTimeZone("GMT+08")) }.apk"
|
}
|
}
|
}
|
|
buildTypes {
|
release {
|
minifyEnabled false
|
zipAlignEnabled true
|
signingConfig signingConfigs.config
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
debug {
|
minifyEnabled false
|
zipAlignEnabled true
|
signingConfig signingConfigs.config
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
|
compileOptions {
|
sourceCompatibility = '1.8'
|
targetCompatibility = '1.8'
|
}
|
|
lintOptions {
|
checkReleaseBuilds false
|
abortOnError false
|
}
|
|
}
|
|
|
repositories {
|
flatDir {
|
dirs 'libs'
|
}
|
}
|
|
|
dependencies {
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
implementation 'androidx.core:core-ktx:1.3.1'
|
implementation project(path: ':ChipsLayoutManager')
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
|
testImplementation 'junit:junit:4.12'
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
implementation files('libs/AMap3DMap_7.4.0_AMapNavi_7.4.0_AMapSearch_7.3.0_AMapTrack_1.3.0_AMapLocation_4.9.0_20200426.jar')
|
implementation project(path: ':xldUtils')
|
implementation 'com.google.code.gson:gson:2.8.5'
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
implementation 'com.mobsandgeeks:android-saripaar:2.0.0'
|
implementation 'androidx.multidex:multidex:2.0.1'
|
implementation 'com.github.zackratos.ultimatebar:ultimatebar3:3.1.1'
|
implementation 'org.greenrobot:eventbus:3.1.1'
|
implementation 'com.github.bumptech.glide:glide:4.9.0'
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
|
implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0'
|
implementation 'com.google.android.material:material:1.1.0'
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
implementation 'com.github.xuexiangjys:XUI:1.1.3'
|
implementation 'pub.devrel:easypermissions:1.3.0'
|
implementation 'liji.library.dev:citypickerview:5.2.1'
|
implementation 'com.google.zxing:core:3.3.0'
|
implementation 'com.ypx.yimagepicker:androidx:3.1.3'
|
implementation 'cn.jiguang.sdk:jpush:3.6.6' // 此处以JPush 3.6.6 版本为例。
|
implementation 'cn.jiguang.sdk:jcore:2.3.8' // 此处以JCore 2.3.8 版本为例。
|
}
|