Mindful supports deep linking for external apps, browsers, or command-line tools to interact with the app. Right now it only supports opening screen but in future we are planning to support integration with third party apps.
- Navigate to any screen with specified parameters.
- Execute actions like start session, block apps by invoking intent from third party apps like Tasker with parameters.
- Broadcast event to third party apps when focus session starts/ends.
- Broadcast event to third party apps when bedtime routine starts/ends.
- Overall broadcast to third party apps when some special events occurs.
-
- Description: Opens the home screen on the specified tab.
- Example:
com.mindful.android://open/home?tab=1 - Parameters:
tab(Optional)0→ Dashboard (Default)1→ Statistics2→ Notifications3→ Bedtime
-
- Description: Opens the focus screen on the specified tab.
- Example:
com.mindful.android://open/focus?tab=1 - Parameters:
tab(Optional)0→ Focus (Default)1→ Timeline
-
- Description: Opens the active session screen.
- Example:
com.mindful.android://open/activeSession
-
- Description: Opens the app's dashboard screen with the specified parameters.
- Example:
com.mindful.android://open/appDashboard?package=com.instagram.android&usageType=1&day=2025-06-28 - Parameters:
-
package(Required)- Package name of the targeted app
-
usageType(Optional)0→ Screen usage (Default)1→ Network usage
-
day(Optional)- Targeted day's date formatted as string (yyyy-mm-dd)
- Date today (Default)
-
-
- Description: Opens the batched notifications screen on the specified tab.
- Example:
com.mindful.android://open/notifications?tab=1 - Parameters:
tab(Optional)0→ Notifications (Default)1→ Timeline
-
- Description: Opens the parental and invincible mode controls screen.
- Example:
com.mindful.android://open/parentalControls
-
- Description: Opens the restriction groups screen.
- Example:
com.mindful.android://open/restrictionGroups
-
- Description: Opens the shorts blocking screen.
- Example:
com.mindful.android://open/shortsBlocking
-
- Description: Opens the websites blocking screen.
- Example:
com.mindful.android://open/websitesBlocking
-
- Description: Opens the settings screen on the specified tab.
- Example:
com.mindful.android://open/settings?tab=1 - Parameters:
tab(Optional)0→ General (Default)1→ Database2→ About
-
- Description: Opens the latest changelogs screen.
- Example:
com.mindful.android://open/changeLogs
Tip
Navigate user to specific screen and perform some action automatically.
Please ensure Mindful is installed before testing. To test deep links manually, you can use the following methods:
adb shell am start -a android.intent.action.VIEW -d "com.mindful.android://open/home?tab=1"Create an HTML file with following content. Open the created HTML file in a browser and click on Launch
<a href="intent://open/home?tab=1#Intent;scheme=com.mindful.android;package=com.mindful.android;end">Launch</a>