안녕하세요.
금번에 앱을 새롭게 업데이트 한 후에 플레이스토어에서 앱이 검색이 되지 않는 문제가 있습니다.
그래서 자료를 찾아 확인하고 있는데 구글에서는 아래와 같은 설명을 하고 있습니다.
Strictly, Google Play does not filter based on <uses-permission> elements. However, it does read the elements to determine whether the application has hardware feature requirements that may not have been properly declared in<uses-feature> elements. For example, if an application requests the CAMERA permission but does not declare a<uses-feature> element for android.hardware.camera, Google Play considers that the application requires a camera and should not be shown to users whose devices do not offer a camera.
In general, if an application requests hardware-related permissions, Google Play assumes that the application requires the underlying hardware features, even though there might be no corresponding to <uses-feature>declarations. Google Play then sets up filtering based on the features implied by the <uses-feature> declarations.
For a list of permissions that imply hardware features, see the documentation for the <uses-feature> element.
만약에 <uses-permission android:name="android.permission.VIBRATE" />을 주었는데,
태블릿과 같은 해당 디바이스에서 Vibrate를 지원하지 않는다면 플레이스토어에서 검색이 되지 않는건가요??