@@ -2,6 +2,14 @@ apply plugin: 'com.android.application'
22apply plugin : ' android-apt'
33
44android {
5+ signingConfigs {
6+ NetworkDiagnosis {
7+ keyAlias ' darkal'
8+ keyPassword ' 333333'
9+ storeFile file(' ./darkal.jks' )
10+ storePassword ' 333333'
11+ }
12+ }
513 compileSdkVersion 24
614 buildToolsVersion ' 24.0.3'
715 dataBinding {
@@ -16,17 +24,17 @@ android {
1624 // Enabling multidex support.
1725 multiDexEnabled true
1826 resConfigs " zh"
19- // signingConfig signingConfigs.NetworkDiagnosis
27+ signingConfig signingConfigs.NetworkDiagnosis
2028 }
2129 buildTypes {
2230 release {
2331 minifyEnabled true
2432 shrinkResources true
2533 proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
26- // signingConfig signingConfigs.NetworkDiagnosis
34+ signingConfig signingConfigs.NetworkDiagnosis
2735 }
2836 debug {
29- // signingConfig signingConfigs.NetworkDiagnosis
37+ signingConfig signingConfigs.NetworkDiagnosis
3038 }
3139 }
3240 packagingOptions {
@@ -80,20 +88,16 @@ dependencies {
8088 // 日志处理
8189 compile ' org.slf4j:slf4j-api:1.7.21'
8290 // compile 'org.slf4j:jcl-over-slf4j:1.7.21'
83-
8491 // 启用Netty的日志输出(调试用)
85-
8692 // compile 'com.noveogroup.android:android-logger:1.3.5'
87-
8893 // 文件上传插件
8994 compile ' net.gotev:uploadservice:3.0.3'
9095 // Bugly上报
9196 compile ' com.tencent.bugly:crashreport_upgrade:latest.release'
92- // compile 'com.tencent.bugly:nativecrashreport:latest.release'
97+ // compile 'com.tencent.bugly:nativecrashreport:latest.release'
9398 // 图片显示
9499 compile ' com.github.bumptech.glide:glide:3.7.0'
95100 compile ' com.github.clans:fab:1.6.4'
96-
97101 // Json格式化
98102 compile ' com.google.code.gson:gson:2.7'
99103}
0 commit comments