From b9edf89992194a544f2a3f41b2c7e31180bb9bb6 Mon Sep 17 00:00:00 2001 From: Nicolas CHAIX Date: Thu, 23 Oct 2025 15:25:19 +0200 Subject: [PATCH 1/3] update build config for sample --- sample/android/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sample/android/build.gradle b/sample/android/build.gradle index f536a792..fa2c5126 100644 --- a/sample/android/build.gradle +++ b/sample/android/build.gradle @@ -1,9 +1,9 @@ buildscript { ext { - buildToolsVersion = "34.0.0" + buildToolsVersion = "35.0.0" minSdkVersion = 23 - compileSdkVersion = 34 - targetSdkVersion = 34 + compileSdkVersion = 35 + targetSdkVersion = 35 ndkVersion = "26.1.10909125" kotlinVersion = "1.9.22" } From 003debae6e06c8d457ccb73ae9190d862a55902e Mon Sep 17 00:00:00 2001 From: Nicolas CHAIX Date: Thu, 23 Oct 2025 15:25:54 +0200 Subject: [PATCH 2/3] update notice for sample + enable ctv support --- sample/src/Methods.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sample/src/Methods.tsx b/sample/src/Methods.tsx index 1838b11a..ebd79c0e 100644 --- a/sample/src/Methods.tsx +++ b/sample/src/Methods.tsx @@ -5,7 +5,7 @@ import MethodCall from './MethodCall'; export default function Methods() { const [apiKey, onChangeApiKey] = React.useState( - '465ca0b2-b96f-43b4-a864-f87e18d2fd38' + '9bf8a7e4-db9a-4ff2-a45c-ab7d2b6eadba' ); const [language, onChangeLanguage] = React.useState(''); const [preferenceType, onChangePreferences] = React.useState(''); @@ -21,7 +21,7 @@ export default function Methods() { { - Didomi.initialize(apiKey).catch((err) => { + Didomi.initializeWithParameters({ apiKey: apiKey, noticeId: "mBcaPUEX", androidTvEnabled: true, androidTvNoticeId: "mBcaPUEX" }).catch((err) => { console.log(err); return false }); From a1e293e32270091e3bb9aab096d261c0a4822ea2 Mon Sep 17 00:00:00 2001 From: Nicolas CHAIX Date: Mon, 27 Oct 2025 09:23:10 +0100 Subject: [PATCH 3/3] update sample app notice id --- sample/src/Methods.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample/src/Methods.tsx b/sample/src/Methods.tsx index ebd79c0e..fa07b3e1 100644 --- a/sample/src/Methods.tsx +++ b/sample/src/Methods.tsx @@ -21,7 +21,7 @@ export default function Methods() { { - Didomi.initializeWithParameters({ apiKey: apiKey, noticeId: "mBcaPUEX", androidTvEnabled: true, androidTvNoticeId: "mBcaPUEX" }).catch((err) => { + Didomi.initializeWithParameters({ apiKey: apiKey, noticeId: "XWhEXzb9", androidTvEnabled: true, androidTvNoticeId: "mBcaPUEX" }).catch((err) => { console.log(err); return false });