-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # changelog.md
- Loading branch information
Showing
78 changed files
with
1,613 additions
and
1,021 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
object Config { | ||
const val minApiLevel = 24 | ||
const val targetApiLevel = 31 | ||
const val targetApiLevel = 33 | ||
const val buildToolsVersion = Versions.buildToolsVersion | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
# What's new | ||
|
||
### [InApp](https://github.com/emartech/android-emarsys-sdk/wiki#3-inapp) | ||
|
||
* Added dark mode support for InApp and inline InApp messages. Please check the [GitHub wiki](https://github.com/emartech/android-emarsys-sdk/wiki#33-dark-mode) to see how to set up your application based on Android API level. | ||
|
||
### [Push](https://github.com/emartech/android-emarsys-sdk/wiki#2-push) | ||
|
||
* Added support for updatable and deletable push messages. | ||
|
||
# What's fixed | ||
|
||
### [DeepLink](https://github.com/emartech/android-emarsys-sdk/wiki#5-deeplink) | ||
|
||
* DeepLink tracking now works without the Mobile Engage feature enabled (without setting an application code). | ||
|
||
### [Push](https://github.com/emartech/android-emarsys-sdk/wiki#2-push) | ||
|
||
* Fixed an issue what could cause opening the host Application from a Push Notification fail on | ||
Android 12 and 13. | ||
* Fixed an issue when sometimes interacting with a push message lasted for 5 seconds. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
dependencies { | ||
implementation project(':core-api') | ||
implementation Libs.google_tink | ||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.2' | ||
|
||
implementation Libs.kotlin_coroutines | ||
|
||
androidTestImplementation project(':testUtils') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 0 additions & 22 deletions
22
core/src/main/java/com/emarsys/core/util/AndroidVersionUtils.java
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
core/src/main/java/com/emarsys/core/util/AndroidVersionUtils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.emarsys.core.util | ||
|
||
import android.os.Build | ||
|
||
object AndroidVersionUtils { | ||
val isOreoOrAbove: Boolean | ||
get() = Build.VERSION.SDK_INT >= Build.VERSION_CODES.O | ||
val isBelowTiramisu: Boolean | ||
get() = Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU | ||
val isBelowOreo: Boolean | ||
get() = Build.VERSION.SDK_INT < Build.VERSION_CODES.O | ||
val isBelowQ: Boolean | ||
get() = Build.VERSION.SDK_INT < Build.VERSION_CODES.Q | ||
val isBelowS: Boolean | ||
get() = Build.VERSION.SDK_INT < Build.VERSION_CODES.S | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.