I am using react-native-siri-shortcut and have successfully created a "Shortcut", however, it seems that it's only a shortcut that takes the user back to my App.
I've started using Swift 5 and XCode 13.2, so happy to receive answers using these languages too.
What I'm trying to do is allow them to create Automation shortcuts from within the app, whether it be "Open this app at 5pm every day" or something similar.
Is it possible to call the API to create Shortcut Automations? Is there another way, that doesn't use react-native-siri-shortcut?
Any help is greatly appreciated, thank you!
Interacting with apples Shortcut app:
use deep linking to allow users to open the shortcuts app, open a single shortcut or run a specific shortcut.
provide a shortcut for your app that then can be used within the ShortCut app like: MyApp - show me the latest news from "selected blog"
Things worth mentioning when working with shortcut automations:
automations require special permissions to run without user interaction
many automations won't run if the device is locked
In app automations (IOS):
You can use Background Tasks
, BGTaskScheduler
, UserNotifications (APNS)
etc. to automate things from within your app.
On macOS you can easily automate things using crontab
- when the user is logged in - or launchctl
if you want to be more fexible (attention for daemons are root permissions required!)
Notice: Any kind of automation can cause security issues if it can run without user interactions, especially if it has root privileges.
https://developer.apple.com/documentation/sirikit/offering_actions_in_the_shortcuts_app
https://medium.com/infonity-tech/shortcut-deeplinking-for-ios-developer-64f75171c7de
https://www.raywenderlich.com/6462-siri-shortcuts-tutorial-in-ios-12