diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-11 09:39:23 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-11 09:41:32 +0000 |
| commit | bffbb94201a5637cb6b55b59b499fb0ec67218d6 (patch) | |
| tree | 52511960c63e5b427d599256ffd549f0932650ca /packages/mobile/app.json | |
| parent | 1f3a162fde79dbf9102d2e3f67cfc6b6e2e302e9 (diff) | |
| download | karakeep-bffbb94201a5637cb6b55b59b499fb0ec67218d6.tar.zst | |
mobile: Setup share intent
Diffstat (limited to 'packages/mobile/app.json')
| -rw-r--r-- | packages/mobile/app.json | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/packages/mobile/app.json b/packages/mobile/app.json index 9ebea4ea..11455267 100644 --- a/packages/mobile/app.json +++ b/packages/mobile/app.json @@ -16,19 +16,29 @@ "**/*" ], "ios": { - "supportsTablet": true + "supportsTablet": true, + "bundleIdentifier": "com.anonymous.hoardermobile" }, "android": { "adaptiveIcon": { "foregroundImage": "./assets/adaptive-icon.png", "backgroundColor": "#ffffff" - } + }, + "package": "com.anonymous.hoardermobile" }, "web": { "favicon": "./assets/favicon.png" }, "plugins": [ - "expo-router" + "expo-router", + ["expo-share-intent", { + "iosActivationRules": { + "NSExtensionActivationSupportsWebURLWithMaxCount": 1, + "NSExtensionActivationSupportsWebPageWithMaxCount": 1, + "NSExtensionActivationSupportsImageWithMaxCount": 1, + "NSExtensionActivationSupportsMovieWithMaxCount": 1 + } + }] ] } } |
