我正在开发一个Android应用程序,以发送Facebook应用程序请求。
当我点击Facebook上的通知时,即使安装了该应用,它也会重定向到Google Play。在Google Play中,它会显示选项" OPEN"和" UNINSTALL"。预期的答案应该是启动我的应用程序。
我正在使用Titanium Appcelerator进行开发,在Google Developer中我使用我的帐户作为alpha测试人员。
我确信我必须修改我的tiapp.xml文件。
<android xmlns:android="http://schemas.android.com/apk/res/android">
<tool-api-level>14</tool-api-level>
<manifest>
<supports-screens android:anyDensity="false"
android:largeScreens="true" android:normalScreens="true" android:smallScreens="false"/>
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19"/>
<application android:theme="@style/Theme.Action">
<activity
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="my_app"
android:launchMode="singleTask"
android:name=".ApplicationActivity" android:theme="@style/Theme.Titanium">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<data android:host="" android:scheme="schemaurl"/>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
</intent-filter>
</activity>
</application>
</manifest>
</android>