Google Playストアへのアップデートをアップロードしようとしていますが、apkをアップロードした後に0のデバイスがサポートされています。Google Play 0対応デバイス
サードパーティのライブラリでも同様の疑問が生じていますが、私は新しいライブラリを使用していません。
私はv7 appcompatサポートライブラリを使用しています。以前はv4を使用していましたが、Google Playで問題はありませんでした。私はこれが問題であるかどうかはわかりませんが、これは私が外部ライブラリの観点から作った唯一の変更です。私が問題になるかもしれないのだろうか
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.saliherikci.poemnotebook"
android:versionCode="10"
android:versionName="2.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="25" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:logo="@drawable/ic_action_logo"
android:theme="@style/AppTheme" >
<activity
android:name="com.saliherikci.poemnotebook.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.saliherikci.poemnotebook.ReadPoemActivity"
android:label="@string/title_activity_read_poem" >
</activity>
<activity
android:name="com.saliherikci.poemnotebook.SelectedAuthorsPoemsActivity"
android:label="@string/title_activity_selected_authors_poems"
android:parentActivityName="com.saliherikci.poemnotebook.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.saliherikci.poemnotebook.MainActivity" />
</activity>
<activity
android:name="com.saliherikci.poemnotebook.FavouritesActivity"
android:label="@string/title_activity_favourites"
android:parentActivityName="com.saliherikci.poemnotebook.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.saliherikci.poemnotebook.MainActivity" />
</activity>
</application>
</manifest>
:
は、ここに私のマニフェストファイルです。
はい、Googleのバグでした。私はアプリがすべて正常にアップロードされます。人々はそれをダウンロードすることができます。 –