새소식

mobile/🤖 Cordova

[cordova] inappbrowser에서 onpluse 해결하기 (기기 및 네트워크 남용 정책과 개발자 배포 계약의 섹션 4.4)

  • -
728x90

안녕하세요. 어플리케이션을 개발했는데 아래와 같은 메일을 받았네요.


오레오 다이어리 개발자님, 안녕하세요.

박사아들 다이어리(커피, 요리, 날씨, Youtube), com.globalbridge.trustframe을(를) 검토한 결과 Google의 기기 및 네트워크 남용 정책과 개발자 배포 계약의 섹션 4.4를 위반하여 Google Play에서 앱이 삭제되었습니다. 이 앱은 정책에 부합하는 업데이트를 제출할 때까지 사용자가 이용할 수 없습니다.

앱을 제출하여 다시 검토를 받으려면 다음 단계를 따르세요.

  1. 앱에서 YouTube 동영상의 백그라운드 재생을 허용하는 등 서비스 약관을 위반하는 방식으로 서비스 또는 API에 액세스하거나 사용하지 않는지 확인합니다.
  2. 기기 및 네트워크 남용 정책을 읽고 자세한 내용과 예시를 확인합니다.
  3. 앱이 개발자 프로그램 정책에 열거된 다른 정책을 모두 준수하는지 확인합니다. 앱에 또 다른 정책 문제가 있는 경우 추가 조치가 취해질 수 있음을 염두에 두시기 바랍니다.
  4. 개발자 콘솔에 로그인하고 앱을 제출합니다.

승인되면 앱이 다시 게시되며 기존의 설치 수, 평점, 리뷰 정보는 그대로 유지됩니다.

정책을 검토했으며 이번 삭제가 실수라고 생각되면 Google의 정책 지원팀에 문의하세요. 영업일 기준 2일 이내에 직원이 연락을 드릴 것입니다.

Google Play에 항상 관심을 가져주시고 협조해 주셔서 감사합니다.

감사합니다.

Patrick

Google Play 검토팀

Hi Developers at 오레오 다이어리,

After review, 박사아들 다이어리(커피, 요리, 날씨, Youtube), com.globalbridge.trustframe, has been removed from Google Play because it violates our device and network abuse policy and section 4.4 of the Developer Distribution Agreement. This app won’t be available to users until you submit a compliant update.

Here’s how you can submit your app for another review:

  1. Make sure your app doesn’t access or use a service or API in a manner that violates its terms of service, for example, by enabling background play of YouTube videos.
  2. Read through the Device and Network Abuse policy for more details and examples.
  3. Make sure your app is compliant with all other policies listed in the Developer Program Policies. Remember that additional enforcement could occur if there are further policy issues with your apps.
  4. Sign in to your Developer Console and submit your app.

If approved, your app will again be available with all installs, ratings, and reviews intact.

If you’ve reviewed our policies and feel this removal may have been in error, please reach out to our policy support team. One of my colleagues will get back to you within 2 business days.

I appreciate your support of Google Play!

Best,

Patrick

Google Play Review Team

 

We'd appreciate your feedback on Play policy notification emails. Help us improve them by completing this three question survey.


해결하는 방법입니다.


<!DOCTYPE html>
<html>
    <head>
    <title>Device Ready Example</title>

    <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
    <script type="text/javascript" charset="utf-8" src="example.js"></script>
    </head>
    <body onload="onLoad()">
    </body>
</html>


// example.js file
// Wait for device API libraries to load
//
function onLoad() {
    document.addEventListener("deviceready", onDeviceReady, false);
}

// device APIs are available
//
function onDeviceReady() {
    document.addEventListener("pause", onPause, false);
    document.addEventListener("resume", onResume, false);
    document.addEventListener("menubutton", onMenuKeyDown, false);
    // Add similar listeners for other events
}

function onPause() {
    // Handle the pause event
}

function onResume() {
    // Handle the resume event
}

function onMenuKeyDown() {
    // Handle the menubutton event
}

// Add similar event handlers for other events


출처 : https://cordova.apache.org/docs/en/latest/cordova/events/events.html


도움이 되셨다면, 좋아요 살짝 눌러주세요 ^  ^ 


질문은 댓글을 달아주세요. 감사합니다.

반응형
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.