From e27f54aa7e10836e2741dc590559e1039fbade78 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期五, 23 七月 2021 15:06:41 +0800
Subject: [PATCH] 1. 创建子任务时,执行用户默认为当前登录用户或执行组中的第一人 2. 修复部分企业类型问题图标错误 3. 新增场景账户自动生成功能
---
app/build.gradle | 28 +++++++++++++++++++++++++---
1 files changed, 25 insertions(+), 3 deletions(-)
diff --git a/app/build.gradle b/app/build.gradle
index ec3eab6..cb3ecc5 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -4,6 +4,7 @@
apply plugin: 'kotlin-android-extensions' // apply plugin
apply plugin: 'kotlin-kapt'
apply plugin: 'com.jakewharton.butterknife'
+apply plugin: 'com.aliyun.ams.emas-services'
android {
compileSdkVersion 28
@@ -13,12 +14,17 @@
applicationId "cn.flightfeather.thirdapp"
minSdkVersion 19
targetSdkVersion 28
- versionCode 21
- versionName "1.1.14.04"
+ versionCode 28
+ versionName "1.1.14.12"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
renderscriptTargetApi 25
renderscriptSupportModeEnabled true
multiDexEnabled true
+
+ ndk {
+ //x5 鍏煎64浣嶆墜鏈�
+ abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'mips'
+ }
}
buildTypes {
release {
@@ -45,7 +51,7 @@
}
greendao {
- schemaVersion 11
+ schemaVersion 13
daoPackage 'com.ping.greendao.gen'
targetGenDir 'src/main/java'
}
@@ -91,6 +97,9 @@
implementation 'com.amap.api:location:4.6.0'
implementation 'com.amap.api:search:6.5.0.1'
+ //recyclerViewAdapter
+ implementation "com.github.CymChad:BaseRecyclerViewAdapterHelper:${adaper_version}"
+
//lifecycle
implementation "android.arch.lifecycle:extensions:${lifecycle_version}"
@@ -115,6 +124,19 @@
//kotlin plugin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.anko:anko:$anko_version"
+
+ //鑵捐TBS鏂囦欢娴忚鏈嶅姟
+ api 'com.tencent.tbs.tbssdk:sdk:43697'
+
+ //鏂囦欢涓嬭浇
+ implementation "com.liulishuo.okdownload:okdownload:${file_download_version}"
+ implementation "com.liulishuo.okdownload:sqlite:${file_download_version}"
+ implementation "com.liulishuo.okdownload:okhttp:${file_download_version}"
+ implementation "com.liulishuo.okdownload:ktx:${file_download_version}"
+ implementation "com.liulishuo.okdownload:filedownloader:${file_download_version}"
+
+ //鍦嗗舰杩涘害鏉�
+ implementation "com.mikhaellopez:circularprogressbar:${progressbar_version}"
}
repositories {
mavenCentral()
--
Gitblit v1.9.3