Android 报告我的应用程序与我的设备不兼容
Android reports my application is incompactible with my devices
美好的一天。
我有设备 philips Xenium W732 (android 4.0.3) 和 Lenovo VIBE p1n (android 5.0)。
我在 google play 中发布了我的应用程序。
AndroidManifest.xml 我的申请是:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ru.thetheory.losscalculator"
android:versionCode="4"
android:versionName="1.3">
<uses-sdk android:minSdkVersion="14" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="ru.thetheory.losscalculator.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Google 播放报告说我的两个设备都无法压缩,以为我在两个设备上测试了应用程序。
我尝试使用相同的 google 帐户下载应用程序,我发布了它。
是否允许在 google play 中接收自己的应用程序,或者开发者帐户和 google play 帐户必须是不同的 google 帐户,以便报告设备,以便压缩?
我问了这个问题。
我回答它。
我的问题根本不在应用程序中。
我的应用程序已发布,不是免费应用程序。
如果应用程序不是免费的,google play 不允许下载它,如果开发者帐户和 google play 帐户相同。
这是 google 播放策略。
google播放的WEB界面没有显示正确的错误信息。
在这种情况下,google 玩 WEB 只是显示错误消息(您的设备不兼容)。
但是,如果您尝试从 phone 购买它,您会收到真正的错误消息。
美好的一天。 我有设备 philips Xenium W732 (android 4.0.3) 和 Lenovo VIBE p1n (android 5.0)。 我在 google play 中发布了我的应用程序。 AndroidManifest.xml 我的申请是:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ru.thetheory.losscalculator"
android:versionCode="4"
android:versionName="1.3">
<uses-sdk android:minSdkVersion="14" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="ru.thetheory.losscalculator.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Google 播放报告说我的两个设备都无法压缩,以为我在两个设备上测试了应用程序。 我尝试使用相同的 google 帐户下载应用程序,我发布了它。 是否允许在 google play 中接收自己的应用程序,或者开发者帐户和 google play 帐户必须是不同的 google 帐户,以便报告设备,以便压缩?
我问了这个问题。 我回答它。 我的问题根本不在应用程序中。 我的应用程序已发布,不是免费应用程序。 如果应用程序不是免费的,google play 不允许下载它,如果开发者帐户和 google play 帐户相同。 这是 google 播放策略。 google播放的WEB界面没有显示正确的错误信息。 在这种情况下,google 玩 WEB 只是显示错误消息(您的设备不兼容)。 但是,如果您尝试从 phone 购买它,您会收到真正的错误消息。