应用程序被拒绝的问题:违反设备和网络滥用政策

时间:2019-07-14 15:51:22

标签: android xamarin google-play publish

所以我今天发布了我的应用,但被

拒绝了
String databaseToString(){
    StringBuilder dbString= new StringBuilder();
    SQLiteDatabase db = getWritableDatabase();
    String query=" SELECT * FROM " + TABLE_PRODUCTS + " WHERE 1";
    Cursor c=db.rawQuery(query,null);
    c.moveToFirst();
    while (!c.isAfterLast()){
        if(c.getString(c.getColumnIndex("productname")) != null) {
            c.moveToNext();
            dbString.append(c.getString(c.getColumnIndex("productname")));
            dbString.append("\n");
    }
    c.close();
    db.close();
    return dbString.toString();
}

我真的不明白为什么。

我使用自己的rest api搜索youtube视频,然后使用youtube-player播放这些视频。

这是我从他们那里收到的电子邮件。

Violation of Device and Network Abuse policy 

这是我的清单

After a recent review, we've found an issue with your app, Youtube.Manager (com.youtube.manager). See below for more information about your app’s status and how to correct the issue.
    Publishing status: Rejected
Your app has been rejected and wasn't published due to a policy violation. If you submitted an update, the previous version of your app is still available on Google Play.


    Issue: Violation of Device and Network Abuse policy 
We don’t allow apps that interfere with, disrupt, damage, or access in an unauthorized manner the user’s device, other devices or computers, servers, networks, application programming interfaces (APIs), or services, including but not limited to other apps on the device, any Google service, or an authorized carrier’s network.

Your app shouldn’t access or use the service or API in a manner that violates its terms of service. For example, your app shouldn't download, monetize, or access YouTube videos in a way that violates the YouTube Terms of Service.




Next steps: Submit your app for another review
1.  Read through the Device and Network Abuse policy and make appropriate changes to your app.

2.  Make sure that your app is compliant with all other Developer Program Policies. Additional enforcement could occur if there are further policy violations.
3.  Sign in to your Play Console and submit the update to your app.





If you’ve reviewed the policy and feel our decision may have been in error, please reach out to our policy support team. We'll get back to you within 2 business days.
Please help us improve the developer experience by completing this two question survey.

然后点击here下载我的应用

谁能告诉我他们的意思吗?

0 个答案:

没有答案