Android: Issue: Violation of Interfering with Apps, Third-party Ads, or Device Functionality policy
See original GitHub issueAs it seems google claims that the ads are triggered after the application is closed. The update i did had no changes in the code about the triggering of the ads.
Probably something changed at the algorithm of google store. I also cannot recreate the claims of google.
The ad i use is an interstitial. It is triggered from a user action. Also i check from the platform { App }, the state of the application before i show the ad.
Those are the dependencies i use
"dependencies": {
"@angular/common": "^9.0.1",
"@angular/core": "^9.0.1",
"@angular/forms": "^9.0.1",
"@angular/platform-browser": "^9.0.1",
"@angular/platform-browser-dynamic": "^9.0.1",
"@angular/router": "^9.0.1",
"@capacitor-community/admob": "^1.0.1",
"@capacitor/android": "^2.2.0",
"@capacitor/cli": "^2.2.0",
"@capacitor/core": "^2.2.0",
"@capacitor/ios": "^2.2.0",
"@ionic/angular": "^5.2.2",
"@ionic/app-scripts": "^3.2.4",
"chart.js": "^2.8.0",
"core-js": "^2.5.4",
"css-loader": "^3.4.2",
"jetifier": "^1.6.6",
"karma-coverage": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"rxjs": "^6.5.4",
"to-string-loader": "^1.1.5",
"tslib": "^1.9.0",
"webpack": "^4.41.6",
"zone.js": "^0.10.2"
},
I believe i tested everything that will fix the problem at the typescript code, except from changing the type of ad itself.
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Issue: Violation of Interfering with Apps, Third-party Ads, or ...
Ads associated with your app must not interfere with other apps, ads, or the operation of the device, including system or device buttons...
Read more >Issue: Violation of Interfering with Apps, Third ... - Google Groups
"Ads associated with your app must not interfere with other apps, ads, or the operation of the device, including system or device buttons ......
Read more >Ads - Play Console Help
Disruptive ads are ads that are displayed to users in unexpected ways, that may result in inadvertent clicks, or impairing or interfering with...
Read more >Violation of Interfering with Apps, Third-party Ads, or Device ...
Android Issue : Violation of Interfering with Apps, Third-party Ads, or Device Functionality policy. by GooGig · August 11, 2020.
Read more >android - Issue: Violation of Interfering with Apps, Third-party Ads, or ...
1- Read through the Interfering with Apps, Third-party Ads, or Device Functionality policy and make appropriate changes to your app. 2- Be sure...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Where did you display AdMob Ad position? You can’t display ads on above the content. In reality, it will be displayed at the top or bottom of the app, like this: https://i.stack.imgur.com/OR76l.png
So we must add margin for admob area: like this: https://github.com/rdlabo-team/capacitor-admob/blob/master/demo/angular/src/app/home/home.page.ts#L58-L64
and can’t do this: https://user-images.githubusercontent.com/1326504/35255268-145225e2-ffa3-11e7-8eb6-0a5a2fa06e93.png
I understood! You don’t said about banner. This issue is about interstitial.
Certainly we need the option of ensuring the height of the header and footer. Can you create pull request about this??