* Bump the RustSDK to v25.03.11 * Replace oidc login prompt with nil following the changes from https://github.com/matrix-org/matrix-rust-sdk/pull/4761 ``` /// * `prompt` - The desired user experience in the web UI. No value means /// that the user wishes to login into an existing account, and a value of /// `Create` means that the user wishes to register a new account. ``` * Fix trailing closure warnings * Update the client proxy after making `getNotificationSettings()` and `cachedAvatarUrl()` async (they used to be blocking on the rust side). * Move `Room.isEncrypted` to the info publisher and manually update the encryption state when creating the room. * Bump the SDK again to v25.03.12 - This introduces a new way to configure the tokio runtime that we can use to have extensions use less memory - introduce a new Target struct that takes care of setting up rust services (tracing and tokio) for our various targets - cleanup MXLog and friends * Address PR comments * Bump the SDK again, switch back to using `.consent` as the OIDC login prompt (which was reintroduced in matrix-org/matrix-rust-sdk/pull/4791)
94 lines
3.1 KiB
YAML
94 lines
3.1 KiB
YAML
name: ShareExtension
|
|
|
|
schemes:
|
|
ShareExtension:
|
|
analyze:
|
|
config: Debug
|
|
archive:
|
|
config: Release
|
|
build:
|
|
targets:
|
|
ShareExtension:
|
|
- running
|
|
- testing
|
|
- profiling
|
|
- analyzing
|
|
- archiving
|
|
profile:
|
|
config: Release
|
|
run:
|
|
askForAppToLaunch: true
|
|
config: Debug
|
|
debugEnabled: false
|
|
disableMainThreadChecker: false
|
|
launchAutomaticallySubstyle: 2
|
|
test:
|
|
config: Debug
|
|
disableMainThreadChecker: false
|
|
|
|
targets:
|
|
ShareExtension:
|
|
type: app-extension
|
|
platform: iOS
|
|
|
|
dependencies:
|
|
- package: MatrixRustSDK
|
|
- package: Collections
|
|
- package: Compound
|
|
|
|
info:
|
|
path: Info.plist
|
|
properties:
|
|
CFBundleDisplayName: $(PRODUCT_DISPLAY_NAME)
|
|
CFBundleShortVersionString: $(MARKETING_VERSION)
|
|
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
|
|
appGroupIdentifier: $(APP_GROUP_IDENTIFIER)
|
|
baseBundleIdentifier: $(BASE_BUNDLE_IDENTIFIER)
|
|
keychainAccessGroupIdentifier: $(KEYCHAIN_ACCESS_GROUP_IDENTIFIER)
|
|
productionAppName: $(PRODUCTION_APP_NAME)
|
|
NSExtension:
|
|
NSExtensionPointIdentifier: com.apple.share-services
|
|
NSExtensionPrincipalClass: $(PRODUCT_MODULE_NAME).ShareExtensionViewController
|
|
NSExtensionAttributes:
|
|
IntentsSupported: [
|
|
INSendMessageIntent,
|
|
]
|
|
NSExtensionActivationRule:
|
|
NSExtensionActivationSupportsFileWithMaxCount: 1
|
|
NSExtensionActivationSupportsImageWithMaxCount: 1
|
|
NSExtensionActivationSupportsMovieWithMaxCount: 1
|
|
NSExtensionActivationSupportsText: true
|
|
NSExtensionActivationSupportsWebURLWithMaxCount: 1
|
|
|
|
entitlements:
|
|
path: ShareExtension.entitlements
|
|
properties:
|
|
com.apple.security.application-groups:
|
|
- $(APP_GROUP_IDENTIFIER)
|
|
|
|
settings:
|
|
base:
|
|
PRODUCT_NAME: ShareExtension
|
|
PRODUCT_DISPLAY_NAME: $(APP_DISPLAY_NAME)
|
|
PRODUCT_BUNDLE_IDENTIFIER: ${BASE_BUNDLE_IDENTIFIER}.shareextension
|
|
MARKETING_VERSION: $(MARKETING_VERSION)
|
|
CURRENT_PROJECT_VERSION: $(CURRENT_PROJECT_VERSION)
|
|
DEVELOPMENT_TEAM: $(DEVELOPMENT_TEAM)
|
|
|
|
sources:
|
|
- path: ../Sources
|
|
- path: ../SupportingFiles
|
|
- path: ../../ElementX/Sources/ShareExtension
|
|
- path: ../../ElementX/Sources/Application/AppSettings.swift
|
|
- path: ../../ElementX/Sources/Application/TargetConfiguration.swift
|
|
- path: ../../ElementX/Sources/Other/Extensions/Bundle.swift
|
|
- path: ../../ElementX/Sources/Other/Extensions/FileManager.swift
|
|
- path: ../../ElementX/Sources/Other/Extensions/NSItemProvider.swift
|
|
- path: ../../ElementX/Sources/Other/Extensions/ProcessInfo.swift
|
|
- path: ../../ElementX/Sources/Other/Extensions/UIView.swift
|
|
- path: ../../ElementX/Sources/Other/Extensions/URL.swift
|
|
- path: ../../ElementX/Sources/Other/InfoPlistReader.swift
|
|
- path: ../../ElementX/Sources/Other/Logging
|
|
- path: ../../ElementX/Sources/Other/UserPreference.swift
|
|
- path: ../../ElementX/Sources/UITests/UITestsScreenIdentifier.swift
|