2

新しいAndroidフォン(GalaxyNoteとHTCEvo 4g lte)を使用したGooglePlayでアプリが見つからないことがわかりました。マニフェストと関係があると思います。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example"
android:versionCode="7"
android:versionName="1.15" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<compatible-screens>
    <screen android:screenSize="small" android:screenDensity="ldpi"/>
    <screen android:screenSize="normal" android:screenDensity="mdpi"/>
    <screen android:screenSize="large" android:screenDensity="hdpi"/>
    <screen android:screenSize="xlarge" android:screenDensity="xhdpi"/>
</compatible-screens>
<supports-screens android:xlargeScreens="true" android:smallScreens="true" android:anyDensity="true" android:resizeable="true" android:normalScreens="true" android:largeScreens="true"/>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <!-- AdMobActivity definition -->
<activity android:name="com.google.ads.AdActivity"
android:configChanges=    "keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
    <activity
        android:name="com.example.MainActivity"
        android:label="@string/app_name"
        android:configChanges="orientation|keyboardHidden|keyboard" >

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>
4

3 に答える 3

7
<compatible-screens>
    <screen android:screenSize="small" android:screenDensity="ldpi"/>
    <screen android:screenSize="normal" android:screenDensity="mdpi"/>
    <screen android:screenSize="large" android:screenDensity="hdpi"/>
    <screen android:screenSize="xlarge" android:screenDensity="xhdpi"/>
</compatible-screens>

これにより、小さな画面とldpiを備えたデバイスとの互換性が制限されます。そのため、mdpiを使用した小さな画面はサポートされません。このブロックを削除します。これで<supports-screens>、すべてのデバイスから見えるようになります。

于 2013-02-02T18:04:43.477 に答える
3

マニフェストと関係があると思います。

それは正しいでしょう。

まず、要素を削除する<compatible-screens>か、少なくともサイズと密度の組み合わせのリストを拡張します。現状では、16の可能性のうち、4つしかサポートしていないと主張しており、一部(たとえば、small/ ldpi)はかなり人気がありません。すべてのサイズと密度をサポートしていると言いたい場合は、<compatible-screens>要素を削除してください。

于 2013-02-02T18:04:25.010 に答える
-1

マニフェストファイルとは何の関係もありません。たとえば、アプリがタブレット専用の場合でも、スマートフォンの[検索]オプションからアプリを見つけることができます。

アプリが見つからない理由は、結果に表示されるほど人気が​​ないためです。アプリの多くのページの後に表示されます。

アプリを表示するには、名前の代わりにアプリケーションのパッケージを入力するだけです。例:com.example.myapp

于 2013-02-03T08:29:43.927 に答える