Skip to content

Commit 936fc02

Browse files
committed
fix payment
1 parent 86ae3e1 commit 936fc02

28 files changed

+187
-304
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Tue Apr 18 11:18:07 CST 2017
1+
#Wed May 10 16:16:55 CST 2017
22
E\:\\AndroidStudioProjects\\CodeBlog\\PushSDK\\build\\intermediates\\bundles\\debug\\res\\layout\\upush_notification.xml=E\:\\AndroidStudioProjects\\CodeBlog\\PushSDK\\build\\intermediates\\res\\merged\\androidTest\\debug\\layout\\upush_notification.xml
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Tue Apr 18 11:18:03 CST 2017
1+
#Wed May 10 16:16:55 CST 2017
22
E\:\\AndroidStudioProjects\\CodeBlog\\PushSDK\\res\\layout\\upush_notification.xml=E\:\\AndroidStudioProjects\\CodeBlog\\PushSDK\\build\\intermediates\\bundles\\debug\\res\\layout\\upush_notification.xml
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Tue Apr 18 11:18:07 CST 2017
1+
#Wed May 10 16:16:55 CST 2017
22
E\:\\AndroidStudioProjects\\CodeBlog\\PushSDK\\res\\layout\\upush_notification.xml=E\:\\AndroidStudioProjects\\CodeBlog\\PushSDK\\build\\intermediates\\bundles\\default\\res\\layout\\upush_notification.xml

app/CodeBlog_1.4.4_BAIDU.apk

6.05 MB
Binary file not shown.

app/CodeBlog_1.4.4_MAIN.apk

6.07 MB
Binary file not shown.

app/CodeBlog_1.4.4_QIHU360.apk

6.05 MB
Binary file not shown.

app/CodeBlog_1.4.4_XIAOMI.apk

6.05 MB
Binary file not shown.

app/CodeBlog_1.4.4_YINGYONGBAO.apk

6.05 MB
Binary file not shown.

app/build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
apply plugin: 'com.android.application'
22
apply plugin: 'android-apt'
3+
apply plugin: 'newlens'
34

45
// 时间
56
def releaseTime() {
@@ -118,10 +119,6 @@ android {
118119
manifestPlaceholders = [UMENG_CHANNEL_VALUE: "MAIN"]
119120
}
120121

121-
WANDOUJIA {
122-
manifestPlaceholders = [UMENG_CHANNEL_VALUE: "WANDOUJIA"]
123-
}
124-
125122
BAIDU {
126123
manifestPlaceholders = [UMENG_CHANNEL_VALUE: "BAIDU"]
127124
}
@@ -157,17 +154,19 @@ dependencies {
157154

158155
compile 'org.greenrobot:eventbus:3.0.0'
159156
compile 'com.google.code.gson:gson:2.7'
160-
compile 'com.tencent.bugly:crashreport:latest.release'
157+
compile 'com.tencent.bugly:crashreport_upgrade:latest.release'
161158
compile 'com.umeng.analytics:analytics:latest.integration'
162159
compile 'com.squareup.okhttp3:okhttp:3.4.1'
163160
compile 'com.squareup.picasso:picasso:2.5.2'
164161

165162
compile 'com.jakewharton:butterknife:8.4.0'
166163
apt 'com.jakewharton:butterknife-compiler:8.4.0'
167164

168-
compile 'com.android.support:design:25.3.1'
169-
compile 'com.android.support:support-v4:25.3.1'
165+
compile "com.android.support:design:${SUPPORT_LIBRARY}"
166+
compile "com.android.support:support-v4:${SUPPORT_LIBRARY}"
170167
compile 'pub.devrel:easypermissions:0.2.0'
171168
compile 'me.imid.swipebacklayout.lib:library:1.0.0'
169+
170+
compile "com.networkbench.newlens.agent.android:nbs.newlens.agent:2.5.3"
172171
}
173172
apply plugin: 'com.google.gms.google-services'

app/proguard-rules.pro

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,15 @@
191191
public static *** w(...);
192192
}
193193

194+
195+
196+
# ProGuard configurations for NetworkBench Lens
197+
-keep class com.networkbench.** { *; }
198+
-dontwarn com.networkbench.**
199+
-keepattributes Exceptions, Signature, InnerClasses
200+
# End NetworkBench Lens
201+
202+
194203
-libraryjars libs/BmobPay_v3.x.x_xxxxxx.jar
195204
-keepclasseswithmembers class c.b.** { *; }
196205
-keep interface c.b.PListener{ *; }

0 commit comments

Comments
 (0)