【问题标题】:How to properly manage manifest before releasing android APP?android APP发布前如何正确管理manifest?
【发布时间】:2018-01-13 07:04:20
【问题描述】:

有人可以帮助我吗?我是 android 新手,我已经发布了我的应用程序,但已经 6 天了,我没有从任何人那里下载。我认为我的清单文件有问题。我是否需要在清单中添加某人才能通过 google playstore 获取索引这是我的清单示例`

    <?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.blogspot.znetworktv.facebookupdate"
    xmlns:tools="http://schemas.android.com/tools">



    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

    <meta-data android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version"/>
    <meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>

    <application
        android:hardwareAccelerated="true"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">


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

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

            </intent-filter>

        </activity>

        <activity android:name=".why" />
        <activity android:name=".Kion" />
        <activity android:name=".Past" />
        <activity android:name=".war" />
        <activity android:name=".Start" />
        <activity android:name=".bestad" />
        <activity android:name=".start2"></activity>`

【问题讨论】:

标签: android android-layout android-activity android-manifest


【解决方案1】:

不,您不需要添加任何内容来显示。

问题更可能出现在 Play 商店中您的应用的标题、屏幕截图和说明中。查看Get discovered on Google Play search 了解更多信息。

【讨论】:

  • 感谢您的回复,但我能再问一个问题吗?Playstore 中有许多蹩脚的应用程序下载了很多很多您是否检查了我的清单文件是否一切正常,如果是,那么目的是什么?我在下面提到的清单中的这种意图? --
  • @FastReviewRobo 是的,一切都很好。检查文档developer.android.com/reference/android/content/Intent.html
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2015-07-12
  • 1970-01-01
相关资源
最近更新 更多