简体   繁体   中英

Android Deep Link (with app uninstalled but left data in device)

I set deep link in my Android app but I found that if user uninstalled app without clear all data, the device show alert

Alert shown in device:

(设备中显示的警报)

for app installation instead of open link in browser.Is there any method to open link in browser if user uninstall app even data is not yet cleared?

Target Flow:

(目标流)

I came across this same issue a while back, in my case I resolved the problem by setting manifest allowBackup to false (default is true):

android:allowBackup="false"

This may have other implications to your app? Worth reading the material around allowBackup.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM