2022-11-21 19:37:13 +03:00
|
|
|
name: NSE
|
|
|
|
|
|
|
|
schemes:
|
|
|
|
NSE:
|
|
|
|
analyze:
|
|
|
|
config: Debug
|
|
|
|
archive:
|
|
|
|
config: Release
|
|
|
|
build:
|
|
|
|
targets:
|
|
|
|
NSE:
|
|
|
|
- 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:
|
|
|
|
NSE:
|
|
|
|
type: app-extension
|
|
|
|
platform: iOS
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- package: MatrixRustSDK
|
|
|
|
- package: KeychainAccess
|
|
|
|
- package: Kingfisher
|
2023-01-20 16:40:23 +02:00
|
|
|
- package: Collections
|
2023-06-27 13:44:19 +02:00
|
|
|
- package: Compound
|
2023-08-17 15:11:34 +02:00
|
|
|
- package: DeviceKit
|
2023-09-13 12:30:41 +03:00
|
|
|
- package: DTCoreText
|
|
|
|
- package: LRUCache
|
2023-09-25 09:46:43 +02:00
|
|
|
- package: Version
|
2022-11-21 19:37:13 +03:00
|
|
|
|
|
|
|
info:
|
2025-02-26 18:29:20 +00:00
|
|
|
path: Info.plist
|
2022-11-21 19:37:13 +03:00
|
|
|
properties:
|
2023-05-29 10:41:01 +02:00
|
|
|
CFBundleDisplayName: $(PRODUCT_DISPLAY_NAME)
|
2022-11-21 19:37:13 +03:00
|
|
|
CFBundleShortVersionString: $(MARKETING_VERSION)
|
|
|
|
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
|
|
|
|
appGroupIdentifier: $(APP_GROUP_IDENTIFIER)
|
|
|
|
baseBundleIdentifier: $(BASE_BUNDLE_IDENTIFIER)
|
2022-12-06 17:39:15 +00:00
|
|
|
keychainAccessGroupIdentifier: $(KEYCHAIN_ACCESS_GROUP_IDENTIFIER)
|
2024-04-10 16:58:00 +01:00
|
|
|
productionAppName: $(PRODUCTION_APP_NAME)
|
2022-11-21 19:37:13 +03:00
|
|
|
NSExtension:
|
|
|
|
NSExtensionPointIdentifier: com.apple.usernotifications.service
|
|
|
|
NSExtensionPrincipalClass: $(PRODUCT_MODULE_NAME).NotificationServiceExtension
|
|
|
|
|
2025-02-26 18:29:20 +00:00
|
|
|
entitlements:
|
|
|
|
path: NSE.entitlements
|
|
|
|
properties:
|
|
|
|
com.apple.developer.usernotifications.filtering: true
|
|
|
|
com.apple.security.application-groups:
|
|
|
|
- $(APP_GROUP_IDENTIFIER)
|
|
|
|
keychain-access-groups:
|
|
|
|
- $(KEYCHAIN_ACCESS_GROUP_IDENTIFIER)
|
|
|
|
|
2022-11-21 19:37:13 +03:00
|
|
|
settings:
|
|
|
|
base:
|
|
|
|
PRODUCT_NAME: NSE
|
2023-06-08 12:12:58 +03:00
|
|
|
PRODUCT_DISPLAY_NAME: $(APP_DISPLAY_NAME)
|
2022-11-21 19:37:13 +03:00
|
|
|
PRODUCT_BUNDLE_IDENTIFIER: ${BASE_BUNDLE_IDENTIFIER}.nse
|
|
|
|
MARKETING_VERSION: $(MARKETING_VERSION)
|
|
|
|
CURRENT_PROJECT_VERSION: $(CURRENT_PROJECT_VERSION)
|
|
|
|
DEVELOPMENT_TEAM: $(DEVELOPMENT_TEAM)
|
|
|
|
SWIFT_OBJC_INTERFACE_HEADER_NAME: GeneratedInterface-Swift.h
|
2023-11-09 19:12:11 +01:00
|
|
|
OTHER_SWIFT_FLAGS:
|
|
|
|
- "-DIS_NSE"
|
2022-11-21 19:37:13 +03:00
|
|
|
|
|
|
|
sources:
|
|
|
|
- path: ../Sources
|
|
|
|
- path: ../SupportingFiles
|
2024-08-15 18:20:19 +03:00
|
|
|
- path: ../../ElementX/Sources/AppHooks/AppHooks.swift
|
|
|
|
- path: ../../ElementX/Sources/AppHooks/Hooks/ClientBuilderHook.swift
|
|
|
|
- path: ../../ElementX/Sources/Application/AppSettings.swift
|
2024-09-09 15:07:41 +03:00
|
|
|
- path: ../../ElementX/Sources/Generated/Assets.swift
|
|
|
|
- path: ../../ElementX/Sources/Generated/Strings.swift
|
2024-11-13 14:02:47 +02:00
|
|
|
- path: ../../ElementX/Sources/Other/Avatars.swift
|
2024-08-15 18:20:19 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/CurrentValuePublisher.swift
|
2023-09-13 12:30:41 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/AttributedString.swift
|
2022-11-21 19:37:13 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/Bundle.swift
|
2024-06-24 15:05:00 +01:00
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/ClientBuilder.swift
|
2023-01-24 11:02:51 +00:00
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/Date.swift
|
2023-09-13 12:30:41 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/FileManager.swift
|
2022-11-21 19:37:13 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/ImageCache.swift
|
2023-09-13 12:30:41 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/LayoutDirection.swift
|
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/NSRegularExpresion.swift
|
2024-09-26 10:15:09 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/ProcessInfo.swift
|
2023-09-13 12:30:41 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/String.swift
|
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/Task.swift
|
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/UNNotificationContent.swift
|
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/URL.swift
|
2023-03-20 14:51:33 +00:00
|
|
|
- path: ../../ElementX/Sources/Other/Extensions/UTType.swift
|
2023-09-13 12:30:41 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/HTMLParsing
|
2022-11-21 19:37:13 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/InfoPlistReader.swift
|
2023-09-13 12:30:41 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/Logging
|
|
|
|
- path: ../../ElementX/Sources/Other/MatrixEntityRegex.swift
|
2024-08-15 18:20:19 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/NetworkMonitor
|
|
|
|
- path: ../../ElementX/Sources/Other/Pills/PillConstants.swift
|
|
|
|
- path: ../../ElementX/Sources/Other/Pills/PlainMentionBuilder.swift
|
2023-06-27 13:44:19 +02:00
|
|
|
- path: ../../ElementX/Sources/Other/SwiftUI/Views/PlaceholderAvatarImage.swift
|
2024-08-15 18:20:19 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/TestablePreview.swift
|
2023-08-17 15:11:34 +02:00
|
|
|
- path: ../../ElementX/Sources/Other/UserAgentBuilder.swift
|
2023-09-13 12:30:41 +03:00
|
|
|
- path: ../../ElementX/Sources/Other/UserPreference.swift
|
2024-08-15 18:20:19 +03:00
|
|
|
- path: ../../ElementX/Sources/Services/ElementCall/ElementCallServiceConstants.swift
|
2023-09-13 12:30:41 +03:00
|
|
|
- path: ../../ElementX/Sources/Services/Keychain/KeychainController.swift
|
|
|
|
- path: ../../ElementX/Sources/Services/Keychain/KeychainControllerProtocol.swift
|
|
|
|
- path: ../../ElementX/Sources/Services/Media/Provider
|
|
|
|
- path: ../../ElementX/Sources/Services/Notification/NotificationConstants.swift
|
|
|
|
- path: ../../ElementX/Sources/Services/Notification/Proxy
|
|
|
|
- path: ../../ElementX/Sources/Services/Room/RoomSummary/RoomMessageEventStringBuilder.swift
|
|
|
|
- path: ../../ElementX/Sources/Services/UserSession/RestorationToken.swift
|
2024-08-27 11:06:26 +01:00
|
|
|
- path: ../../ElementX/Sources/Services/UserSession/SessionDirectories.swift
|
2024-09-26 10:15:09 +03:00
|
|
|
- path: ../../ElementX/Sources/UITests/UITestsScreenIdentifier.swift
|