Skip to content

Commit

Permalink
Merge pull request #801 from QuickBlox/push-kotlin-sample
Browse files Browse the repository at this point in the history
4.0.3-push-kotlin
  • Loading branch information
vdovbnya-qb authored Sep 27, 2022
2 parents a54b4d9 + 619096d commit 18b5531
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
7 changes: 5 additions & 2 deletions sample-pushnotifications-kotlin/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ android {
applicationId "com.quickblox.sample.pushnotifications.kotlin"
minSdkVersion 21
targetSdkVersion 31
versionCode 402000
versionName '4.0.2-kotlin'
versionCode 403000
versionName '4.0.3'
multiDexEnabled true
}

Expand Down Expand Up @@ -68,6 +68,9 @@ android {

release {
signingConfig signingConfigs.debug
minifyEnabled true
shrinkResources true
proguardFile 'proguard-rules.pro'
resValue "string", "versionName", "QuickBlox Push Notifications Kotlin\nBuild version " + defaultConfig.getVersionName()
}
}
Expand Down
5 changes: 4 additions & 1 deletion sample-pushnotifications-kotlin/app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,7 @@
-keep class com.quickblox.** { *; }

#google gms
-keep class com.google.android.gms.** { *; }
-keep class com.google.android.gms.** { *; }

#json
-keep class org.json.** { *; }
8 changes: 4 additions & 4 deletions sample-pushnotifications-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath 'com.google.gms:google-services:4.3.10'
classpath 'com.google.gms:google-services:4.3.14'
}
}

Expand All @@ -22,16 +22,16 @@ ext {
dimensionDefault = 'default'

// QuickBlox SDK version
qbSdkVersion = '3.9.16'
qbSdkVersion = '3.11.0'

// Kotlin
kotlinGradlePluginVersion = '1.5.31'

// Firebase
firebaseCoreVersion = '21.0.0'
firebaseCoreVersion = '21.1.1'

// Material
materialVersion = '1.6.0'
materialVersion = '1.6.1'

// RobotoTextView
robotoTextViewVersion = '4.0.0'
Expand Down

0 comments on commit 18b5531

Please sign in to comment.