Android应用不会与intent.action.VIEW一起安装

时间:2017-09-24 00:06:19

标签: android

当我添加一个意图过滤器(让Google抓取我的应用内容并允许用户从搜索结果中输入我的应用)时,我的应用仍会在手机上从Android Studio运行,但不再安装。

我的清单在下面,我已经注释了添加的意图过滤器以使其再次安装,所以现在我收到一条警告,它无法通过Google搜索进行索引。 我能做什么才能安装并且可以编制索引?

这是我的第一个应用程序,如果这很明显,我很抱歉,但我感谢任何帮助。感谢。

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

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

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

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

                <!--category android:name="android.intent.category.DEFAULT" /-->
                <!--category android:name="android.intent.category.BROWSABLE" /-->
                <category android:name="android.intent.category.LAUNCHER" />
                <!--data android:scheme="somename"
                    android:host="myappname" /-->
            </intent-filter>
        </activity>

        <activity android:name=".ChildActivity">
        </activity>

    </application>

</manifest>

1 个答案:

答案 0 :(得分:2)

我似乎找到了解决方案。应该有2个单独的意图过滤器......

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

        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="http"
                android:host="www.mywebsite.com"
                android:pathPrefix="/myappname"  />
        </intent-filter>