Skip to content

Commit b1d9de2

Browse files
committedJun 5, 2021
update
1 parent ce3cfbb commit b1d9de2

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed
 

‎app/build.gradle

+1-7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ apply from: 'tinker-support.gradle'
88

99
android {
1010
compileSdkVersion rootProject.ext.android.compileSdkVersion
11+
buildToolsVersion rootProject.ext.android.buildToolsVersion
1112

1213
defaultConfig {
1314
applicationId "com.cxz.wanandroid"
@@ -55,13 +56,6 @@ android {
5556
variant.outputs.all {
5657
outputFileName = "WanAndroid-release.apk"
5758
}
58-
// variant.outputs.all { output ->
59-
// def outputFile = output.outputFile
60-
// if (outputFile != null && outputFile.name.endsWith('.apk')) {
61-
// def fileName = "WanAndroid-release.apk"
62-
// outputFileName = fileName
63-
// }
64-
// }
6559
}
6660
}
6761
debug {

‎build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
// maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
88
google()
99
jcenter()
10-
// mavenCentral()
10+
mavenCentral()
1111
}
1212
dependencies {
1313
classpath 'com.android.tools.build:gradle:3.5.2'
@@ -26,6 +26,7 @@ allprojects {
2626
// maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
2727
google()
2828
jcenter()
29+
mavenCentral()
2930
maven { url "https://jitpack.io" }
3031
}
3132
}

‎config.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ ext {
7272
"flow-layout" : 'com.hyman:flowlayout-lib:1.1.2',
7373
"eventbus" : 'org.greenrobot:eventbus:3.1.1',
7474
//"bugly" : 'com.tencent.bugly:crashreport:3.1.0',
75-
"bugly-crash-up" : 'com.tencent.bugly:crashreport_upgrade:1.4.2',
75+
"bugly-crash-up" : 'com.tencent.bugly:crashreport_upgrade:1.5.23',
7676
// 指定tinker依赖版本(注:应用升级1.3.5版本起,不再内置tinker)
77-
'tinker' : 'com.tencent.tinker:tinker-android-lib:1.9.14.3',
77+
'tinker' : 'com.tencent.tinker:tinker-android-lib:1.9.14.16',
7878
//'nativecrashreport' : 'com.tencent.bugly:nativecrashreport:3.7.1',//latest.release
7979
"swipeback" : 'com.cxz:swipeback:1.0.1',
8080
"material-dialogs" : 'com.afollestad.material-dialogs:commons:0.9.4.4',

0 commit comments

Comments
 (0)
Please sign in to comment.