Skip to content
This repository has been archived by the owner on Apr 18, 2020. It is now read-only.

Commit

Permalink
Ensure that we turn off all google analytics by default
Browse files Browse the repository at this point in the history
These were turned in by default when switching to Firebase
This fixes e-mission/e-mission-docs#416
  • Loading branch information
shankari committed Mar 30, 2020
1 parent f01f881 commit 5fe208d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions config.cordovabuild.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@
<preference name="xwalkMode" value="embedded" />
<preference name="xwalkMultipleApk" value="true" />
<preference name="emSensorDataCollectionProtocolApprovalDate" value="2016-07-14" />
<config-file parent="/manifest/application" target="AndroidManifest.xml">
<meta-data android:name="firebase_analytics_collection_deactivated" android:value="true" />
<meta-data android:name="google_analytics_adid_collection_enabled" android:value="false" />
<meta-data android:name="google_analytics_ssaid_collection_enabled" android:value="false" />
<meta-data android:name="google_analytics_default_allow_ad_personalization_signals" android:value="false" />
</config-file>
<config-file parent="FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED" target="*-Info.plist">
<true />
</config-file>
<config-file parent="GOOGLE_ANALYTICS_IDFV_COLLECTION_ENABLED" target="*-Info.plist">
<false />
</config-file>
<config-file parent="GOOGLE_ANALYTICS_DEFAULT_ALLOW_AD_PERSONALIZATION_SIGNALS" target="*-Info.plist">
<false />
</config-file>
<feature name="StatusBar">
<param name="ios-package" onload="true" value="CDVStatusBar" />
</feature>
Expand Down

0 comments on commit 5fe208d

Please sign in to comment.