App violates the Android Advertising Id policy
Clash Royale CLAN TAG#URR8PPP
up vote
10
down vote
favorite
I've just received this message from Google Play but I'm not collecting the Advertising ID.
Reason for warning: Violation of Usage of Android Advertising ID
policy and section 4.8 of the Developer Distribution Agreement
Google Play requires developers to provide a valid privacy policy when
the app requests or handles sensitive user or device information.
We’ve identified that your app collects and transmits the Android
advertising ID, which is subject to a privacy policy requirement.
Is it possible any of my dependicies uses it? Here's the list of dependencies:
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.anko:anko-common:$anko_version"
implementation ("com.android.support:appcompat-v7:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation ("com.android.support:design:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
implementation ("com.android.support:cardview-v7:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.2'
implementation 'com.github.apl-devs:appintro:v4.2.3'
implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar')
transitive = true
implementation 'com.firebase:firebase-jobdispatcher:0.7.0'
implementation ("com.google.firebase:firebase-firestore:$firestore_version")
exclude group: 'com.google.firebase', module: 'firebase-auth'
implementation ("com.google.firebase:firebase-auth:$firebase_version")
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation ("com.google.firebase:firebase-storage:$firebase_version")
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation ('com.google.android.gms:play-services-auth:16.0.0')
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:multidex:1.0.3'
implementation ("com.android.support:exifinterface:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation 'com.soundcloud.android:android-crop:1.0.1@aar'
implementation 'com.github.bumptech.glide:glide:4.7.1'


add a comment |Â
up vote
10
down vote
favorite
I've just received this message from Google Play but I'm not collecting the Advertising ID.
Reason for warning: Violation of Usage of Android Advertising ID
policy and section 4.8 of the Developer Distribution Agreement
Google Play requires developers to provide a valid privacy policy when
the app requests or handles sensitive user or device information.
We’ve identified that your app collects and transmits the Android
advertising ID, which is subject to a privacy policy requirement.
Is it possible any of my dependicies uses it? Here's the list of dependencies:
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.anko:anko-common:$anko_version"
implementation ("com.android.support:appcompat-v7:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation ("com.android.support:design:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
implementation ("com.android.support:cardview-v7:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.2'
implementation 'com.github.apl-devs:appintro:v4.2.3'
implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar')
transitive = true
implementation 'com.firebase:firebase-jobdispatcher:0.7.0'
implementation ("com.google.firebase:firebase-firestore:$firestore_version")
exclude group: 'com.google.firebase', module: 'firebase-auth'
implementation ("com.google.firebase:firebase-auth:$firebase_version")
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation ("com.google.firebase:firebase-storage:$firebase_version")
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation ('com.google.android.gms:play-services-auth:16.0.0')
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:multidex:1.0.3'
implementation ("com.android.support:exifinterface:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation 'com.soundcloud.android:android-crop:1.0.1@aar'
implementation 'com.github.bumptech.glide:glide:4.7.1'


4
reddit.com/r/androiddev/comments/9gqr6y/…
– Tim Castelijns
2 hours ago
also getting the same issue on my app. :( If anyone got a solution for this, would really appreciate it.
– John Rey Tanquinco
1 hour ago
I've added a privacy policy using app-privacy-policy-generator.firebaseapp.com
– aloj
52 mins ago
add a comment |Â
up vote
10
down vote
favorite
up vote
10
down vote
favorite
I've just received this message from Google Play but I'm not collecting the Advertising ID.
Reason for warning: Violation of Usage of Android Advertising ID
policy and section 4.8 of the Developer Distribution Agreement
Google Play requires developers to provide a valid privacy policy when
the app requests or handles sensitive user or device information.
We’ve identified that your app collects and transmits the Android
advertising ID, which is subject to a privacy policy requirement.
Is it possible any of my dependicies uses it? Here's the list of dependencies:
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.anko:anko-common:$anko_version"
implementation ("com.android.support:appcompat-v7:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation ("com.android.support:design:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
implementation ("com.android.support:cardview-v7:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.2'
implementation 'com.github.apl-devs:appintro:v4.2.3'
implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar')
transitive = true
implementation 'com.firebase:firebase-jobdispatcher:0.7.0'
implementation ("com.google.firebase:firebase-firestore:$firestore_version")
exclude group: 'com.google.firebase', module: 'firebase-auth'
implementation ("com.google.firebase:firebase-auth:$firebase_version")
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation ("com.google.firebase:firebase-storage:$firebase_version")
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation ('com.google.android.gms:play-services-auth:16.0.0')
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:multidex:1.0.3'
implementation ("com.android.support:exifinterface:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation 'com.soundcloud.android:android-crop:1.0.1@aar'
implementation 'com.github.bumptech.glide:glide:4.7.1'


I've just received this message from Google Play but I'm not collecting the Advertising ID.
Reason for warning: Violation of Usage of Android Advertising ID
policy and section 4.8 of the Developer Distribution Agreement
Google Play requires developers to provide a valid privacy policy when
the app requests or handles sensitive user or device information.
We’ve identified that your app collects and transmits the Android
advertising ID, which is subject to a privacy policy requirement.
Is it possible any of my dependicies uses it? Here's the list of dependencies:
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.anko:anko-common:$anko_version"
implementation ("com.android.support:appcompat-v7:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation ("com.android.support:design:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
implementation ("com.android.support:cardview-v7:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.2'
implementation 'com.github.apl-devs:appintro:v4.2.3'
implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar')
transitive = true
implementation 'com.firebase:firebase-jobdispatcher:0.7.0'
implementation ("com.google.firebase:firebase-firestore:$firestore_version")
exclude group: 'com.google.firebase', module: 'firebase-auth'
implementation ("com.google.firebase:firebase-auth:$firebase_version")
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation ("com.google.firebase:firebase-storage:$firebase_version")
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation ('com.google.android.gms:play-services-auth:16.0.0')
exclude group: 'com.google.firebase', module: 'firebase-firestore'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:multidex:1.0.3'
implementation ("com.android.support:exifinterface:$android_support_version")
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
implementation 'com.soundcloud.android:android-crop:1.0.1@aar'
implementation 'com.github.bumptech.glide:glide:4.7.1'




asked 2 hours ago
aloj
660923
660923
4
reddit.com/r/androiddev/comments/9gqr6y/…
– Tim Castelijns
2 hours ago
also getting the same issue on my app. :( If anyone got a solution for this, would really appreciate it.
– John Rey Tanquinco
1 hour ago
I've added a privacy policy using app-privacy-policy-generator.firebaseapp.com
– aloj
52 mins ago
add a comment |Â
4
reddit.com/r/androiddev/comments/9gqr6y/…
– Tim Castelijns
2 hours ago
also getting the same issue on my app. :( If anyone got a solution for this, would really appreciate it.
– John Rey Tanquinco
1 hour ago
I've added a privacy policy using app-privacy-policy-generator.firebaseapp.com
– aloj
52 mins ago
4
4
reddit.com/r/androiddev/comments/9gqr6y/…
– Tim Castelijns
2 hours ago
reddit.com/r/androiddev/comments/9gqr6y/…
– Tim Castelijns
2 hours ago
also getting the same issue on my app. :( If anyone got a solution for this, would really appreciate it.
– John Rey Tanquinco
1 hour ago
also getting the same issue on my app. :( If anyone got a solution for this, would really appreciate it.
– John Rey Tanquinco
1 hour ago
I've added a privacy policy using app-privacy-policy-generator.firebaseapp.com
– aloj
52 mins ago
I've added a privacy policy using app-privacy-policy-generator.firebaseapp.com
– aloj
52 mins ago
add a comment |Â
5 Answers
5
active
oldest
votes
up vote
2
down vote
You are using crashlytics below 2.9.3. Apparently it's collecting and sending the google advertising id as a key in their header. That might be the or one of the issues.
You can check if it's sending the advertising id through a proxy like Charles.
1
How do you check?
– Questioner
18 mins ago
@RikvanVelzen You mention version 2.9.3. Can you point to the info saying that in newer versions it is is not an issue?
– Yossi
6 mins ago
1
@Yossi: no the only thing i can point to is the reddit post which link you can find in to comments of the question. And I checked myself through Charles that in 2.9.3 the X-CRASHLYTICS-ADVERTISING-TOKEN is not sent in the header anymore.
– Rik van Velzen
1 min ago
add a comment |Â
up vote
0
down vote
I'am also recieved this message today, I am not requesting any sensitive permission and not collecting users data
New contributor
YoucefB is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I think it's due to crashlytics lib
– aloj
1 hour ago
I don't include this lib in my gradle file, I think this due to firebase
– YoucefB
1 hour ago
same here today. would be nice to know how this is transmitted. Never heard of it
– Theo
58 mins ago
@aloj are you sure? How can I test whether Crashlytics is the problem?
– Questioner
46 mins ago
add a comment |Â
up vote
0
down vote
I got the same thing today and except using firebase messaging and firebase Firestore as well as the Google play services lib, I use no others dependency, so it must come from one of those.
add a comment |Â
up vote
0
down vote
this is the cause
Google Play Services version 4.0 introduced new APIs and an ID for use by advertising and analytics providers.
We need to provide a privacy statement and make it available on the web.
For a sample go
https://digital.com/blog/best-privacy-policy-generators/
To change settings on your android app. Developer Console, Store Listing, scroll down to Privacy Policy. Add the url here.
How do you know it has to do with GPS 4.0+? How is that connected to the advertising ID violation?
– Rik van Velzen
24 mins ago
Read the information provided by Google.
– Theo
16 mins ago
app-privacy-policy-generator.firebaseapp.com
– Theo
16 mins ago
add a comment |Â
up vote
0
down vote
Today many of developers are getting this same issue.
I also got this issue. I didn't collect any sensitive data, even I am not showing ad to my users. In your case crashlytics lib can be an issue. It is dealing with advertising ID.
In the mail they mention the required action
Action required: Add a privacy policy to your store listing and app
So I think all of us we should add privacy policy on store listing as well as on app. Before taking the action we should go through the related privacy policy.
Here are some links from where you can get help:
Privacy policy to upload an app
Usage of Android Advertising ID
Developer Distribution Agreement
Developer Program Policies
add a comment |Â
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
You are using crashlytics below 2.9.3. Apparently it's collecting and sending the google advertising id as a key in their header. That might be the or one of the issues.
You can check if it's sending the advertising id through a proxy like Charles.
1
How do you check?
– Questioner
18 mins ago
@RikvanVelzen You mention version 2.9.3. Can you point to the info saying that in newer versions it is is not an issue?
– Yossi
6 mins ago
1
@Yossi: no the only thing i can point to is the reddit post which link you can find in to comments of the question. And I checked myself through Charles that in 2.9.3 the X-CRASHLYTICS-ADVERTISING-TOKEN is not sent in the header anymore.
– Rik van Velzen
1 min ago
add a comment |Â
up vote
2
down vote
You are using crashlytics below 2.9.3. Apparently it's collecting and sending the google advertising id as a key in their header. That might be the or one of the issues.
You can check if it's sending the advertising id through a proxy like Charles.
1
How do you check?
– Questioner
18 mins ago
@RikvanVelzen You mention version 2.9.3. Can you point to the info saying that in newer versions it is is not an issue?
– Yossi
6 mins ago
1
@Yossi: no the only thing i can point to is the reddit post which link you can find in to comments of the question. And I checked myself through Charles that in 2.9.3 the X-CRASHLYTICS-ADVERTISING-TOKEN is not sent in the header anymore.
– Rik van Velzen
1 min ago
add a comment |Â
up vote
2
down vote
up vote
2
down vote
You are using crashlytics below 2.9.3. Apparently it's collecting and sending the google advertising id as a key in their header. That might be the or one of the issues.
You can check if it's sending the advertising id through a proxy like Charles.
You are using crashlytics below 2.9.3. Apparently it's collecting and sending the google advertising id as a key in their header. That might be the or one of the issues.
You can check if it's sending the advertising id through a proxy like Charles.
edited 25 mins ago
answered 30 mins ago
Rik van Velzen
379317
379317
1
How do you check?
– Questioner
18 mins ago
@RikvanVelzen You mention version 2.9.3. Can you point to the info saying that in newer versions it is is not an issue?
– Yossi
6 mins ago
1
@Yossi: no the only thing i can point to is the reddit post which link you can find in to comments of the question. And I checked myself through Charles that in 2.9.3 the X-CRASHLYTICS-ADVERTISING-TOKEN is not sent in the header anymore.
– Rik van Velzen
1 min ago
add a comment |Â
1
How do you check?
– Questioner
18 mins ago
@RikvanVelzen You mention version 2.9.3. Can you point to the info saying that in newer versions it is is not an issue?
– Yossi
6 mins ago
1
@Yossi: no the only thing i can point to is the reddit post which link you can find in to comments of the question. And I checked myself through Charles that in 2.9.3 the X-CRASHLYTICS-ADVERTISING-TOKEN is not sent in the header anymore.
– Rik van Velzen
1 min ago
1
1
How do you check?
– Questioner
18 mins ago
How do you check?
– Questioner
18 mins ago
@RikvanVelzen You mention version 2.9.3. Can you point to the info saying that in newer versions it is is not an issue?
– Yossi
6 mins ago
@RikvanVelzen You mention version 2.9.3. Can you point to the info saying that in newer versions it is is not an issue?
– Yossi
6 mins ago
1
1
@Yossi: no the only thing i can point to is the reddit post which link you can find in to comments of the question. And I checked myself through Charles that in 2.9.3 the X-CRASHLYTICS-ADVERTISING-TOKEN is not sent in the header anymore.
– Rik van Velzen
1 min ago
@Yossi: no the only thing i can point to is the reddit post which link you can find in to comments of the question. And I checked myself through Charles that in 2.9.3 the X-CRASHLYTICS-ADVERTISING-TOKEN is not sent in the header anymore.
– Rik van Velzen
1 min ago
add a comment |Â
up vote
0
down vote
I'am also recieved this message today, I am not requesting any sensitive permission and not collecting users data
New contributor
YoucefB is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I think it's due to crashlytics lib
– aloj
1 hour ago
I don't include this lib in my gradle file, I think this due to firebase
– YoucefB
1 hour ago
same here today. would be nice to know how this is transmitted. Never heard of it
– Theo
58 mins ago
@aloj are you sure? How can I test whether Crashlytics is the problem?
– Questioner
46 mins ago
add a comment |Â
up vote
0
down vote
I'am also recieved this message today, I am not requesting any sensitive permission and not collecting users data
New contributor
YoucefB is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I think it's due to crashlytics lib
– aloj
1 hour ago
I don't include this lib in my gradle file, I think this due to firebase
– YoucefB
1 hour ago
same here today. would be nice to know how this is transmitted. Never heard of it
– Theo
58 mins ago
@aloj are you sure? How can I test whether Crashlytics is the problem?
– Questioner
46 mins ago
add a comment |Â
up vote
0
down vote
up vote
0
down vote
I'am also recieved this message today, I am not requesting any sensitive permission and not collecting users data
New contributor
YoucefB is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I'am also recieved this message today, I am not requesting any sensitive permission and not collecting users data
New contributor
YoucefB is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
YoucefB is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 1 hour ago
YoucefB
111
111
New contributor
YoucefB is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
YoucefB is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
YoucefB is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I think it's due to crashlytics lib
– aloj
1 hour ago
I don't include this lib in my gradle file, I think this due to firebase
– YoucefB
1 hour ago
same here today. would be nice to know how this is transmitted. Never heard of it
– Theo
58 mins ago
@aloj are you sure? How can I test whether Crashlytics is the problem?
– Questioner
46 mins ago
add a comment |Â
I think it's due to crashlytics lib
– aloj
1 hour ago
I don't include this lib in my gradle file, I think this due to firebase
– YoucefB
1 hour ago
same here today. would be nice to know how this is transmitted. Never heard of it
– Theo
58 mins ago
@aloj are you sure? How can I test whether Crashlytics is the problem?
– Questioner
46 mins ago
I think it's due to crashlytics lib
– aloj
1 hour ago
I think it's due to crashlytics lib
– aloj
1 hour ago
I don't include this lib in my gradle file, I think this due to firebase
– YoucefB
1 hour ago
I don't include this lib in my gradle file, I think this due to firebase
– YoucefB
1 hour ago
same here today. would be nice to know how this is transmitted. Never heard of it
– Theo
58 mins ago
same here today. would be nice to know how this is transmitted. Never heard of it
– Theo
58 mins ago
@aloj are you sure? How can I test whether Crashlytics is the problem?
– Questioner
46 mins ago
@aloj are you sure? How can I test whether Crashlytics is the problem?
– Questioner
46 mins ago
add a comment |Â
up vote
0
down vote
I got the same thing today and except using firebase messaging and firebase Firestore as well as the Google play services lib, I use no others dependency, so it must come from one of those.
add a comment |Â
up vote
0
down vote
I got the same thing today and except using firebase messaging and firebase Firestore as well as the Google play services lib, I use no others dependency, so it must come from one of those.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
I got the same thing today and except using firebase messaging and firebase Firestore as well as the Google play services lib, I use no others dependency, so it must come from one of those.
I got the same thing today and except using firebase messaging and firebase Firestore as well as the Google play services lib, I use no others dependency, so it must come from one of those.
answered 45 mins ago
Farfelufrank
414
414
add a comment |Â
add a comment |Â
up vote
0
down vote
this is the cause
Google Play Services version 4.0 introduced new APIs and an ID for use by advertising and analytics providers.
We need to provide a privacy statement and make it available on the web.
For a sample go
https://digital.com/blog/best-privacy-policy-generators/
To change settings on your android app. Developer Console, Store Listing, scroll down to Privacy Policy. Add the url here.
How do you know it has to do with GPS 4.0+? How is that connected to the advertising ID violation?
– Rik van Velzen
24 mins ago
Read the information provided by Google.
– Theo
16 mins ago
app-privacy-policy-generator.firebaseapp.com
– Theo
16 mins ago
add a comment |Â
up vote
0
down vote
this is the cause
Google Play Services version 4.0 introduced new APIs and an ID for use by advertising and analytics providers.
We need to provide a privacy statement and make it available on the web.
For a sample go
https://digital.com/blog/best-privacy-policy-generators/
To change settings on your android app. Developer Console, Store Listing, scroll down to Privacy Policy. Add the url here.
How do you know it has to do with GPS 4.0+? How is that connected to the advertising ID violation?
– Rik van Velzen
24 mins ago
Read the information provided by Google.
– Theo
16 mins ago
app-privacy-policy-generator.firebaseapp.com
– Theo
16 mins ago
add a comment |Â
up vote
0
down vote
up vote
0
down vote
this is the cause
Google Play Services version 4.0 introduced new APIs and an ID for use by advertising and analytics providers.
We need to provide a privacy statement and make it available on the web.
For a sample go
https://digital.com/blog/best-privacy-policy-generators/
To change settings on your android app. Developer Console, Store Listing, scroll down to Privacy Policy. Add the url here.
this is the cause
Google Play Services version 4.0 introduced new APIs and an ID for use by advertising and analytics providers.
We need to provide a privacy statement and make it available on the web.
For a sample go
https://digital.com/blog/best-privacy-policy-generators/
To change settings on your android app. Developer Console, Store Listing, scroll down to Privacy Policy. Add the url here.
edited 44 mins ago
answered 55 mins ago
Theo
1,079815
1,079815
How do you know it has to do with GPS 4.0+? How is that connected to the advertising ID violation?
– Rik van Velzen
24 mins ago
Read the information provided by Google.
– Theo
16 mins ago
app-privacy-policy-generator.firebaseapp.com
– Theo
16 mins ago
add a comment |Â
How do you know it has to do with GPS 4.0+? How is that connected to the advertising ID violation?
– Rik van Velzen
24 mins ago
Read the information provided by Google.
– Theo
16 mins ago
app-privacy-policy-generator.firebaseapp.com
– Theo
16 mins ago
How do you know it has to do with GPS 4.0+? How is that connected to the advertising ID violation?
– Rik van Velzen
24 mins ago
How do you know it has to do with GPS 4.0+? How is that connected to the advertising ID violation?
– Rik van Velzen
24 mins ago
Read the information provided by Google.
– Theo
16 mins ago
Read the information provided by Google.
– Theo
16 mins ago
app-privacy-policy-generator.firebaseapp.com
– Theo
16 mins ago
app-privacy-policy-generator.firebaseapp.com
– Theo
16 mins ago
add a comment |Â
up vote
0
down vote
Today many of developers are getting this same issue.
I also got this issue. I didn't collect any sensitive data, even I am not showing ad to my users. In your case crashlytics lib can be an issue. It is dealing with advertising ID.
In the mail they mention the required action
Action required: Add a privacy policy to your store listing and app
So I think all of us we should add privacy policy on store listing as well as on app. Before taking the action we should go through the related privacy policy.
Here are some links from where you can get help:
Privacy policy to upload an app
Usage of Android Advertising ID
Developer Distribution Agreement
Developer Program Policies
add a comment |Â
up vote
0
down vote
Today many of developers are getting this same issue.
I also got this issue. I didn't collect any sensitive data, even I am not showing ad to my users. In your case crashlytics lib can be an issue. It is dealing with advertising ID.
In the mail they mention the required action
Action required: Add a privacy policy to your store listing and app
So I think all of us we should add privacy policy on store listing as well as on app. Before taking the action we should go through the related privacy policy.
Here are some links from where you can get help:
Privacy policy to upload an app
Usage of Android Advertising ID
Developer Distribution Agreement
Developer Program Policies
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Today many of developers are getting this same issue.
I also got this issue. I didn't collect any sensitive data, even I am not showing ad to my users. In your case crashlytics lib can be an issue. It is dealing with advertising ID.
In the mail they mention the required action
Action required: Add a privacy policy to your store listing and app
So I think all of us we should add privacy policy on store listing as well as on app. Before taking the action we should go through the related privacy policy.
Here are some links from where you can get help:
Privacy policy to upload an app
Usage of Android Advertising ID
Developer Distribution Agreement
Developer Program Policies
Today many of developers are getting this same issue.
I also got this issue. I didn't collect any sensitive data, even I am not showing ad to my users. In your case crashlytics lib can be an issue. It is dealing with advertising ID.
In the mail they mention the required action
Action required: Add a privacy policy to your store listing and app
So I think all of us we should add privacy policy on store listing as well as on app. Before taking the action we should go through the related privacy policy.
Here are some links from where you can get help:
Privacy policy to upload an app
Usage of Android Advertising ID
Developer Distribution Agreement
Developer Program Policies
answered 31 mins ago


Mafujul
14628
14628
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52380615%2fapp-violates-the-android-advertising-id-policy%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
4
reddit.com/r/androiddev/comments/9gqr6y/…
– Tim Castelijns
2 hours ago
also getting the same issue on my app. :( If anyone got a solution for this, would really appreciate it.
– John Rey Tanquinco
1 hour ago
I've added a privacy policy using app-privacy-policy-generator.firebaseapp.com
– aloj
52 mins ago