Getting Started
Quikshort lets you create shortcuts and quick-settings tiles from a variety of categories.
Shortcut types
Section titled “Shortcut types”| Type | Description |
|---|---|
| Apps | Regular launcher shortcut for an installed app |
| Activities | Jump to a specific screen inside an app |
| Contacts | Call directly, open the dialpad, or view a contact profile |
| Files | Open a specific file |
| Folders | Open a folder in a third-party file manager |
| Settings | Jump to any Android settings screen |
| Websites | Open a URL or deeplink |
| Intents | Build a shortcut from a raw Android intent |
Creating your first shortcut
Section titled “Creating your first shortcut”- Open Quikshort and tap the + button.
- Choose a category. For example, Apps for a simple app shortcut.
- Select the app or item you want to target.
- Edit the label and icon.
- Tap Add to Home Screen.
Creating your first tile
Section titled “Creating your first tile”- Open Quikshort and switch to the Tiles tab.
- Tap + and configure the shortcut you want the tile to trigger.
- Android 13+: tap the + icon on the tile card to add it to quick settings directly.
- Android 12 and below: expand quick settings, tap the edit icon, find the tile by its default name (e.g.
Tile1), drag it into position, then save.
How it works
Section titled “How it works”Quikshort is built on Android’s Intent system. Every shortcut is a saved intent that fires when you tap it.
Activities
Section titled “Activities”An Activity is a single screen inside an Android app. When you tap an app icon, Android fires an intent that opens that app’s MainActivity. Apps can have many activities beyond just the main one, and Quikshort lets you target any of them directly.
Intents
Section titled “Intents”An intent is a message passed between activities. It tells Android which screen to open and what data to pass along. Quikshort builds these intents for you automatically, but the Intents shortcut type lets you construct one manually for advanced use cases.
| Field | Description | Example |
|---|---|---|
| Action | What the intent should do | ACTION_VIEW |
| Data | Data to carry, in URI format | https://atolphadev.com |
| Package | Target a specific app | com.android.chrome |
| Class | Target a specific activity | com.google.android.apps.chrome.IntentDispatcher |
| Category | Type of intent | android.intent.category.BROWSABLE |
| Extras | Additional key-value data | S.testKey=testValue |
Next steps
Section titled “Next steps” Tiles How to add custom tiles to your quick settings panel.
Website Shortcuts Open URLs in a specific browser using package and class.
Shortcuts without watermark Use shortcut widgets to get rid of the system badge overlay.