Play 스토어에서 오류 발생 - "이 앱은 모든 기기와 호환되지 않습니다." (Getting error from play store - “This app is incompatible with all of your devices.”)


문제 설명

Play 스토어에서 오류 발생 ‑ "이 앱은 모든 기기와 호환되지 않습니다." (Getting error from play store ‑ “This app is incompatible with all of your devices.”)

내 앱을 빌드했으며 에뮬레이터에서도 테스트했습니다. 내 장치도. 하지만 해당 APK 파일을 PlayStore에 업로드할 때 오류가 발생합니다.

"이 앱은 모든 기기와 호환되지 않습니다."

supports‑screens 태그를 다음에서 변경했습니다.

<supports‑screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />

<supports‑screens android:smallScreens="false" />

아직 작동하지 않습니다.

여기에 내 AndroidManifest.xml:

<?xml version='1.0' encoding='utf‑8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="2" android:versionName="0.0.2" package="com.ionicframework.esp132862" xmlns:android="http://schemas.android.com/apk/res/android">
    <supports‑screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
    <uses‑permission android:name="android.permission.INTERNET" />
    <uses‑permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses‑permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:supportsRtl="true">
        <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.Black.NoTitleBar" android:windowSoftInputMode="adjustResize">
            <intent‑filter android:label="@string/launcher_name">
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent‑filter>
        </activity>
    </application>
    <uses‑sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
</manifest>

이것은 내 첫 번째 앱이고 ionic을 사용하여 빌드했습니다. Android를 처리하는 방법을 모르겠습니다. 아무 문제가 무엇인지 추측해 보세요. 왜 내 기기와 호환되지 않는다는 메시지가 표시되나요?


참조 솔루션

방법 1:

Finally, I fixed the issue. The issue was from our side. Actually, I'm using Crosswalk with Ionic. So, I was getting 2 APK for upload to Play Store. And, here the catch is if you've multiple APK then in Google Play Console you need to switch to 'Advance Mode' from 'Standard Mode' which I didn't know about earlier. So, I was continuously trying to upload my 2 APK in standard mode & that's why something was breaking/missing in Google Play store side & I was getting that error.

But, now after uploading those APK by Advance mode that error has fixed.

Anyway, Thanks, all of your effort to help me out. I really Appreciate it.

(by SureshSuresh)

참조 문서

  1. Getting error from play store ‑ “This app is incompatible with all of your devices.” (CC BY‑SA 2.5/3.0/4.0)

#ionic #APK #Android






관련 질문

Cordova - OS 업그레이드 후 iOS/Android 모두에서 앱 충돌 (Cordova - app crashes on both iOS/Android after an OS upgrade)

모바일용 HTML 5의 특정 영역에 링크가 있는 이미지 (Image with links in certain areas in HTML 5 for mobile)

Play 스토어에서 오류 발생 - "이 앱은 모든 기기와 호환되지 않습니다." (Getting error from play store - “This app is incompatible with all of your devices.”)

div의 오른쪽 하단에 이온 버튼 정렬 (Align an ionic button at the bottom right of a div)

새로운 Xcode 프로비저닝 정책 및 Ionic Framework (New Xcode provisioning policy and Ionic Framework)

각도 [$injector:unpr] 알 수 없는 공급자 오류를 해결하는 방법? (How to solve angular [$injector:unpr] Unknown provider error?)

ionic, 팝오버 범위에 범위 변수 전달 (ionic, pass scope variable to popover scope)

Angular: 2필드 데이터 바인딩 문제 (Angular: issue with two-field data binding)

ionic 2에서 ion-title의 글꼴 색상 변경 (Change font color of ion-title in ionic 2)

PhoneGap 빌드가 내 모든 파일을 업데이트하지 않습니다. (PhoneGap build is not updating all of my files)

Ionic 빌드 Android를 수행하는 동안 오류가 발생했습니다. (Error while doing Ionic build android)

$ionicHistory.backView() stateParams 변경 후 돌아가기 (Going back after changing stateParams of $ionicHistory.backView())







코멘트