Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore - Refactor sample app's manifest #633

Merged
merged 3 commits into from
Jul 8, 2024
Merged
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
17 changes: 8 additions & 9 deletions sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-3940256099942544~3347511713" />

<!-- Add meta data for CleverTap Account Id and Account Token -->
<!-- Add meta data for CleverTap Account Id and Account Token and Region-->
<meta-data
android:name="CLEVERTAP_ACCOUNT_ID"
android:value="YOUR ACCT ID" />
Expand All @@ -65,27 +65,25 @@
android:name="CLEVERTAP_SPIKY_PROXY_DOMAIN"
android:value="push.sdktesting.xyz"/>-->

<!-- android:name="CLEVERTAP_REGION" -->
<!-- android:value="eu1"/> -->
<!-- IMPORTANT: To force use Google AD ID to uniquely identify users, use the following meta tag. GDPR mandates that if you are using this tag, there is prominent disclousure to your end customer in their application. Read more about GDPR here - https://clevertap.com/blog/in-preparation-of-gdpr-compliance/ -->
<!--<meta-data
android:name="CLEVERTAP_USE_GOOGLE_AD_ID"
android:value="1" />-->
<meta-data
android:name="CLEVERTAP_SSL_PINNING"
android:value="0" /> <!-- Add meta data for CleverTap Notification Icon -->
android:value="0" />
<meta-data
android:name="CLEVERTAP_NOTIFICATION_ICON"
android:value="ic_notification" />
android:value="ic_notification" /> <!-- Add meta data for CleverTap Notification Icon -->
<meta-data
android:name="CLEVERTAP_BACKGROUND_SYNC"
android:value="1" /> <!-- Add meta and set to 1 to raise Notification Viewed for Push Notifications -->
android:value="1" /> <!-- Add meta and set to 1 to allow your app to use CleverTap's Pull Notification via background ping service-->
<meta-data
android:name="CLEVERTAP_RAISE_NOTIFICATION_VIEWED"
android:value="1" /> <!-- Add meta and set to 1 start using custom CleverTap ID -->
android:value="1" /> <!-- Add meta and set to 1 to raise Notification Viewed for Push Notifications -->
<meta-data
android:name="CLEVERTAP_USE_CUSTOM_ID"
android:value="0" /> <!-- Add CleverTap Push Notification Services & Install Referrer Receivers -->
android:value="0" /> <!-- Add meta and set to 1 start using custom CleverTap ID -->
<!-- <meta-data
android:name="CLEVERTAP_IDENTIFIER"
android:value="Email,Phone" />-->
Expand All @@ -94,8 +92,9 @@
android:value="HomeScreenActivity" />
<meta-data
android:name="CLEVERTAP_ENCRYPTION_LEVEL"
android:value="1" />
android:value="1" /> <!-- Add meta and set to 1 enable encryption of PII data -->

<!-- Add CleverTap Push Notification Services & Install Referrer Receivers -->
<service
android:name="com.clevertap.android.sdk.pushnotification.fcm.FcmMessageListenerService"
android:exported="true">
Expand Down