Deep linking and multiple app instances

AndroidDeep Linking

Android Problem Overview


I have implemented deep linking in my app. I added this intent filter in my manifest file, and the deep linking is working.

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

The problem is that through deep linking, my app is launching on top of current app. If I am in Gmail and I click a link, then my app is launching on top of Gmail. I want to launch my app differently.

If my app is already running in background and I click on a link in Gmail which redirects to my app, I will have two instances of my app running at the same time; one in the background, and another on top of Gmail. I want to run only one instance of my app at a time, so it's not also on top of the current app (Gmail). How can I do that?

Android Solutions


Solution 1 - Android

You need to do following things for your Activity in your Manifest.

android:launchMode="singleTask"

This tells the system to always launch the existing instance of the Activity if it is already created.

And you can handle the Intent then by overriding the method

onNewIntent 

See http://developer.android.com/guide/topics/manifest/activity-element.html for more information.

Solution 2 - Android

the accepted answer didn't work for me, here is what did:

intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
finish();

from the official doc: >If set, and the activity being launched is already running in the current task, then instead of launching a new instance of that activity, all of the other activities on top of it will be closed and this Intent will be delivered to the (now on top) old activity as a new Intent.

Solution 3 - Android

Well we had several issues with deeplinks. Like:

  1. click on the same link twice only, first click triggered the correct view
  2. opened multiple instances
  3. Links in whatsapp or facebook opened a view in whatsapp itself because of their web browser.
  4. on android 6 opened only one instance, but was only handling the first intent, second and third opens app but no action because the intentdata did not changed somehow.

So the following is not an clear answer to the question more an allround solution for several issues we had.

Our solution:

a) Created a new FragmentActivity

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main2); //well can be anything some "loading screen"

    Intent intent = getIntent();
    String intentUrl = intent.getDataString();
    Intent newIntent = new Intent(this, MainActivity.class);
    newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
    newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    newIntent.putExtra("intentUrl",intentUrl);
    newIntent.setAction(Long.toString(System.currentTimeMillis()));

    startActivity(newIntent);
    finish();
}

b) Manifest:

    <activity
        android:name="YOUR.NEW.FRAGMENT.ACTIVITY"
        android:label="@string/app_name"
        android:launchMode="singleTop">
        <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" />
            <data android:scheme="https" />
            <data android:scheme="scheme1" /> <!-- sheme1://-->
            <data android:host="yourdomain.com" />
            <data android:host="www.yourdomain.com" />
        </intent-filter>
    </activity>

c) handle the passed new intent in your activities onCreate() and onResume() by calling the following example function:

private void handleUrl(Intent i){
    String intentUrl = null;
    if (i != null) {
        intentUrl = i.getStringExtra("intentUrl");
        if (intentUrl == null){
            //hmm intent is damaged somehow
        } else {
            //because of onResume()
            if ( i.getBooleanExtra("used",false) ) {
                return;
            }
            i.putExtra("used", true);

           //DO SOMETHING WITH YOUR URL HERE
    }       
}

Solution 4 - Android

I had this exact same problem, except I wanted the user to land back in the main task with the full back stack, as though they had just used the app switcher to move to my app. To accomplish this I had to reorder tasks.

  1. Give my app permission to re-order tasks

    http://schemas.android.com/apk/res/android" package="com.company.app">

  2. Keep track of what the main task ID is

    public class MainActivity { public static int mainTaskId;

     @Override
     protected void onCreate(Bundle savedInstanceState) {
          super(savedInstanceState);
          //set the main task ID
          taskId = getTaskId();
     } 
    

    }

  3. When my deep link activity is launched it saves some data for use later and then brings the main task to the front

    public class DeepLinkActivity {

     @Override
     protected void onCreate(Bundle savedInstanceState) {
         super(savedInstanceState);
    
         //persist deep link data
         Uri uri = intent.getData();
         String action = intent.getAction();
         saveForLater(uri, action);
    
         if(isTaskRoot()){
             //I'm in my own task and not the main task
             final ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
             activityManager.moveTaskToFront(MainActivity.taskId, ActivityManager.MOVE_TASK_NO_USER_ACTION);
             }
         }
     }
    

    }

  4. When whatever activity is at the top of the main task's back stack starts, it checks if there's any saved data to work on, and works on it.

Solution 5 - Android

I solve these issue by just add android:launchMode="singleTask" in AndroidManifest.xml file

Solution 6 - Android

just solve this issue for only one Instance

> android:launchMode="singleInstance"

<activity
    android:name=".SplashScreen"
    android:screenOrientation="portrait"
    android:launchMode="singleInstance"
    android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    <intent-filter android:autoVerify="true">
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data android:scheme="nvd.abc" />
    </intent-filter>
</activity>

Solution 7 - Android

Consider using finish() when leaving the deep link Activity, so if the deep link is operated again the activity will be recreated. This can avoid errors and contradictions.

Solution 8 - Android

After going through with different solutions available on multiple platforms. Here is my solution for best practise for handling Deep linking in your app.

First create a separate Activity to handle your deep links intents for eg. DeepLinkHandlerActivity.

Make sure you specify this Activity in manifest as follows:

<activity android:name=".DeepLinkHandlerActivity"
            android:launchMode="singleTask">
            <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:host="www.xyz.com"
                    android:pathPrefix="/abc"
                    android:scheme="https" />
             </intent-filter>

put this activity as "Single Task".

Next: Setup this new Activity as follow:

    class DeepLinkHandlerActivity : BaseActivity(){
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.whaterever_your_layout)
        handelIntent(intent)
    }

    override fun onNewIntent(intent: Intent?) {
        super.onNewIntent(intent)
        handelIntent(intent)
    }

    private fun handelIntent(intent: Intent?){
        intent?.setClass(this,SplashActivity::class.java)
        startActivity(intent)
    }
}

Note: SplashActivity is your default activity i.e. your launcher activity.

Launcher activity code eg.

    <activity
            android:name=".splash.SplashActivity"
            android:theme="@style/SplashTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

That's it! your deep link handling problem is solved!

Solution 9 - Android

(initialize at the starting of class)

String itemInfo == "";

Basically compare the package name.

if(!itemInfo.equals(getItem(position).activityInfo.packageName)) 
{ 
    intent.setComponent(new ComponentName(getItem(position).activityInfo.packageName, 
                                          getItem(position).activityInfo.name));
            
    itemInfo = getItem(position).activityInfo.packageName;
    ((AxisUpiActivtiy) context).startActivityForResult(intent, RequestCodes.START_INTENT_RESPONSE);
}

this condition itemInfo.equals(getItem(position).activityInfo.packageName) is the important

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionHariRamView Question on Stackoverflow
Solution 1 - AndroidMickyView Answer on Stackoverflow
Solution 2 - Androiduser3453281View Answer on Stackoverflow
Solution 3 - AndroidPhilipp ReddigauView Answer on Stackoverflow
Solution 4 - AndroidethertonView Answer on Stackoverflow
Solution 5 - Androidbharat udasiView Answer on Stackoverflow
Solution 6 - Androidtej shahView Answer on Stackoverflow
Solution 7 - AndroidSO 80View Answer on Stackoverflow
Solution 8 - AndroidbinaryakashView Answer on Stackoverflow
Solution 9 - AndroidMeesha TyagiView Answer on Stackoverflow