Skip to content

Commit 6125710

Browse files
committedSep 27, 2022
4.0.3-push-java
1 parent 692e69a commit 6125710

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed
 

‎sample-pushnotifications-java/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ android {
2727
applicationId "com.quickblox.sample.pushnotifications.java"
2828
minSdkVersion 21
2929
targetSdkVersion 31
30-
versionCode 402000
31-
versionName '4.0.2-java'
30+
versionCode 403000
31+
versionName '4.0.3'
3232
multiDexEnabled true
3333
}
3434

‎sample-pushnotifications-java/app/proguard-rules.pro

+4-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,7 @@
3333
-keep class com.quickblox.** { *; }
3434

3535
#google gms
36-
-keep class com.google.android.gms.** { *; }
36+
-keep class com.google.android.gms.** { *; }
37+
38+
#json
39+
-keep class org.json.** { *; }

‎sample-pushnotifications-java/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66

77
dependencies {
88
classpath 'com.android.tools.build:gradle:4.2.2'
9-
classpath 'com.google.gms:google-services:4.3.10'
9+
classpath 'com.google.gms:google-services:4.3.14'
1010
}
1111
}
1212

@@ -22,13 +22,13 @@ ext {
2222
dimensionDefault = 'default'
2323

2424
// QuickBlox SDK version
25-
qbSdkVersion = '3.9.16'
25+
qbSdkVersion = '3.11.0'
2626

2727
// Firebase
28-
firebaseCoreVersion = '21.0.0'
28+
firebaseCoreVersion = '21.1.1'
2929

3030
// Material
31-
materialVersion = '1.6.0'
31+
materialVersion = '1.6.1'
3232

3333
// RobotoTextView
3434
robotoTextViewVersion = '4.0.0'

0 commit comments

Comments
 (0)
Please sign in to comment.