version:1.8.1

date:2021-11-03 11:12:56
fix:修复恢复出厂设置后搜题开关不显示
add:
This commit is contained in:
2021-11-03 11:20:15 +08:00
parent c04d66726b
commit 32e1d3726f
18 changed files with 370 additions and 217 deletions

View File

@@ -1,16 +1,17 @@
apply plugin: 'com.android.application'
def appName() {
static def appName() {
return "SnInfo"
}
def releaseTime() {
static def releaseTime() {
return new Date().format("yyyyMMdd-HHmmss", TimeZone.getDefault())
}
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.info.sn"
minSdkVersion 24
@@ -45,8 +46,8 @@ android {
productFlavors {
beta {
flavorDimensions "default"
versionCode 79
versionName "1.7.9"
versionCode 81
versionName "1.8.1"
manifestPlaceholders = [
JPUSH_PKGNAME: "com.info.sn",
JPUSH_APPKEY : "edf9cec22731b8b2fed56ee6", //JPush 上注册的包名对应的 Appkey.
@@ -198,9 +199,9 @@ dependencies {
//Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.4.0'
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.5.0'
//RxJava
implementation 'io.reactivex.rxjava2:rxjava:2.2.8'
implementation 'io.reactivex.rxjava2:rxjava:2.2.12'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
//生命周期管理
implementation 'com.trello.rxlifecycle2:rxlifecycle:2.2.2'
@@ -208,7 +209,7 @@ dependencies {
implementation 'com.trello.rxlifecycle2:rxlifecycle-components:2.2.2'
implementation 'com.google.code.gson:gson:2.8.7'
implementation 'com.google.zxing:core:3.3.0'
implementation 'com.google.zxing:core:3.3.2'
implementation 'com.alibaba:fastjson:1.2.76'