Skip to content

Getting Started

Quikshort lets you create shortcuts and quick-settings tiles from a variety of categories.

TypeDescription
AppsRegular launcher shortcut for an installed app
ActivitiesJump to a specific screen inside an app
ContactsCall directly, open the dialpad, or view a contact profile
FilesOpen a specific file
FoldersOpen a folder in a third-party file manager
SettingsJump to any Android settings screen
WebsitesOpen a URL or deeplink
IntentsBuild a shortcut from a raw Android intent
  1. Open Quikshort and tap the + button.
  2. Choose a category. For example, Apps for a simple app shortcut.
  3. Select the app or item you want to target.
  4. Edit the label and icon.
  5. Tap Add to Home Screen.
  1. Open Quikshort and switch to the Tiles tab.
  2. Tap + and configure the shortcut you want the tile to trigger.
  3. Android 13+: tap the + icon on the tile card to add it to quick settings directly.
  4. 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.

Quikshort is built on Android’s Intent system. Every shortcut is a saved intent that fires when you tap it.

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.

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.

FieldDescriptionExample
ActionWhat the intent should doACTION_VIEW
DataData to carry, in URI formathttps://atolphadev.com
PackageTarget a specific appcom.android.chrome
ClassTarget a specific activitycom.google.android.apps.chrome.IntentDispatcher
CategoryType of intentandroid.intent.category.BROWSABLE
ExtrasAdditional key-value dataS.testKey=testValue