Commit 5c65790b44bfe9d580c42fe0af250b5232919fdb

Authored by 杨帅
1 parent 2106a3ad

1 修改最低支持系统版本

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