Skip to content

Commit c84ad7e

Browse files
README: update android instructions
1 parent 0d60ecb commit c84ad7e

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@ Add the following to your `Info.plist`. under `app/App_Resources/iOS`
1010
<key>CleverTapToken</key>
1111
<string>YOUR-TEST-TOKEN</string>
1212
```
13+
### Android
14+
Add the following to your `AndroidManifestxml`. under `app/App_Resources/Android/src/main`
15+
```
16+
<meta-data
17+
android:name="CLEVERTAP_ACCOUNT_ID"
18+
android:value="YOUR-TEST-ACCOUNTID>"/>
19+
20+
<meta-data
21+
android:name="CLEVERTAP_TOKEN"
22+
android:value="YOUR-TEST-TOKEN"/>
23+
```
1324

1425
## Additional Resources
1526
- [CleverTap Android SDK Integration guide](https://support.clevertap.com/docs/android/getting-started.html)

demo/app/App_Resources/Android/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727

2828
<meta-data
2929
android:name="CLEVERTAP_ACCOUNT_ID"
30-
android:value="Your Clevertap AccountId>"/>
30+
android:value="YOUR-TEST-ACCOUNTID>"/>
3131

3232
<meta-data
3333
android:name="CLEVERTAP_TOKEN"
34-
android:value="Your Clevertap Token>"/>
34+
android:value="YOUR-TEST-TOKEN"/>
3535

3636
<activity
3737
android:name="com.tns.NativeScriptActivity"

0 commit comments

Comments
 (0)