Google Play でアプリを公開したいのですが、.apk ファイルをアップロードすると、0 台のデバイスでサポートされていることが示されます。これについてはすでにいくつかのトピックがあることは知っていますが、いずれにも解決策が見つかりません。以下に、Android マニフェストのソースコードを添付します。また、このアプリケーションには LibGDX を使用しており、これは Android ライブ壁紙であることにも言及したいと思います。また、テストデバイスとエミュレーターですべてが正常に動作します。回答ありがとうございます。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.caller.generationslwp.android"
android:versionCode="1"
android:versionName="1.0.1" >
<uses-sdk android:minSdkVersion="11" android:targetSdkVersion="21" />
<uses-feature android:name ="android:software.live_wallpaper" android:required="true"></uses-feature>
<uses-feature android:glEsVersion="0x00020000" android:required="true"></uses-feature>
<uses-feature android:name="android.hardware.touchscreen" android:required="true"></uses-feature>
<supports-screens android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"
/>
<application
android:allowBackup="false"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
>
<service android:name =".LiveWallpaperAndroid"
android:label = "@string/app_name"
android:icon = "@drawable/ic_launcher"
android:permission = "android.permission.BIND_WALLPAPER" >
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
</intent-filter>
<meta-data android:name ="android.service.wallpaper"
android:resource ="@xml/livewallpaper" />
</service>
<activity
android:name="com.caller.generationslwp.android.Settings"
android:exported="true"
android:label="@string/preview_app_name">
</activity>
</application>
</manifest
>