5

stackoverflow に関する多くの投稿を読み、Vogella や theNewBoston などの多くのチュートリアルを実行して、アプリの公開でどこを間違えているかを確認しました。パッケージの署名付きアプリケーションをエクスポートし、新しい apk とキーストアを作成しました。debuggable = false を今設定する必要はないと思います。Eclipse は自動的にそれを行います。開発者コンソールに自分のアプリが公開済みとして表示されているのを確認できますが、携帯電話または PC で Google Play を検索しようとすると、自分のアプリが見つかりません。パッケージ名を使用してアプリを検索するだけで、アプリを見つけることができます。私のアプリは、タブレットではなく、小さな通常の画面の電話専用に開発されています。たくさんの電話を使ってアプリを検索してみましたが、うまくいきませんでした。ここに添付されているのは私のマニフェストです。この問題を解決する方法を教えてください。

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

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="18" />

    <!-- These 4 lines have been added by user i.e me -->
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
    <!--
     The following two permissions are not required to use
     Google Maps Android API v2, but are recommended. added by me
    -->
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

    <permission android:name="com.MyPackage.permission.MAPS_RECEIVE"
        android:protectionLevel="signature"></permission>

    <supports-screens
        android:anyDensity="true"
        android:normalScreens="true"
        android:resizeable="true"
        android:smallScreens="true" />

    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />

    <uses-permission android:name="android.permission.CALL_PHONE" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.MyPackage.SplashScreen"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="API Key" />



    </application>

</manifest>
4

5 に答える 5

0

説明にアプリ名を入れてください。タイトルスポットだけではありません。

于 2013-09-18T14:46:57.210 に答える
-2

パッケージ名を使用して my を検索します。

あなたはそれを見つけるでしょう。

パッケージ名が com.MyPackage.

Google Play 検索ボックスで com.MyPackage として検索します。

それはかなりうまく動作します。

于 2014-05-27T06:52:25.903 に答える