Skip to content

Commit

Permalink
Disable advertising id collection
Browse files Browse the repository at this point in the history
  • Loading branch information
tananaev committed Sep 21, 2018
1 parent a9f4390 commit cbfe907
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
buildConfigField "boolean", "HIDDEN_APP", "false"
minSdkVersion 15
targetSdkVersion 28
versionCode 50
versionName '5.13'
versionCode 51
versionName '5.14'
}

lintOptions {
Expand Down
4 changes: 4 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
android:theme="@style/AppTheme"
android:name=".MainApplication">

<meta-data
android:name="google_analytics_adid_collection_enabled"
android:value="false" />

<activity
android:name=".MainActivity"
android:launchMode="singleTask" />
Expand Down

2 comments on commit cbfe907

@oliv3
Copy link
Contributor

@oliv3 oliv3 commented on cbfe907 Sep 21, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, always nice to have this.
I suppose this only apply for Google flavor ?

@tananaev
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it only applies to Google flavor. Apparently Google was collecting some information that we don't need. We only use Firebase for crash analytics.

Please sign in to comment.