Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Action Required: Your app is not compliant with Google Play Policies #34

Open
nicola73 opened this issue Jul 20, 2022 · 2 comments
Open

Comments

@nicola73
Copy link

nicola73 commented Jul 20, 2022

I recently received the message:

Issue with your app

Your app contains content that doesn’t comply with the Device and Network Abuse policy. We found your app is using a non-compliant version of Huawei Mobile Services SDK which contains code to download or install applications from unknown sources outside of Google Play.Given the nature of the SDK, please remove it from the version of your app submitted to the Play Store.

from Google Play, which seems caused by outdated versions of Huawei SDK Libraries. Can you check e solve the problem upgrading used libraries in the projects.

For reference see this:
https://forums.developer.huawei.com/forumPortal/en/topic/0202931731760590092

and this:
https://forums.developer.huawei.com/forumPortal/en/topic/0202930818103450086

Many thanks.

@earfire33
Copy link

I have the same issue,
Choice SDK don't use the latest Huawey SDK
Ex : in choicesdk-location folder ; we have : implementation 'com.huawei.hms:location:5.1.0.303'
instead of latest : com.huawei.hms:location:6.4.0.300

@AndrazP
Copy link

AndrazP commented Aug 2, 2022

My first attempt to solve this issue was:

    implementation "at.bluesource.choicesdk:choicesdk-location:0.3.0"
    implementation "com.huawei.hms:location:6.4.0.300"

    implementation("at.bluesource.choicesdk:choicesdk-maps:0.3.0)
    implementation "com.huawei.hms:maps:6.5.1.300"

App passed the review on Google Play Store but it broke the maps functionality on Huawei devices.

I had to limit the library update to just Google build flavor.

    implementation "at.bluesource.choicesdk:choicesdk-location:0.3.0"
    googleImplementation "com.huawei.hms:location:6.4.0.300"

    implementation("at.bluesource.choicesdk:choicesdk-maps:0.3.0)
    googleImplementation "com.huawei.hms:maps:6.5.1.300"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants