我試着寫我的應用程序可瀏覽意圖,當一個特定的URL被稱爲作用:可瀏覽意圖停止工作
<gap:config-file platform="android" parent="/manifest/application" mode="add" >
<!-- registers to receive SEND and VIEW intents from other apps -->
<activity android:name="com.myAppName" android:label="@string/app_name">
<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="example.com"
/>
<data android:scheme="http"
android:host="www.example.com"
/>
</intent-filter>
</activity>
</gap:config-file>
但這並工作(種)。當進入Url時,我收到一個彈出窗口詢問我瀏覽器或我的應用程序是否應該打開該URL。
當選擇我的應用程序時,它立即崩潰。但這不是我需要解決的問題。問題是,幾次之後,我的設備停止詢問我應該打開該網址的哪個應用程序。看起來好像有一種「後備」可以防止幾次崩潰後使用該網址?
我試圖重新安裝我的apk並重新啓動設備。我也清除了我的應用程序緩存。
是否有機會再次進行此項工作?
的只是作爲一個補充。我用phonegap-build標記。所以我使用構建服務。儘管如此,你的回答很有幫助。我將抓取鏈接。謝謝 –