Skip to content

Commit

Permalink
Android 14 Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham-soni-1009798 committed Jul 29, 2024
1 parent 5824e49 commit c30913e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
9 changes: 9 additions & 0 deletions freshchat_sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 6.2.8(2024-07-27)

### Bug Fixes:
* Fix for Window Manager Bad Token Exception when attaching pictures.
* Fix for issue with custom link handler not working in conversation.

### Enhancements:
* Updated SDK to target Android 14 to comply with Google Play Store policies.

## 6.2.7(2024-07-12)

### Bug fix :
Expand Down
14 changes: 9 additions & 5 deletions freshchat_sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,23 @@ def getScmBranch = {
}

android {
compileSdkVersion 31
compileSdkVersion 34
buildToolsVersion "29.0.3"

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}

buildFeatures {
buildConfig = true
}

defaultConfig {
minSdkVersion 21
versionCode 627
versionName "6.2.7"
targetSdkVersion 31
versionCode 628
versionName "6.2.8"
targetSdkVersion 34
consumerProguardFiles 'consumer-proguard-rules.pro'
buildConfigField "long", 'BUILT_AT', System.currentTimeMillis() + 'L'
buildConfigField "String", "SCM_REV", getScmRevision()
Expand All @@ -47,7 +51,7 @@ ext {
gsonVersion = '2.8.0'
picassoVersion = '2.8'
circleImageViewVersion = '3.1.0'
appcompatVersion = '1.0.0'
appcompatVersion = '1.6.0'
recyclerviewVersion = '1.0.0'
materialVersion = '1.0.0'
cardviewVersion = '1.0.0'
Expand Down
Binary file modified freshchat_sdk/libs/freshchat.jar
Binary file not shown.
4 changes: 1 addition & 3 deletions freshchat_sdk/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<manifest
package="com.freshchat.consumer.sdk"
xmlns:android="http://schemas.android.com/apk/res/android"
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0">

Expand Down

0 comments on commit c30913e

Please sign in to comment.