Commit 5c65790b44bfe9d580c42fe0af250b5232919fdb

Authored by 杨帅
1 parent 2106a3ad

1 修改最低支持系统版本

app/build.gradle
... ... @@ -9,10 +9,10 @@ android {
9 9 compileSdkVersion 28
10 10 defaultConfig {
11 11 applicationId "com.cnlive.strike"
12   - minSdkVersion 18
13   - targetSdkVersion 27
14   - versionCode 1
15   - versionName "1.0"
  12 + minSdkVersion rootProject.ext.minSdkVersion
  13 + targetSdkVersion rootProject.ext.targetSdkVersion
  14 + versionCode rootProject.ext.versionCode
  15 + versionName rootProject.ext.versionName
16 16 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
17 17 multiDexEnabled true
18 18 javaCompileOptions {
... ...
build.gradle
... ... @@ -53,7 +53,7 @@ ext {
53 53  
54 54 compileSdkVersion = 28
55 55 buildToolsVersion = "28.0.3"
56   - minSdkVersion = 18
  56 + minSdkVersion = 16
57 57 targetSdkVersion = 27
58 58  
59 59 //support 相关
... ...
config.gradle
... ... @@ -21,7 +21,7 @@ ext {
21 21 //编译方式
22 22 debug : false,
23 23 //版本号
24   - version: "0.6.7",
  24 + version: "0.6.8",
25 25 //Lib库前缀
26 26 packeg : "com.cnlive.module",
27 27 //Lib库名称
... ...