Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmplibrary/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ android {
}

dependencies {
implementation("com.sourcepoint:core:0.1.14")
implementation("com.sourcepoint:core:0.1.16")
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.1")
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3")
Expand Down
2 changes: 1 addition & 1 deletion cmplibrary/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION_NAME = 7.15.12-beta-1
VERSION_NAME = 7.15.13
3 changes: 1 addition & 2 deletions cmplibrary/release_note.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
* [DIA-6242](https://sourcepoint.atlassian.net/browse/DIA-6242) [Android TV] Implement experimental `InternalCoroutinesApi`
- [x] Beta version release!
* [DIA-6317](https://sourcepoint.atlassian.net/browse/DIA-6317)
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ class SPConsentLibCoreTest {
fun noMessageIsShownIfTheresDataFromSDKWithoutMobileCore() = runBlocking {
// NOTE: If this test fails, chances are the SDK (more specifically the mobile-core's Coordinator)
// is resetting its state because some meta-data changed, like `usnat.applicableSections` or `legislation.vendorListId`
// OR the consent expired in the server (i.e. longer than 1 year) and a new uuid needs to be saved (by accepting all with
// that auth id).
val client = spClient
loadLegacySharedPrefs(preferences)
getConsentLib(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class LegacyStateTest {
consents.apply {
applies.assertTrue()
uuid.assertEquals("gdprUUID")
dateCreated.assertEquals(Instant.parse("2025-03-29T13:45:32.988Z"))
dateCreated.assertEquals(Instant.parse("2026-04-07T17:00:24.263Z"))
consentStatus.apply {
consentedAll!!.assertTrue()
}
Expand All @@ -63,7 +63,7 @@ class LegacyStateTest {
consents.apply {
applies.assertTrue()
uuid.assertEquals("ccpaUUID")
dateCreated.assertEquals(Instant.parse("2025-03-29T13:45:34.594Z"))
dateCreated.assertEquals(Instant.parse("2026-04-07T17:00:24.263Z"))
status.assertEquals(CCPAConsent.CCPAConsentStatus.ConsentedAll)
gppData.isNotEmpty().assertTrue()
webConsentPayload.isNullOrEmpty().assertFalse()
Expand All @@ -80,7 +80,7 @@ class LegacyStateTest {
consents.apply {
applies.assertTrue()
uuid.assertEquals("usNatUUID")
dateCreated.assertEquals(Instant.parse("2025-03-29T13:47:05.359Z"))
dateCreated.assertEquals(Instant.parse("2026-04-07T17:00:24.263Z"))
gppData.isNotEmpty().assertTrue()
webConsentPayload.isNullOrEmpty().assertFalse()
consentStatus.apply {
Expand Down

Large diffs are not rendered by default.

Loading