@@ -2,43 +2,38 @@ apply plugin: 'com.android.application'
2
2
apply plugin : ' kotlin-android'
3
3
4
4
android {
5
- compileSdkVersion 24
6
- buildToolsVersion " 25.0.2 "
5
+ compileSdkVersion 27
6
+
7
7
defaultConfig {
8
8
applicationId " com.blanke.mdwechat"
9
9
minSdkVersion 21
10
- targetSdkVersion 23
10
+ targetSdkVersion 27
11
11
versionCode 29
12
12
versionName " 1.9.0"
13
- testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
14
13
}
15
14
buildTypes {
16
15
release {
17
16
minifyEnabled false
18
17
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
19
18
}
20
19
}
21
- lintOptions {
22
- disable ' MissingTranslation'
23
- }
24
20
}
25
21
26
22
dependencies {
27
- compile fileTree(include : [ ' *.jar ' ], dir : ' libs ' )
28
- compile ' com.android.support:support-v4:23.2.1 '
23
+ implementation fileTree(dir : ' libs ' , include : [ ' *.jar ' ] )
24
+ implementation ' com.android.support:appcompat-v7:27.0.2 '
29
25
30
- provided ' de.robv.android.xposed:api:82 '
31
- provided ' de.robv.android.xposed:api:82 :sources'
26
+ compileOnly ' de.robv.android.xposed:api:53 '
27
+ compileOnly ' de.robv.android.xposed:api:53 :sources'
32
28
33
- compile project(' :fab-lib' )
34
- compile project(' :tablayout-lib' )
35
- compile project(' :ColorPicker' )
29
+ implementation ' com.github.gh0u1l5:wechat-spellbook:0.0.2'
36
30
37
- compile ' com.google.code.gson:gson:2.8.1'
38
- compile " org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version "
39
- }
40
- repositories {
41
- mavenCentral()
31
+ implementation project(' :fab-lib' )
32
+ implementation project(' :tablayout-lib' )
33
+ implementation project(' :ColorPicker' )
34
+
35
+ implementation ' com.google.code.gson:gson:2.8.2'
36
+ implementation " org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version "
42
37
}
43
38
44
39
// 每次修改运行后自动让 VXP 中的模块`即时生效` ,需要将 (Debug Configurations) - Before Launch - Gradle aware Make - 修改为 :app:installDebug
0 commit comments