diff --git a/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme b/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme deleted file mode 100644 index 6ca885fee6..0000000000 --- a/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/App/App.xcworkspace/buck-project.meta.json b/App/App.xcworkspace/buck-project.meta.json deleted file mode 100644 index 6aa635f5f5..0000000000 --- a/App/App.xcworkspace/buck-project.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"required-targets":["//submodules/MtProtoKit:openssl_libs"],"xcconfig-paths":["buck-out/gen/App/App-Debug.xcconfig","buck-out/gen/App/App-Profile.xcconfig","buck-out/gen/App/App-Release.xcconfig","buck-out/gen/App/AppLibrary-Debug.xcconfig","buck-out/gen/App/AppLibrary-Profile.xcconfig","buck-out/gen/App/AppLibrary-Release.xcconfig","buck-out/gen/submodules/Crc32/Crc32-Debug.xcconfig","buck-out/gen/submodules/Crc32/Crc32-Profile.xcconfig","buck-out/gen/submodules/Crc32/Crc32-Release.xcconfig","buck-out/gen/submodules/MtProtoKit/MtProtoKit#shared-Debug.xcconfig","buck-out/gen/submodules/MtProtoKit/MtProtoKit#shared-Profile.xcconfig","buck-out/gen/submodules/MtProtoKit/MtProtoKit#shared-Release.xcconfig","buck-out/gen/submodules/MtProtoKit/openssl-Debug.xcconfig","buck-out/gen/submodules/MtProtoKit/openssl-Profile.xcconfig","buck-out/gen/submodules/MtProtoKit/openssl-Release.xcconfig","buck-out/gen/submodules/Postbox/Postbox#shared-Debug.xcconfig","buck-out/gen/submodules/Postbox/Postbox#shared-Profile.xcconfig","buck-out/gen/submodules/Postbox/Postbox#shared-Release.xcconfig","buck-out/gen/submodules/SSignalKit/SwiftSignalKit/SwiftSignalKit#shared-Debug.xcconfig","buck-out/gen/submodules/SSignalKit/SwiftSignalKit/SwiftSignalKit#shared-Profile.xcconfig","buck-out/gen/submodules/SSignalKit/SwiftSignalKit/SwiftSignalKit#shared-Release.xcconfig","buck-out/gen/submodules/sqlcipher/sqlcipher-Debug.xcconfig","buck-out/gen/submodules/sqlcipher/sqlcipher-Profile.xcconfig","buck-out/gen/submodules/sqlcipher/sqlcipher-Release.xcconfig"],"copy-in-xcode":[]} \ No newline at end of file diff --git a/App/App.xcworkspace/contents.xcworkspacedata b/App/App.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 6abdf7ffbb..0000000000 --- a/App/App.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d981003d..0000000000 --- a/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/App/App.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/App/App.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index 115f338bb5..0000000000 --- a/App/App.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded - - - \ No newline at end of file diff --git a/App/App.xcworkspace/xcshareddata/xcschemes/App.xcscheme b/App/App.xcworkspace/xcshareddata/xcschemes/App.xcscheme deleted file mode 100644 index 17a2e1a8d1..0000000000 --- a/App/App.xcworkspace/xcshareddata/xcschemes/App.xcscheme +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/App/BUCK b/App/BUCK index 32b2ec645d..70b10d176e 100644 --- a/App/BUCK +++ b/App/BUCK @@ -25,10 +25,10 @@ framework_dependencies = [ "//submodules/Postbox:Postbox", "//submodules/TelegramCore:TelegramCore", "//submodules/AsyncDisplayKit:AsyncDisplayKit", + "//submodules/Display:Display", + "//submodules/TelegramUI:TelegramUI", ] -# Build Phase scripts need to be added as dependencies. -# These only get executed when building with Xcode, not Buck. build_phase_scripts = [ ] @@ -41,8 +41,8 @@ apple_library( configs = library_configs(), swift_version = native.read_config("swift", "version"), srcs = [ - "Sources/TempMain.m", - "Sources/Temp.swift" + "Sources/main.m", + "Sources/Application.swift" ], deps = [ ] diff --git a/App/BUCK_old b/App/BUCK_old deleted file mode 100644 index e654b0b13c..0000000000 --- a/App/BUCK_old +++ /dev/null @@ -1,234 +0,0 @@ -load('//tools:targets.bzl', 'app_target') - -BUILD_NUMBER = '2000' -info_plist_substitutions = { - 'DEVELOPMENT_LANGUAGE': 'en-us', - 'APP_NAME': 'Telegram', - 'EXECUTABLE_NAME': 'Telegram', - 'PRODUCT_BUNDLE_IDENTIFIER': 'org.telegram.Telegram-iOS', - 'PRODUCT_NAME': 'Telegram', - 'APP_SPECIFIC_URL_SCHEME': 'tgapp', - 'VERSION': '5.11', - 'BUILD_NUMBER': BUILD_NUMBER, -} - -app_target( - name = 'App', - srcs = ['TempMain.m', 'Temp.swift'], - deps = [ - '//submodules/MtProtoKit:MtProtoKit', - #'//submodules/Emoji:Emoji', - #'//submodules/MtProtoKit:MtProtoKitFramework', - #'//submodules/Emoji:EmojiFramework', - ], -) - -apple_bundle( - name = 'AppBundle', - visibility = [ - 'PUBLIC', - ], - extension = 'app', - binary = ':AppBinary', - product_name = 'Telegram', - info_plist = 'Info.plist', - #info_plist_substitutions = info_plist_substitutions, - deps = [ - ] -) - -apple_package( - name = 'AppPackage', - bundle = ':AppBundle', -) - -xcode_workspace_config( - name = "workspace", - workspace_name = "App", - src_target = ":AppBundle", -) - -'''load('//tools:buck_utils.bzl', 'config_with_updated_linker_flags', 'configs_with_config', 'combined_config') -load('//tools:buck_defs.bzl', 'SHARED_CONFIGS') - -# Adding `-all_load` to our binaries works around https://bugs.swift.org/browse/SR-6004. See the -# longer comment in `ViewController.swift` for more details. -ALL_LOAD_LINKER_FLAG = '-all_load' - -BUILD_NUMBER = '2001' - -APP_CONFIGS = { - 'ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES': 'YES', - 'DEVELOPMENT_LANGUAGE': 'Swift', - 'PRODUCT_BUNDLE_IDENTIFIER': 'ph.telegra.Telegraph', - 'PROVISIONING_PROFILE_SPECIFIER': 'match Development ph.telegra.Telegraph', - 'TARGETED_DEVICE_FAMILY': '1,2', - 'APP_NAME': 'Telegram', - 'BUILD_NUMBER': BUILD_NUMBER, - 'CODE_SIGN_ENTITLEMENTS': 'Telegram-iOS/Telegram-iOS-AppStoreLLC.entitlements', -} -APP_CONFIGS.update(SHARED_CONFIGS) - -apple_resource( - name = 'LaunchScreenXib', - files = [ - 'Telegram-iOS/Base.lproj/LaunchScreen.xib', - ], -) - -apple_resource( - name = "StringResources", - files = [], - variants = glob([ - "Telegram-iOS/*.lproj/Localizable.strings", - ]), -) - -apple_resource( - name = "InfoPlistStringResources", - files = [], - variants = glob([ - "Telegram-iOS/*.lproj/InfoPlist.strings", - ]), -) - -apple_resource( - name = "AppIntentVocabularyStringResources", - files = [], - variants = glob([ - "Telegram-iOS/*.lproj/AppIntentVocabulary.plist", - ]), -) - -apple_asset_catalog( - name = 'Images', - dirs = [ - 'Telegram-iOS/Images.xcassets', - ], - app_icon = 'AppIconLLC', -) - -apple_library( - name = 'BuildConfig', - srcs = glob([ - 'Telegram-iOS/BuildConfig.m', - ]), - headers = [ - 'Telegram-iOS/BuildConfig.h', - ], - compiler_flags = [ - '-w', - '-DAPP_CONFIG_IS_INTERNAL_BUILD=false', - '-DAPP_CONFIG_IS_APPSTORE_BUILD=true', - '-DAPP_CONFIG_APPSTORE_ID=686449807', - '-DAPP_SPECIFIC_URL_SCHEME=\"tgapp\"', - '-DAPP_CONFIG_API_ID=8', - '-DAPP_CONFIG_API_HASH=\"7245de8e747a0d6fbe11f7cc14fcc0bb\"', - '-DAPP_CONFIG_HOCKEYAPP_ID=\"ad8831329ffc8f8aff9a2b0b86558b24\"', - ], - header_namespace = 'BuildConfig', - exported_headers = [ - 'Telegram-iOS/BuildConfig.h', - ], - modular = True, - visibility = ['PUBLIC'], - deps = [ - '//submodules/MtProtoKit:MtProtoKit', - ], -) - -apple_library( - name = 'AppBinaryPrivate', - srcs = glob([ - 'Telegram-iOS/TGBridgeServer.m', - 'Telegram-iOS/TGAutoDownloadPreferences.m', - 'Telegram-iOS/TGPresentationAutoNightPreferences.m', - 'Telegram-iOS/TGProxyItem.m', - 'Telegram-iOS/UIImage+ImageEffects.m', - ]), - headers = [ - ], - header_namespace = 'AppBinaryPrivate', - exported_headers = [ - 'Telegram-iOS/TGBridgeServer.h', - 'Telegram-iOS/TGAutoDownloadPreferences.h', - 'Telegram-iOS/TGPresentationAutoNightPreferences.h', - 'Telegram-iOS/TGProxyItem.h', - 'Telegram-iOS/UIImage+ImageEffects.h', - ], - modular = True, - visibility = ['PUBLIC'], - deps = [ - '//submodules/SSignalKit:SSignalKit', - '//Watch:WatchUtils', - '//submodules/LegacyComponents:LegacyComponents', - ], -) - -apple_binary( - name = 'AppBinary', - configs = configs_with_config(config_with_updated_linker_flags(APP_CONFIGS, ALL_LOAD_LINKER_FLAG)), - #srcs = glob([ - # 'Telegram-iOS/*.swift', - #]) + [ - # 'Telegram-iOS/main.m', - #], - srcs = ['Telegram-iOS/TempMain.m'], - entitlements_file = 'Telegram-iOS/Telegram-iOS-AppStoreLLC.entitlements', - deps = [ - ':LaunchScreenXib', - ':StringResources', - ':InfoPlistStringResources', - ':AppIntentVocabularyStringResources', - ':Images', - #'//submodules/AsyncDisplayKit:AsyncDisplayKit', - #'//submodules/MtProtoKit:MtProtoKit', - #'//submodules/SSignalKit:SwiftSignalKit', - #'//submodules/SSignalKit:SSignalKit', - #'//submodules/Display:Display', - #'//submodules/Postbox:Postbox', - #'//submodules/TelegramCore:TelegramCore', - #'//submodules/LegacyComponents:LegacyComponents', - #'//submodules/HockeySDK-iOS:HockeySDK', - #'//submodules/lottie-ios:Lottie', - '//submodules/libtgvoip:tgvoip', - #'//submodules/webp:WebPImage', - #'//submodules/ffmpeg:FFMpeg', - #'//submodules/TelegramUI:TelegramUI', - '//submodules/TelegramUI:TelegramUIFramework', - #'//Watch:WatchUtils', - ':BuildConfig', - ':AppBinaryPrivate', - ], -) - -xcode_workspace_config( - name = "workspace", - workspace_name = "Telegram", - src_target = ":AppBinary", -) - -apple_bundle( - name = 'AppBundle', - extension = 'app', - binary = ':AppBinary', - product_name = 'Telegram', - info_plist = 'Telegram-iOS/Info.plist', - info_plist_substitutions = { - 'DEVELOPMENT_LANGUAGE': 'en-us', - 'APP_NAME': 'Telegram', - 'EXECUTABLE_NAME': 'Telegram', - 'PRODUCT_BUNDLE_IDENTIFIER': 'ph.telegra.Telegraph', - 'PRODUCT_NAME': 'Telegram', - 'APP_SPECIFIC_URL_SCHEME': 'tgapp', - 'VERSION': '5.8', - 'BUILD_NUMBER': BUILD_NUMBER, - }, -) - -apple_package( - name = 'AppPackage', - bundle = ':AppBundle', -) -''' - diff --git a/App/Sources/Application.swift b/App/Sources/Application.swift new file mode 100644 index 0000000000..10c08975ea --- /dev/null +++ b/App/Sources/Application.swift @@ -0,0 +1,5 @@ +import UIKit + +@objc(Application) class Application: UIApplication { + +} diff --git a/App/Sources/Temp.swift b/App/Sources/Temp.swift deleted file mode 100644 index 439ac38375..0000000000 --- a/App/Sources/Temp.swift +++ /dev/null @@ -1,22 +0,0 @@ -import Foundation -import UIKit -//import Emoji - -@objc(AppDelegate1) -public final class AppDelegate: NSObject, UIApplicationDelegate { - public var window: UIWindow? - - override init() { - super.init() - - //print("OK6".isSingleEmoji) - } - - public func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool { - self.window = UIWindow(frame: UIScreen.main.bounds) - self.window?.rootViewController = UIViewController() - self.window?.rootViewController?.view.backgroundColor = .green - self.window?.makeKeyAndVisible() - return true - } -} diff --git a/App/Sources/TempMain.m b/App/Sources/TempMain.m deleted file mode 100644 index c20abfe6e7..0000000000 --- a/App/Sources/TempMain.m +++ /dev/null @@ -1,29 +0,0 @@ -#import -#import -//#import - -@interface AppDelegate : NSObject - -@property (nonatomic, strong) UIWindow *window; - -@end - -@implementation AppDelegate - -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { - _window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]]; - _window.rootViewController = [[UIViewController alloc] init]; - _window.rootViewController.view.backgroundColor = [UIColor blueColor]; - [_window makeKeyAndVisible]; - return true; -} - -@end - -int main(int argc, const char **argv) { - //MTProto *mtProto = [[MTProto alloc] init]; - @autoreleasepool { - return UIApplicationMain(argc, argv, nil, @"AppDelegate1"); - } -} - diff --git a/App/Sources/main.m b/App/Sources/main.m new file mode 100644 index 0000000000..6e4c714868 --- /dev/null +++ b/App/Sources/main.m @@ -0,0 +1,16 @@ +#import +#import + +int main(int argc, char *argv[]) { + /*NSString *basePath = [[NSString stringWithUTF8String:argv[0]] stringByDeletingLastPathComponent]; + void *Share = dlopen([[basePath stringByAppendingPathComponent:@"PlugIns/Share.appex/Share"] UTF8String], RTLD_LAZY); + void *NotificationContent = dlopen([[basePath stringByAppendingPathComponent:@"PlugIns/NotificationContent.appex/NotificationContent"] UTF8String], RTLD_LAZY); + sleep(1000); + void *NotificationService = dlopen([[basePath stringByAppendingPathComponent:@"PlugIns/NotificationService.appex/NotificationService"] UTF8String], RTLD_LAZY); + void *SiriIntents = dlopen([[basePath stringByAppendingPathComponent:@"PlugIns/SiriIntents.appex/SiriIntents"] UTF8String], RTLD_LAZY); + void *Widget = dlopen([[basePath stringByAppendingPathComponent:@"PlugIns/Widget.appex/Widget"] UTF8String], RTLD_LAZY);*/ + + @autoreleasepool { + return UIApplicationMain(argc, argv, @"Application", @"AppDelegate"); + } +} diff --git a/Config/buck_rule_macros.bzl b/Config/buck_rule_macros.bzl index a297213f88..08ff783602 100644 --- a/Config/buck_rule_macros.bzl +++ b/Config/buck_rule_macros.bzl @@ -1,12 +1,5 @@ load("//Config:configs.bzl", "library_configs", "framework_library_configs", "info_plist_substitutions") -def apple_third_party_lib(**kwargs): - apple_lib( - warning_as_error = False, - suppress_warnings = True, - **kwargs - ) - def apple_lib( name, visibility = ["PUBLIC"], @@ -16,6 +9,7 @@ def apple_lib( extra_xcode_files = [], deps = [], exported_deps = [], + additional_linker_flags = None, frameworks = [], swift_version = None, modular = True, @@ -23,6 +17,7 @@ def apple_lib( swift_compiler_flags = None, warning_as_error = False, suppress_warnings = False, + has_cpp = False, framework = False): swift_version = swift_version or native.read_config('swift', 'version') compiler_flags = compiler_flags or [] @@ -39,6 +34,16 @@ def apple_lib( swift_compiler_flags.append("-suppress-warnings") if framework: + additional_linker_flags = additional_linker_flags or [] + if has_cpp: + linker_flags = [ + "-lc++", + "-lz" + ] + else: + linker_flags = [] + + resolved_linker_flags = linker_flags + additional_linker_flags + ["-Wl,-install_name,@rpath/lib%s.dylib" % (name)] if native.read_config("custom", "mode") == "project": native.apple_library( name = name + "", @@ -59,7 +64,7 @@ def apple_lib( swift_compiler_flags = swift_compiler_flags, preferred_linkage = "shared", link_style = "static", - linker_flags = ["-Wl,-install_name,@rpath/lib%s.dylib" % (name)], + linker_flags = resolved_linker_flags, ) else: native.apple_library( @@ -82,10 +87,20 @@ def apple_lib( swift_compiler_flags = swift_compiler_flags, preferred_linkage = "shared", link_style = "static", - linker_flags = ["-Wl,-install_name,@rpath/lib%s.dylib" % (name)], + linker_flags = resolved_linker_flags, ) else: + additional_linker_flags = additional_linker_flags or [] + if has_cpp: + linker_flags = [ + "-lc++", + "-lz" + ] + else: + linker_flags = [] + + resolved_exported_linker_flags = linker_flags + additional_linker_flags native.apple_library( name = name, srcs = srcs, @@ -93,6 +108,7 @@ def apple_lib( exported_headers = exported_headers, deps = deps, exported_deps = exported_deps, + exported_linker_flags = resolved_exported_linker_flags, extra_xcode_files = extra_xcode_files, frameworks = frameworks, visibility = visibility, @@ -112,6 +128,7 @@ def static_library( exported_headers = [], extra_xcode_files = [], deps = [], + additional_linker_flags = None, frameworks = [], info_plist = None, info_plist_substitutions = {}, @@ -120,10 +137,10 @@ def static_library( swift_compiler_flags = None, warning_as_error = False, suppress_warnings = True): - lib = apple_cxx_lib if has_cpp else apple_lib - lib( + apple_lib( name = name, srcs = srcs, + has_cpp = has_cpp, exported_headers = exported_headers, headers = headers, modular = modular, @@ -131,6 +148,7 @@ def static_library( swift_compiler_flags = swift_compiler_flags, extra_xcode_files = extra_xcode_files, deps = deps, + additional_linker_flags = additional_linker_flags, frameworks = frameworks, warning_as_error = warning_as_error, suppress_warnings = suppress_warnings @@ -146,6 +164,7 @@ def framework( extra_xcode_files = [], deps = [], exported_deps = [], + additional_linker_flags = None, frameworks = [], info_plist = None, info_plist_substitutions = {}, @@ -154,10 +173,10 @@ def framework( swift_compiler_flags = None, warning_as_error = False, suppress_warnings = True): - lib = apple_cxx_lib if has_cpp else apple_lib - lib( + apple_lib( name = name, srcs = srcs, + has_cpp = has_cpp, exported_headers = exported_headers, headers = headers, modular = modular, @@ -166,6 +185,7 @@ def framework( extra_xcode_files = extra_xcode_files, deps = deps, exported_deps = exported_deps, + additional_linker_flags = additional_linker_flags, frameworks = frameworks, warning_as_error = warning_as_error, suppress_warnings = suppress_warnings, @@ -230,3 +250,39 @@ def gen_header_targets(header_paths, prefix, flavor, source_rule, source_path): ) result[header_path] = ':' + name + flavor return result + +def merge_maps(dicts): + result = dict() + for d in dicts: + for key in d: + if key in result and result[key] != d[key]: + fail( + "Conflicting files in file search paths. " + + "\"%s\" maps to both \"%s\" and \"%s\"." % + (key, result[key], d[key]), + ) + result.update(d) + return result + +def basename(p): + return p.rpartition("/")[-1] + +def glob_map(glob_results): + result = dict() + for path in glob_results: + file_name = basename(path) + if file_name in result: + fail('\"%s\" maps to both \"%s\" and \"%s\"' % (file_name, result[file_name], path)) + result[file_name] = path + return result + +def glob_sub_map(prefix, glob_specs): + result = dict() + for path in native.glob(glob_specs): + if not path.startswith(prefix): + fail('\"%s\" does not start with \"%s\"' % (path, prefix)) + file_key = path[len(prefix):] + if file_key in result: + fail('\"%s\" maps to both \"%s\" and \"%s\"' % (file_key, result[file_key], path)) + result[file_key] = path + return result diff --git a/Config/configs.bzl b/Config/configs.bzl index c593b027dd..e4afe7e33c 100644 --- a/Config/configs.bzl +++ b/Config/configs.bzl @@ -31,6 +31,7 @@ SHARED_CONFIGS = { "SWIFT_WHOLE_MODULE_OPTIMIZATION": "NO", "ONLY_ACTIVE_ARCH": "YES", "LD_RUNPATH_SEARCH_PATHS": "@executable_path/Frameworks", + "ENABLE_BITCODE": "NO", } def optimization_config(): @@ -57,7 +58,7 @@ def library_configs(): configs = { "Debug": library_config, "Profile": library_config, - "Release": lib_specific_config, + "Release": library_config, } return configs @@ -76,10 +77,11 @@ def framework_library_configs(name): library_config = merge_dict(SHARED_CONFIGS, lib_specific_config) library_config = merge_dict(library_config, optimization_config()) + library_config = config_with_updated_linker_flags(library_config, ALL_LOAD_LINKER_FLAG) configs = { "Debug": library_config, "Profile": library_config, - "Release": lib_specific_config, + "Release": library_config, } return configs diff --git a/Makefile b/Makefile index d8c4249734..c258fb8169 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ kill_xcode: clean: kill_xcode sh clean.sh -project: clean +project: kill_xcode $(BUCK) project //App:workspace --config custom.mode=project open App/App.xcworkspace diff --git a/package_app.sh b/package_app.sh index 93e9920b42..3216cdfa07 100644 --- a/package_app.sh +++ b/package_app.sh @@ -24,7 +24,13 @@ rm -f "$DSYMS_ZIP" rm -rf "$DSYMS_DIR" mkdir -p "$DSYMS_DIR" -cp "buck-out/gen/App/AppPackage#$PLATFORM_FLAVORS.ipa" "$IPA_PATH" +cp "buck-out/gen/App/AppPackage#$PLATFORM_FLAVORS.ipa" "$IPA_PATH.original" +rm -rf "$IPA_PATH.original.unpacked" +mkdir -p "$IPA_PATH.original.unpacked" +unzip "$IPA_PATH.original" -d "$IPA_PATH.original.unpacked/" + +rm -rf "$IPA_PATH.original.unpacked/SwiftSupport/iphoneos/"* +rm -rf "$IPA_PATH.original.unpacked/Payload/App.app/Frameworks/"* for DEPENDENCY in $($BUCK query "kind('apple_library|apple_binary', deps('//App:App#$PLATFORM_FLAVORS', 1))"); do case "$DEPENDENCY" in @@ -34,10 +40,30 @@ for DEPENDENCY in $($BUCK query "kind('apple_library|apple_binary', deps('//App: DEPENDENCY="$DEPENDENCY#$PLATFORM_FLAVORS" ;; esac + DEPENDENCY_PATH=$(echo "$DEPENDENCY" | sed -e "s#^//##" | sed -e "s#:#/#") + DEPENDENCY_NAME=$(echo "$DEPENDENCY" | sed -e "s/#.*//" | sed -e "s/^.*\://") + DYLIB_PATH="buck-out/gen/$DEPENDENCY_PATH/lib$DEPENDENCY_NAME.dylib" + TARGET_DYLIB_PATH="$IPA_PATH.original.unpacked/Payload/App.app/Frameworks/lib$DEPENDENCY_NAME.dylib" + cp "$DYLIB_PATH" "$TARGET_DYLIB_PATH" DSYM_PATH="buck-out/gen/$(echo "$DEPENDENCY" | sed -e "s/#/#apple-dsym,/" | sed -e "s#^//##" | sed -e "s#:#/#").dSYM" cp -f -r "$DSYM_PATH" "$DSYMS_DIR/" done +for LIB in $(ls "$IPA_PATH.original.unpacked/Payload/App.app/Frameworks/"*.dylib); do + strip -S -T "$LIB" +done + +xcrun swift-stdlib-tool --scan-folder "$IPA_PATH.original.unpacked/Payload/App.app" --scan-folder "$IPA_PATH.original.unpacked/Payload/App.app/Frameworks" --strip-bitcode --platform iphoneos --copy --destination "$IPA_PATH.original.unpacked/SwiftSupport/iphoneos" + +for LIB in $(ls "$IPA_PATH.original.unpacked/SwiftSupport/iphoneos/"*.dylib); do + codesign --remove-signature "$LIB" + lipo -remove armv7s -remove arm64 "$LIB" -o "$LIB" + bitcode_strip -r "$LIB" -o "$LIB" + strip -S -T "$LIB" +done + +cp "$IPA_PATH.original.unpacked/SwiftSupport/iphoneos/"*.dylib "$IPA_PATH.original.unpacked/Payload/App.app/Frameworks/" + DIR=$(pwd) cd "$BUILD_PATH" zip -r "$DSYMS_FOLDER_NAME.zip" "$DSYMS_FOLDER_NAME" diff --git a/submodules/AccountContext/AccountContext.xcodeproj/project.pbxproj b/submodules/AccountContext/AccountContext.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..77c200f9b1 --- /dev/null +++ b/submodules/AccountContext/AccountContext.xcodeproj/project.pbxproj @@ -0,0 +1,1207 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E294F46AC0700000000 + + isa + PBXFileReference + name + AccountContext.swift + path + Sources/AccountContext.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CC55C4D900000000 + + isa + PBXFileReference + name + ChatController.swift + path + Sources/ChatController.swift + sourceTree + SOURCE_ROOT + + 1DD70E296AFBAFB600000000 + + isa + PBXFileReference + name + ChatHistoryLocation.swift + path + Sources/ChatHistoryLocation.swift + sourceTree + SOURCE_ROOT + + 1DD70E29577C319700000000 + + isa + PBXFileReference + name + ChatListController.swift + path + Sources/ChatListController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29845F1BF400000000 + + isa + PBXFileReference + name + ContactMultiselectionController.swift + path + Sources/ContactMultiselectionController.swift + sourceTree + SOURCE_ROOT + + 1DD70E294B11AACD00000000 + + isa + PBXFileReference + name + ContactSelectionController.swift + path + Sources/ContactSelectionController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E2783B3900000000 + + isa + PBXFileReference + name + DeviceContactData.swift + path + Sources/DeviceContactData.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C7B1155E00000000 + + isa + PBXFileReference + name + DeviceContactDataManager.swift + path + Sources/DeviceContactDataManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E298B16D4EE00000000 + + isa + PBXFileReference + name + DownloadedMediaStoreManager.swift + path + Sources/DownloadedMediaStoreManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E2903B7281800000000 + + isa + PBXFileReference + name + FetchManager.swift + path + Sources/FetchManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F12D3ACC00000000 + + isa + PBXFileReference + name + FetchMediaUtils.swift + path + Sources/FetchMediaUtils.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FA38189300000000 + + isa + PBXFileReference + name + GalleryController.swift + path + Sources/GalleryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E297A9608D900000000 + + isa + PBXFileReference + name + IsMediaStreamable.swift + path + Sources/IsMediaStreamable.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DF578D3100000000 + + isa + PBXFileReference + name + LiveLocationManager.swift + path + Sources/LiveLocationManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E2938AA732E00000000 + + isa + PBXFileReference + name + MediaManager.swift + path + Sources/MediaManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E298CE41BAA00000000 + + isa + PBXFileReference + name + OpenChatMessage.swift + path + Sources/OpenChatMessage.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A1A9776800000000 + + isa + PBXFileReference + name + OverlayAudioPlayerController.swift + path + Sources/OverlayAudioPlayerController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DFFBE54E00000000 + + isa + PBXFileReference + name + OverlayMediaItemNode.swift + path + Sources/OverlayMediaItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A3CAA35E00000000 + + isa + PBXFileReference + name + OverlayMediaManager.swift + path + Sources/OverlayMediaManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E29AE47D78B00000000 + + isa + PBXFileReference + name + PeerSelectionController.swift + path + Sources/PeerSelectionController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2978658ABA00000000 + + isa + PBXFileReference + name + PresentationCallManager.swift + path + Sources/PresentationCallManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BEA4BC8700000000 + + isa + PBXFileReference + name + PresentationSurfaceLevels.swift + path + Sources/PresentationSurfaceLevels.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A82E88C500000000 + + isa + PBXFileReference + name + SharedMediaPlayer.swift + path + Sources/SharedMediaPlayer.swift + sourceTree + SOURCE_ROOT + + 1DD70E290F2FA2FD00000000 + + isa + PBXFileReference + name + StoredMessageFromSearchPeer.swift + path + Sources/StoredMessageFromSearchPeer.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A055C05700000000 + + isa + PBXFileReference + name + UniversalVideoNode.swift + path + Sources/UniversalVideoNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29900C6ACF00000000 + + isa + PBXFileReference + name + WallpaperUploadManager.swift + path + Sources/WallpaperUploadManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CEBFB42300000000 + + isa + PBXFileReference + name + WatchManager.swift + path + Sources/WatchManager.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E294F46AC0700000000 + 1DD70E29CC55C4D900000000 + 1DD70E296AFBAFB600000000 + 1DD70E29577C319700000000 + 1DD70E29845F1BF400000000 + 1DD70E294B11AACD00000000 + 1DD70E29E2783B3900000000 + 1DD70E29C7B1155E00000000 + 1DD70E298B16D4EE00000000 + 1DD70E2903B7281800000000 + 1DD70E29F12D3ACC00000000 + 1DD70E29FA38189300000000 + 1DD70E297A9608D900000000 + 1DD70E29DF578D3100000000 + 1DD70E2938AA732E00000000 + 1DD70E298CE41BAA00000000 + 1DD70E29A1A9776800000000 + 1DD70E29DFFBE54E00000000 + 1DD70E29A3CAA35E00000000 + 1DD70E29AE47D78B00000000 + 1DD70E2978658ABA00000000 + 1DD70E29BEA4BC8700000000 + 1DD70E29A82E88C500000000 + 1DD70E290F2FA2FD00000000 + 1DD70E29A055C05700000000 + 1DD70E29900C6ACF00000000 + 1DD70E29CEBFB42300000000 + + + B401C97927C8B2E200000000 + + isa + PBXGroup + name + AccountContext + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2984A4A59300000000 + + isa + PBXFileReference + name + AccountContext-Debug.xcconfig + path + ../../buck-out/gen/submodules/AccountContext/AccountContext-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D334243D00000000 + + isa + PBXFileReference + name + AccountContext-Profile.xcconfig + path + ../../buck-out/gen/submodules/AccountContext/AccountContext-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2946CACF9F00000000 + + isa + PBXFileReference + name + AccountContext-Release.xcconfig + path + ../../buck-out/gen/submodules/AccountContext/AccountContext-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2984A4A59300000000 + 1DD70E29D334243D00000000 + 1DD70E2946CACF9F00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C97927C8B2E200000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F044F46AC0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E294F46AC0700000000 + + E7A30F04CC55C4D900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CC55C4D900000000 + + E7A30F046AFBAFB600000000 + + isa + PBXBuildFile + fileRef + 1DD70E296AFBAFB600000000 + + E7A30F04577C319700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29577C319700000000 + + E7A30F04845F1BF400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29845F1BF400000000 + + E7A30F044B11AACD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E294B11AACD00000000 + + E7A30F04E2783B3900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E2783B3900000000 + + E7A30F04C7B1155E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7B1155E00000000 + + E7A30F048B16D4EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E298B16D4EE00000000 + + E7A30F0403B7281800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2903B7281800000000 + + E7A30F04F12D3ACC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F12D3ACC00000000 + + E7A30F04FA38189300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FA38189300000000 + + E7A30F047A9608D900000000 + + isa + PBXBuildFile + fileRef + 1DD70E297A9608D900000000 + + E7A30F04DF578D3100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF578D3100000000 + + E7A30F0438AA732E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2938AA732E00000000 + + E7A30F048CE41BAA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E298CE41BAA00000000 + + E7A30F04A1A9776800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A1A9776800000000 + + E7A30F04DFFBE54E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DFFBE54E00000000 + + E7A30F04A3CAA35E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A3CAA35E00000000 + + E7A30F04AE47D78B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AE47D78B00000000 + + E7A30F0478658ABA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2978658ABA00000000 + + E7A30F04BEA4BC8700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BEA4BC8700000000 + + E7A30F04A82E88C500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A82E88C500000000 + + E7A30F040F2FA2FD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F2FA2FD00000000 + + E7A30F04A055C05700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A055C05700000000 + + E7A30F04900C6ACF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29900C6ACF00000000 + + E7A30F04CEBFB42300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CEBFB42300000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F044F46AC0700000000 + E7A30F04CC55C4D900000000 + E7A30F046AFBAFB600000000 + E7A30F04577C319700000000 + E7A30F04845F1BF400000000 + E7A30F044B11AACD00000000 + E7A30F04E2783B3900000000 + E7A30F04C7B1155E00000000 + E7A30F048B16D4EE00000000 + E7A30F0403B7281800000000 + E7A30F04F12D3ACC00000000 + E7A30F04FA38189300000000 + E7A30F047A9608D900000000 + E7A30F04DF578D3100000000 + E7A30F0438AA732E00000000 + E7A30F048CE41BAA00000000 + E7A30F04A1A9776800000000 + E7A30F04DFFBE54E00000000 + E7A30F04A3CAA35E00000000 + E7A30F04AE47D78B00000000 + E7A30F0478658ABA00000000 + E7A30F04BEA4BC8700000000 + E7A30F04A82E88C500000000 + E7A30F040F2FA2FD00000000 + E7A30F04A055C05700000000 + E7A30F04900C6ACF00000000 + E7A30F04CEBFB42300000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2984A4A59300000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29D334243D00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2946CACF9F00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E27C8B2E200000000 + + isa + PBXNativeTarget + name + AccountContext + productName + AccountContext + productReference + 1DD70E299D2580DA00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479327C8B2E200000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E27C8B2E200000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479327C8B2E200000000 + + \ No newline at end of file diff --git a/submodules/AccountContext/AccountContext.xcodeproj/xcshareddata/xcschemes/AccountContext.xcscheme b/submodules/AccountContext/AccountContext.xcodeproj/xcshareddata/xcschemes/AccountContext.xcscheme new file mode 100644 index 0000000000..bb167a1ddf --- /dev/null +++ b/submodules/AccountContext/AccountContext.xcodeproj/xcshareddata/xcschemes/AccountContext.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ActionSheetPeerItem/ActionSheetPeerItem.xcodeproj/project.pbxproj b/submodules/ActionSheetPeerItem/ActionSheetPeerItem.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..092964ce78 --- /dev/null +++ b/submodules/ActionSheetPeerItem/ActionSheetPeerItem.xcodeproj/project.pbxproj @@ -0,0 +1,621 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2995573F8300000000 + + isa + PBXFileReference + name + ActionSheetPeerItem.swift + path + Sources/ActionSheetPeerItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2995573F8300000000 + + + B401C9791CBC935E00000000 + + isa + PBXGroup + name + ActionSheetPeerItem + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29901C3D9700000000 + + isa + PBXFileReference + name + ActionSheetPeerItem-Debug.xcconfig + path + ../../buck-out/gen/submodules/ActionSheetPeerItem/ActionSheetPeerItem-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29DF25CB4100000000 + + isa + PBXFileReference + name + ActionSheetPeerItem-Profile.xcconfig + path + ../../buck-out/gen/submodules/ActionSheetPeerItem/ActionSheetPeerItem-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2952BC76A300000000 + + isa + PBXFileReference + name + ActionSheetPeerItem-Release.xcconfig + path + ../../buck-out/gen/submodules/ActionSheetPeerItem/ActionSheetPeerItem-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29901C3D9700000000 + 1DD70E29DF25CB4100000000 + 1DD70E2952BC76A300000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + 1DD70E29CD296A8300000000 + + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E291E16CC6C00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C9791CBC935E00000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F0495573F8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2995573F8300000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0495573F8300000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F04D6F14E1000000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0484A59C1D00000000 + E7A30F04A54A195300000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29901C3D9700000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29DF25CB4100000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2952BC76A300000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E1CBC935E00000000 + + isa + PBXNativeTarget + name + ActionSheetPeerItem + productName + ActionSheetPeerItem + productReference + 1DD70E291E16CC6C00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847931CBC935E00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E1CBC935E00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847931CBC935E00000000 + + \ No newline at end of file diff --git a/submodules/ActionSheetPeerItem/ActionSheetPeerItem.xcodeproj/xcshareddata/xcschemes/ActionSheetPeerItem.xcscheme b/submodules/ActionSheetPeerItem/ActionSheetPeerItem.xcodeproj/xcshareddata/xcschemes/ActionSheetPeerItem.xcscheme new file mode 100644 index 0000000000..ec85eafce0 --- /dev/null +++ b/submodules/ActionSheetPeerItem/ActionSheetPeerItem.xcodeproj/xcshareddata/xcschemes/ActionSheetPeerItem.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ActionSheetPeerItem/BUCK b/submodules/ActionSheetPeerItem/BUCK index c3def05de4..1f87075baa 100644 --- a/submodules/ActionSheetPeerItem/BUCK +++ b/submodules/ActionSheetPeerItem/BUCK @@ -6,12 +6,12 @@ static_library( "Sources/**/*.swift", ]), deps = [ - "//submodules/AvatarNode", - "//submodules/TelegramPresentationData", - "//submodules/Postbox", - "//submodules/TelegramCore", - "//submodules/Display", - "//submodules/AsyncDisplayKit", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/AvatarNode:AvatarNode", + "//submodules/TelegramPresentationData:TelegramPresentationData", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/ActivityIndicator/ActivityIndicator.xcodeproj/project.pbxproj b/submodules/ActivityIndicator/ActivityIndicator.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..73dc7b2d6b --- /dev/null +++ b/submodules/ActivityIndicator/ActivityIndicator.xcodeproj/project.pbxproj @@ -0,0 +1,511 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E296BAD1E4500000000 + + isa + PBXFileReference + name + ActivityIndicator.swift + path + Sources/ActivityIndicator.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E296BAD1E4500000000 + + + B401C97965892BA000000000 + + isa + PBXGroup + name + ActivityIndicator + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29D927D91500000000 + + isa + PBXFileReference + name + ActivityIndicator-Debug.xcconfig + path + ../../buck-out/gen/submodules/ActivityIndicator/ActivityIndicator-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2913B87F3F00000000 + + isa + PBXFileReference + name + ActivityIndicator-Profile.xcconfig + path + ../../buck-out/gen/submodules/ActivityIndicator/ActivityIndicator-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29874F2AA100000000 + + isa + PBXFileReference + name + ActivityIndicator-Release.xcconfig + path + ../../buck-out/gen/submodules/ActivityIndicator/ActivityIndicator-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29D927D91500000000 + 1DD70E2913B87F3F00000000 + 1DD70E29874F2AA100000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29BF0846EE00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C97965892BA000000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F046BAD1E4500000000 + + isa + PBXBuildFile + fileRef + 1DD70E296BAD1E4500000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F046BAD1E4500000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29D927D91500000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2913B87F3F00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29874F2AA100000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E65892BA000000000 + + isa + PBXNativeTarget + name + ActivityIndicator + productName + ActivityIndicator + productReference + 1DD70E29BF0846EE00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479365892BA000000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E65892BA000000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479365892BA000000000 + + \ No newline at end of file diff --git a/submodules/ActivityIndicator/ActivityIndicator.xcodeproj/xcshareddata/xcschemes/ActivityIndicator.xcscheme b/submodules/ActivityIndicator/ActivityIndicator.xcodeproj/xcshareddata/xcschemes/ActivityIndicator.xcscheme new file mode 100644 index 0000000000..c56b429258 --- /dev/null +++ b/submodules/ActivityIndicator/ActivityIndicator.xcodeproj/xcshareddata/xcschemes/ActivityIndicator.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ActivityIndicator/BUCK b/submodules/ActivityIndicator/BUCK index 8dfa305875..aa2ce7825c 100644 --- a/submodules/ActivityIndicator/BUCK +++ b/submodules/ActivityIndicator/BUCK @@ -6,8 +6,8 @@ static_library( "Sources/**/*.swift", ]), deps = [ - "//submodules/TelegramPresentationData", - "//submodules/AsyncDisplayKit", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/AlertUI/AlertUI.xcodeproj/project.pbxproj b/submodules/AlertUI/AlertUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..de396fa5d7 --- /dev/null +++ b/submodules/AlertUI/AlertUI.xcodeproj/project.pbxproj @@ -0,0 +1,709 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29930423F500000000 + + isa + PBXFileReference + name + ThemedTextAlertController.swift + path + Sources/ThemedTextAlertController.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29930423F500000000 + + + B401C9792C8544D000000000 + + isa + PBXGroup + name + AlertUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2944B039E500000000 + + isa + PBXFileReference + name + AlertUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/AlertUI/AlertUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29BEABEC0F00000000 + + isa + PBXFileReference + name + AlertUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/AlertUI/AlertUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E293242977100000000 + + isa + PBXFileReference + name + AlertUI-Release.xcconfig + path + ../../buck-out/gen/submodules/AlertUI/AlertUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2944B039E500000000 + 1DD70E29BEABEC0F00000000 + 1DD70E293242977100000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29F523B9DE00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C9792C8544D000000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04930423F500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29930423F500000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04930423F500000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2944B039E500000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29BEABEC0F00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E293242977100000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E2C8544D000000000 + + isa + PBXNativeTarget + name + AlertUI + productName + AlertUI + productReference + 1DD70E29F523B9DE00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847932C8544D000000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E2C8544D000000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847932C8544D000000000 + + \ No newline at end of file diff --git a/submodules/AlertUI/AlertUI.xcodeproj/xcshareddata/xcschemes/AlertUI.xcscheme b/submodules/AlertUI/AlertUI.xcodeproj/xcshareddata/xcschemes/AlertUI.xcscheme new file mode 100644 index 0000000000..27357f98f1 --- /dev/null +++ b/submodules/AlertUI/AlertUI.xcodeproj/xcshareddata/xcschemes/AlertUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/AlertUI/BUCK b/submodules/AlertUI/BUCK index bdbc5a1a6e..a362e196c3 100644 --- a/submodules/AlertUI/BUCK +++ b/submodules/AlertUI/BUCK @@ -6,7 +6,8 @@ static_library( "Sources/**/*.swift", ]), deps = [ - "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#dynamic", + "//submodules/Display:Display#shared", + "//submodules/AccountContext:AccountContext", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/AnimationUI/AnimationUI.xcodeproj/project.pbxproj b/submodules/AnimationUI/AnimationUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..3288ad7589 --- /dev/null +++ b/submodules/AnimationUI/AnimationUI.xcodeproj/project.pbxproj @@ -0,0 +1,655 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E294F399CC100000000 + + isa + PBXFileReference + name + AnimatedStickerNode.swift + path + Sources/AnimatedStickerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F846183C00000000 + + isa + PBXFileReference + name + AnimatedStickerUtils.swift + path + Sources/AnimatedStickerUtils.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D847F9AB00000000 + + isa + PBXFileReference + name + AnimationNode.swift + path + Sources/AnimationNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E291FD1D5AC00000000 + + isa + PBXFileReference + name + AnimationRenderer.swift + path + Sources/AnimationRenderer.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E2968DC800500000000 + + isa + PBXFileReference + name + SoftwareAnimationRenderer.swift + path + Sources/SoftwareAnimationRenderer.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E294F399CC100000000 + 1DD70E29F846183C00000000 + 1DD70E29D847F9AB00000000 + 1DD70E291FD1D5AC00000000 + 1DD70E291289FAA500000000 + 1DD70E2968DC800500000000 + + + B401C979A7BBFCF800000000 + + isa + PBXGroup + name + AnimationUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E294CFD2CBD00000000 + + isa + PBXFileReference + name + AnimationUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/AnimationUI/AnimationUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29E78788E700000000 + + isa + PBXFileReference + name + AnimationUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/AnimationUI/AnimationUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E295B1E344900000000 + + isa + PBXFileReference + name + AnimationUI-Release.xcconfig + path + ../../buck-out/gen/submodules/AnimationUI/AnimationUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E294CFD2CBD00000000 + 1DD70E29E78788E700000000 + 1DD70E295B1E344900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E292395015100000000 + 1DD70E29CD296A8300000000 + + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E292420028600000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979A7BBFCF800000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F044F399CC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E294F399CC100000000 + + E7A30F04F846183C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F846183C00000000 + + E7A30F04D847F9AB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D847F9AB00000000 + + E7A30F041FD1D5AC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291FD1D5AC00000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F0468DC800500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2968DC800500000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F044F399CC100000000 + E7A30F04F846183C00000000 + E7A30F04D847F9AB00000000 + E7A30F041FD1D5AC00000000 + E7A30F041289FAA500000000 + E7A30F0468DC800500000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F04D6F14E1000000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E294CFD2CBD00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29E78788E700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E295B1E344900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EA7BBFCF800000000 + + isa + PBXNativeTarget + name + AnimationUI + productName + AnimationUI + productReference + 1DD70E292420028600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793A7BBFCF800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EA7BBFCF800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793A7BBFCF800000000 + + \ No newline at end of file diff --git a/submodules/AnimationUI/AnimationUI.xcodeproj/xcshareddata/xcschemes/AnimationUI.xcscheme b/submodules/AnimationUI/AnimationUI.xcodeproj/xcshareddata/xcschemes/AnimationUI.xcscheme new file mode 100644 index 0000000000..b8a10e199f --- /dev/null +++ b/submodules/AnimationUI/AnimationUI.xcodeproj/xcshareddata/xcschemes/AnimationUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/AuthorizationUI/AuthorizationUI.xcodeproj/project.pbxproj b/submodules/AuthorizationUI/AuthorizationUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..4b513748b7 --- /dev/null +++ b/submodules/AuthorizationUI/AuthorizationUI.xcodeproj/project.pbxproj @@ -0,0 +1,553 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29EE8D454800000000 + + isa + PBXFileReference + name + AuthorizationLayout.swift + path + Sources/AuthorizationLayout.swift + sourceTree + SOURCE_ROOT + + 1DD70E296285B2E000000000 + + isa + PBXFileReference + name + AuthorizationOptionText.swift + path + Sources/AuthorizationOptionText.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29EE8D454800000000 + 1DD70E296285B2E000000000 + + + B401C979BF0668AD00000000 + + isa + PBXGroup + name + AuthorizationUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29EC51406800000000 + + isa + PBXFileReference + name + AuthorizationUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/AuthorizationUI/AuthorizationUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2902255DD200000000 + + isa + PBXFileReference + name + AuthorizationUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/AuthorizationUI/AuthorizationUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2975BC093400000000 + + isa + PBXFileReference + name + AuthorizationUI-Release.xcconfig + path + ../../buck-out/gen/submodules/AuthorizationUI/AuthorizationUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29EC51406800000000 + 1DD70E2902255DD200000000 + 1DD70E2975BC093400000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + 1DD70E29F0C15F9C00000000 + + + 1DD70E296A100F7B00000000 + + isa + PBXFileReference + name + libAuthorizationUI.a + path + libAuthorizationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E296A100F7B00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979BF0668AD00000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04EE8D454800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EE8D454800000000 + + E7A30F046285B2E000000000 + + isa + PBXBuildFile + fileRef + 1DD70E296285B2E000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04EE8D454800000000 + E7A30F046285B2E000000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04119CDA0700000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04F0C15F9C00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29EC51406800000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2902255DD200000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2975BC093400000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EBF0668AD00000000 + + isa + PBXNativeTarget + name + AuthorizationUI + productName + AuthorizationUI + productReference + 1DD70E296A100F7B00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793BF0668AD00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EBF0668AD00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793BF0668AD00000000 + + \ No newline at end of file diff --git a/submodules/AuthorizationUI/AuthorizationUI.xcodeproj/xcshareddata/xcschemes/AuthorizationUI.xcscheme b/submodules/AuthorizationUI/AuthorizationUI.xcodeproj/xcshareddata/xcschemes/AuthorizationUI.xcscheme new file mode 100644 index 0000000000..bca01654ae --- /dev/null +++ b/submodules/AuthorizationUI/AuthorizationUI.xcodeproj/xcshareddata/xcschemes/AuthorizationUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/AvatarNode/AvatarNode.xcodeproj/project.pbxproj b/submodules/AvatarNode/AvatarNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..8ee044ccec --- /dev/null +++ b/submodules/AvatarNode/AvatarNode.xcodeproj/project.pbxproj @@ -0,0 +1,639 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29119E958000000000 + + isa + PBXFileReference + name + AvatarNode.swift + path + Sources/AvatarNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D83ECBE000000000 + + isa + PBXFileReference + name + PeerAvatar.swift + path + Sources/PeerAvatar.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29119E958000000000 + 1DD70E291289FAA500000000 + 1DD70E29D83ECBE000000000 + + + B401C9795EC76B1B00000000 + + isa + PBXGroup + name + AvatarNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29C2D9543A00000000 + + isa + PBXFileReference + name + AvatarNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/AvatarNode/AvatarNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2956F7C52400000000 + + isa + PBXFileReference + name + AvatarNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/AvatarNode/AvatarNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29CA8E708600000000 + + isa + PBXFileReference + name + AvatarNode-Release.xcconfig + path + ../../buck-out/gen/submodules/AvatarNode/AvatarNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29C2D9543A00000000 + 1DD70E2956F7C52400000000 + 1DD70E29CA8E708600000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E292420028600000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + 1DD70E29CD296A8300000000 + + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29A54A195300000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C9795EC76B1B00000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04119E958000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119E958000000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04D83ECBE000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D83ECBE000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04119E958000000000 + E7A30F041289FAA500000000 + E7A30F04D83ECBE000000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F04D6F14E1000000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29C2D9543A00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2956F7C52400000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29CA8E708600000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E5EC76B1B00000000 + + isa + PBXNativeTarget + name + AvatarNode + productName + AvatarNode + productReference + 1DD70E29A54A195300000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847935EC76B1B00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E5EC76B1B00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847935EC76B1B00000000 + + \ No newline at end of file diff --git a/submodules/AvatarNode/AvatarNode.xcodeproj/xcshareddata/xcschemes/AvatarNode.xcscheme b/submodules/AvatarNode/AvatarNode.xcodeproj/xcshareddata/xcschemes/AvatarNode.xcscheme new file mode 100644 index 0000000000..baa717ace6 --- /dev/null +++ b/submodules/AvatarNode/AvatarNode.xcodeproj/xcshareddata/xcschemes/AvatarNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/BotPaymentsUI/BUCK b/submodules/BotPaymentsUI/BUCK index 59f1dcf093..69089759d8 100644 --- a/submodules/BotPaymentsUI/BUCK +++ b/submodules/BotPaymentsUI/BUCK @@ -6,6 +6,18 @@ static_library( "Sources/**/*.swift", ]), deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/LocalAuth:LocalAuth", + "//submodules/AccountContext:AccountContext", + "//submodules/ItemListUI:ItemListUI", + "//submodules/PasswordSetupUI:PasswordSetupUI", + "//submodules/PhotoResources:PhotoResources", + "//submodules/TelegramNotices:TelegramNotices", + "//submodules/Stripe:Stripe", + "//submodules/CountrySelectionUI:CountrySelectionUI", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/BotPaymentsUI/BotPaymentsUI.xcodeproj/project.pbxproj b/submodules/BotPaymentsUI/BotPaymentsUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..4c1ce1fa6b --- /dev/null +++ b/submodules/BotPaymentsUI/BotPaymentsUI.xcodeproj/project.pbxproj @@ -0,0 +1,1671 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29B025A89A00000000 + + isa + PBXFileReference + name + BotCheckoutActionButton.swift + path + Sources/BotCheckoutActionButton.swift + sourceTree + SOURCE_ROOT + + 1DD70E297D2A136E00000000 + + isa + PBXFileReference + name + BotCheckoutController.swift + path + Sources/BotCheckoutController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29395E079000000000 + + isa + PBXFileReference + name + BotCheckoutControllerNode.swift + path + Sources/BotCheckoutControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E299040281200000000 + + isa + PBXFileReference + name + BotCheckoutHeaderItem.swift + path + Sources/BotCheckoutHeaderItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E299061C1BC00000000 + + isa + PBXFileReference + name + BotCheckoutInfoController.swift + path + Sources/BotCheckoutInfoController.swift + sourceTree + SOURCE_ROOT + + 1DD70E297159DEDE00000000 + + isa + PBXFileReference + name + BotCheckoutInfoControllerNode.swift + path + Sources/BotCheckoutInfoControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E293B198E7F00000000 + + isa + PBXFileReference + name + BotCheckoutNativeCardEntryController.swift + path + Sources/BotCheckoutNativeCardEntryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E292E07922100000000 + + isa + PBXFileReference + name + BotCheckoutNativeCardEntryControllerNode.swift + path + Sources/BotCheckoutNativeCardEntryControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2937196CEB00000000 + + isa + PBXFileReference + name + BotCheckoutPasswordEntryController.swift + path + Sources/BotCheckoutPasswordEntryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C2B0BCEA00000000 + + isa + PBXFileReference + name + BotCheckoutPaymentMethodSheet.swift + path + Sources/BotCheckoutPaymentMethodSheet.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C83A70C400000000 + + isa + PBXFileReference + name + BotCheckoutPaymentShippingOptionSheetController.swift + path + Sources/BotCheckoutPaymentShippingOptionSheetController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C1FAEDD400000000 + + isa + PBXFileReference + name + BotCheckoutPriceItem.swift + path + Sources/BotCheckoutPriceItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E2BA96EC00000000 + + isa + PBXFileReference + name + BotCheckoutWebInteractionController.swift + path + Sources/BotCheckoutWebInteractionController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2993E49C0E00000000 + + isa + PBXFileReference + name + BotCheckoutWebInteractionControllerNode.swift + path + Sources/BotCheckoutWebInteractionControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B6A1976F00000000 + + isa + PBXFileReference + name + BotPaymentActionItemNode.swift + path + Sources/BotPaymentActionItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E2636A7500000000 + + isa + PBXFileReference + name + BotPaymentCardInputItemNode.swift + path + Sources/BotPaymentCardInputItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2976694AA700000000 + + isa + PBXFileReference + name + BotPaymentDateItemNode.swift + path + Sources/BotPaymentDateItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E293D909F6600000000 + + isa + PBXFileReference + name + BotPaymentDisclosureItemNode.swift + path + Sources/BotPaymentDisclosureItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E293680855500000000 + + isa + PBXFileReference + name + BotPaymentFieldItemNode.swift + path + Sources/BotPaymentFieldItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2914F9178600000000 + + isa + PBXFileReference + name + BotPaymentHeaderItemNode.swift + path + Sources/BotPaymentHeaderItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E299559CED900000000 + + isa + PBXFileReference + name + BotPaymentItemNode.swift + path + Sources/BotPaymentItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29685F3BED00000000 + + isa + PBXFileReference + name + BotPaymentSwitchItemNode.swift + path + Sources/BotPaymentSwitchItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CC5195E600000000 + + isa + PBXFileReference + name + BotPaymentTextItemNode.swift + path + Sources/BotPaymentTextItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29938515F200000000 + + isa + PBXFileReference + name + BotReceiptController.swift + path + Sources/BotReceiptController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CDAC281400000000 + + isa + PBXFileReference + name + BotReceiptControllerNode.swift + path + Sources/BotReceiptControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29B025A89A00000000 + 1DD70E297D2A136E00000000 + 1DD70E29395E079000000000 + 1DD70E299040281200000000 + 1DD70E299061C1BC00000000 + 1DD70E297159DEDE00000000 + 1DD70E293B198E7F00000000 + 1DD70E292E07922100000000 + 1DD70E2937196CEB00000000 + 1DD70E29C2B0BCEA00000000 + 1DD70E29C83A70C400000000 + 1DD70E29C1FAEDD400000000 + 1DD70E29E2BA96EC00000000 + 1DD70E2993E49C0E00000000 + 1DD70E29B6A1976F00000000 + 1DD70E29E2636A7500000000 + 1DD70E2976694AA700000000 + 1DD70E293D909F6600000000 + 1DD70E293680855500000000 + 1DD70E2914F9178600000000 + 1DD70E299559CED900000000 + 1DD70E29685F3BED00000000 + 1DD70E29CC5195E600000000 + 1DD70E29938515F200000000 + 1DD70E29CDAC281400000000 + 1DD70E291289FAA500000000 + + + B401C97922643F8800000000 + + isa + PBXGroup + name + BotPaymentsUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29AA95782D00000000 + + isa + PBXFileReference + name + BotPaymentsUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/BotPaymentsUI/BotPaymentsUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29403AB85700000000 + + isa + PBXFileReference + name + BotPaymentsUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/BotPaymentsUI/BotPaymentsUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B3D163B900000000 + + isa + PBXFileReference + name + BotPaymentsUI-Release.xcconfig + path + ../../buck-out/gen/submodules/BotPaymentsUI/BotPaymentsUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29AA95782D00000000 + 1DD70E29403AB85700000000 + 1DD70E29B3D163B900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29016F454200000000 + + isa + PBXFileReference + name + libCountrySelectionUI.a + path + libCountrySelectionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A889192100000000 + + isa + PBXFileReference + name + libLocalAuth.a + path + libLocalAuth.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299856EB2400000000 + + isa + PBXFileReference + name + libPasswordSetupUI.a + path + libPasswordSetupUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2988BAAFC800000000 + + isa + PBXFileReference + name + libTelegramNotices.a + path + libTelegramNotices.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E2997B4D6D800000000 + 1DD70E29016F454200000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E295A26607D00000000 + 1DD70E29A889192100000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E299856EB2400000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E29EA9CBB5B00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2988BAAFC800000000 + 1DD70E290DD17C7100000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E297760E65600000000 + + isa + PBXFileReference + name + libBotPaymentsUI.a + path + libBotPaymentsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E297760E65600000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C97922643F8800000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04B025A89A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B025A89A00000000 + + E7A30F047D2A136E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E297D2A136E00000000 + + E7A30F04395E079000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29395E079000000000 + + E7A30F049040281200000000 + + isa + PBXBuildFile + fileRef + 1DD70E299040281200000000 + + E7A30F049061C1BC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299061C1BC00000000 + + E7A30F047159DEDE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E297159DEDE00000000 + + E7A30F043B198E7F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293B198E7F00000000 + + E7A30F042E07922100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292E07922100000000 + + E7A30F0437196CEB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2937196CEB00000000 + + E7A30F04C2B0BCEA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C2B0BCEA00000000 + + E7A30F04C83A70C400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C83A70C400000000 + + E7A30F04C1FAEDD400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C1FAEDD400000000 + + E7A30F04E2BA96EC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E2BA96EC00000000 + + E7A30F0493E49C0E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2993E49C0E00000000 + + E7A30F04B6A1976F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B6A1976F00000000 + + E7A30F04E2636A7500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E2636A7500000000 + + E7A30F0476694AA700000000 + + isa + PBXBuildFile + fileRef + 1DD70E2976694AA700000000 + + E7A30F043D909F6600000000 + + isa + PBXBuildFile + fileRef + 1DD70E293D909F6600000000 + + E7A30F043680855500000000 + + isa + PBXBuildFile + fileRef + 1DD70E293680855500000000 + + E7A30F0414F9178600000000 + + isa + PBXBuildFile + fileRef + 1DD70E2914F9178600000000 + + E7A30F049559CED900000000 + + isa + PBXBuildFile + fileRef + 1DD70E299559CED900000000 + + E7A30F04685F3BED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29685F3BED00000000 + + E7A30F04CC5195E600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CC5195E600000000 + + E7A30F04938515F200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29938515F200000000 + + E7A30F04CDAC281400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CDAC281400000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04B025A89A00000000 + E7A30F047D2A136E00000000 + E7A30F04395E079000000000 + E7A30F049040281200000000 + E7A30F049061C1BC00000000 + E7A30F047159DEDE00000000 + E7A30F043B198E7F00000000 + E7A30F042E07922100000000 + E7A30F0437196CEB00000000 + E7A30F04C2B0BCEA00000000 + E7A30F04C83A70C400000000 + E7A30F04C1FAEDD400000000 + E7A30F04E2BA96EC00000000 + E7A30F0493E49C0E00000000 + E7A30F04B6A1976F00000000 + E7A30F04E2636A7500000000 + E7A30F0476694AA700000000 + E7A30F043D909F6600000000 + E7A30F043680855500000000 + E7A30F0414F9178600000000 + E7A30F049559CED900000000 + E7A30F04685F3BED00000000 + E7A30F04CC5195E600000000 + E7A30F04938515F200000000 + E7A30F04CDAC281400000000 + E7A30F041289FAA500000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04EA9CBB5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA9CBB5B00000000 + + E7A30F04016F454200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29016F454200000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F04A889192100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A889192100000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F049856EB2400000000 + + isa + PBXBuildFile + fileRef + 1DD70E299856EB2400000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + E7A30F0488BAAFC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2988BAAFC800000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04BF0846EE00000000 + E7A30F04EA9CBB5B00000000 + E7A30F04016F454200000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F04A889192100000000 + E7A30F04F523B9DE00000000 + E7A30F049856EB2400000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04490601EB00000000 + E7A30F042417E0B200000000 + E7A30F040DD17C7100000000 + E7A30F0488BAAFC800000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29AA95782D00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29403AB85700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29B3D163B900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E22643F8800000000 + + isa + PBXNativeTarget + name + BotPaymentsUI + productName + BotPaymentsUI + productReference + 1DD70E297760E65600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479322643F8800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E22643F8800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479322643F8800000000 + + \ No newline at end of file diff --git a/submodules/BotPaymentsUI/BotPaymentsUI.xcodeproj/xcshareddata/xcschemes/BotPaymentsUI.xcscheme b/submodules/BotPaymentsUI/BotPaymentsUI.xcodeproj/xcshareddata/xcschemes/BotPaymentsUI.xcscheme new file mode 100644 index 0000000000..68fa8ebd76 --- /dev/null +++ b/submodules/BotPaymentsUI/BotPaymentsUI.xcodeproj/xcshareddata/xcschemes/BotPaymentsUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/BuildConfig/BuildConfig.xcodeproj/project.pbxproj b/submodules/BuildConfig/BuildConfig.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..6e9ae6f067 --- /dev/null +++ b/submodules/BuildConfig/BuildConfig.xcodeproj/project.pbxproj @@ -0,0 +1,343 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29EEC2CD2A00000000 + + isa + PBXFileReference + name + BuildConfig.h + path + Sources/BuildConfig.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29EEC2CD2F00000000 + + isa + PBXFileReference + name + BuildConfig.m + path + Sources/BuildConfig.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29EEC2CD2A00000000 + 1DD70E29EEC2CD2F00000000 + + + B401C979CE2AD33000000000 + + isa + PBXGroup + name + BuildConfig + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2904301F8500000000 + + isa + PBXFileReference + name + BuildConfig-Debug.xcconfig + path + ../../buck-out/gen/submodules/BuildConfig/BuildConfig-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E299DC8E9AF00000000 + + isa + PBXFileReference + name + BuildConfig-Profile.xcconfig + path + ../../buck-out/gen/submodules/BuildConfig/BuildConfig-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29115F951100000000 + + isa + PBXFileReference + name + BuildConfig-Release.xcconfig + path + ../../buck-out/gen/submodules/BuildConfig/BuildConfig-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2904301F8500000000 + 1DD70E299DC8E9AF00000000 + 1DD70E29115F951100000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E296A322ABE00000000 + + isa + PBXFileReference + name + libBuildConfig.a + path + libBuildConfig.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E296A322ABE00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979CE2AD33000000000 + B401C979B781F65D00000000 + B401C979C806358400000000 + + + E7A30F04EEC2CD2F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EEC2CD2F00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04EEC2CD2F00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2904301F8500000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E299DC8E9AF00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29115F951100000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04ECE2AD33000000000 + + isa + PBXNativeTarget + name + BuildConfig + productName + BuildConfig + productReference + 1DD70E296A322ABE00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793CE2AD33000000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04ECE2AD33000000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793CE2AD33000000000 + + \ No newline at end of file diff --git a/submodules/BuildConfig/BuildConfig.xcodeproj/xcshareddata/xcschemes/BuildConfig.xcscheme b/submodules/BuildConfig/BuildConfig.xcodeproj/xcshareddata/xcschemes/BuildConfig.xcscheme new file mode 100644 index 0000000000..0db5742682 --- /dev/null +++ b/submodules/BuildConfig/BuildConfig.xcodeproj/xcshareddata/xcschemes/BuildConfig.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/CallListUI/BUCK b/submodules/CallListUI/BUCK index 2b1ad4d35a..d524cb8e2f 100644 --- a/submodules/CallListUI/BUCK +++ b/submodules/CallListUI/BUCK @@ -6,6 +6,20 @@ static_library( "Sources/**/*.swift", ]), deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/AccountContext:AccountContext", + "//submodules/ItemListUI:ItemListUI", + "//submodules/AvatarNode:AvatarNode", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/AlertUI:AlertUI", + "//submodules/TelegramNotices:TelegramNotices", + "//submodules/MergeLists:MergeLists", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/CallListUI/CallListUI.xcodeproj/project.pbxproj b/submodules/CallListUI/CallListUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..d8d2d640a6 --- /dev/null +++ b/submodules/CallListUI/CallListUI.xcodeproj/project.pbxproj @@ -0,0 +1,1179 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E292F059BD200000000 + + isa + PBXFileReference + name + CallListCallItem.swift + path + Sources/CallListCallItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B318599D00000000 + + isa + PBXFileReference + name + CallListController.swift + path + Sources/CallListController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A54F9E3F00000000 + + isa + PBXFileReference + name + CallListControllerNode.swift + path + Sources/CallListControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29914403B400000000 + + isa + PBXFileReference + name + CallListHoleItem.swift + path + Sources/CallListHoleItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29AB92F37700000000 + + isa + PBXFileReference + name + CallListNodeEntries.swift + path + Sources/CallListNodeEntries.swift + sourceTree + SOURCE_ROOT + + 1DD70E2970B6869800000000 + + isa + PBXFileReference + name + CallListNodeLocation.swift + path + Sources/CallListNodeLocation.swift + sourceTree + SOURCE_ROOT + + 1DD70E291FE77B5B00000000 + + isa + PBXFileReference + name + CallListViewTransition.swift + path + Sources/CallListViewTransition.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E292F059BD200000000 + 1DD70E29B318599D00000000 + 1DD70E29A54F9E3F00000000 + 1DD70E29914403B400000000 + 1DD70E29AB92F37700000000 + 1DD70E2970B6869800000000 + 1DD70E291FE77B5B00000000 + 1DD70E291289FAA500000000 + + + B401C979C8F48FD000000000 + + isa + PBXGroup + name + CallListUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2918618EE500000000 + + isa + PBXFileReference + name + CallListUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/CallListUI/CallListUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E296B5C010F00000000 + + isa + PBXFileReference + name + CallListUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/CallListUI/CallListUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29DEF2AC7100000000 + + isa + PBXFileReference + name + CallListUI-Release.xcconfig + path + ../../buck-out/gen/submodules/CallListUI/CallListUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2918618EE500000000 + 1DD70E296B5C010F00000000 + 1DD70E29DEF2AC7100000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2988BAAFC800000000 + + isa + PBXFileReference + name + libTelegramNotices.a + path + libTelegramNotices.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E2997B4D6D800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2988BAAFC800000000 + 1DD70E290DD17C7100000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E2938C0E4C800000000 + + isa + PBXFileReference + name + libCallListUI.a + path + libCallListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2938C0E4C800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979C8F48FD000000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F042F059BD200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292F059BD200000000 + + E7A30F04B318599D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B318599D00000000 + + E7A30F04A54F9E3F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54F9E3F00000000 + + E7A30F04914403B400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29914403B400000000 + + E7A30F04AB92F37700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AB92F37700000000 + + E7A30F0470B6869800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2970B6869800000000 + + E7A30F041FE77B5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291FE77B5B00000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F042F059BD200000000 + E7A30F04B318599D00000000 + E7A30F04A54F9E3F00000000 + E7A30F04914403B400000000 + E7A30F04AB92F37700000000 + E7A30F0470B6869800000000 + E7A30F041FE77B5B00000000 + E7A30F041289FAA500000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + E7A30F0488BAAFC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2988BAAFC800000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04F523B9DE00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F042417E0B200000000 + E7A30F040DD17C7100000000 + E7A30F0488BAAFC800000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2918618EE500000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E296B5C010F00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29DEF2AC7100000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EC8F48FD000000000 + + isa + PBXNativeTarget + name + CallListUI + productName + CallListUI + productReference + 1DD70E2938C0E4C800000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793C8F48FD000000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EC8F48FD000000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793C8F48FD000000000 + + \ No newline at end of file diff --git a/submodules/CallListUI/CallListUI.xcodeproj/xcshareddata/xcschemes/CallListUI.xcscheme b/submodules/CallListUI/CallListUI.xcodeproj/xcshareddata/xcschemes/CallListUI.xcscheme new file mode 100644 index 0000000000..639c8675d3 --- /dev/null +++ b/submodules/CallListUI/CallListUI.xcodeproj/xcshareddata/xcschemes/CallListUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ChatListSearchItemHeader/BUCK b/submodules/ChatListSearchItemHeader/BUCK index 8145315e82..a72c11eea8 100644 --- a/submodules/ChatListSearchItemHeader/BUCK +++ b/submodules/ChatListSearchItemHeader/BUCK @@ -6,6 +6,9 @@ static_library( "Sources/**/*.swift", ]), deps = [ + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/ListSectionHeaderNode:ListSectionHeaderNode", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/ChatListSearchItemHeader/ChatListSearchItemHeader.xcodeproj/project.pbxproj b/submodules/ChatListSearchItemHeader/ChatListSearchItemHeader.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..c3dbbf0d35 --- /dev/null +++ b/submodules/ChatListSearchItemHeader/ChatListSearchItemHeader.xcodeproj/project.pbxproj @@ -0,0 +1,533 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2974E003C300000000 + + isa + PBXFileReference + name + ChatListSearchItemHeader.swift + path + Sources/ChatListSearchItemHeader.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2974E003C300000000 + + + B401C979723D879E00000000 + + isa + PBXGroup + name + ChatListSearchItemHeader + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29F68C415700000000 + + isa + PBXFileReference + name + ChatListSearchItemHeader-Debug.xcconfig + path + ../../buck-out/gen/submodules/ChatListSearchItemHeader/ChatListSearchItemHeader-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2969A3DF0100000000 + + isa + PBXFileReference + name + ChatListSearchItemHeader-Profile.xcconfig + path + ../../buck-out/gen/submodules/ChatListSearchItemHeader/ChatListSearchItemHeader-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29DD3A8A6300000000 + + isa + PBXFileReference + name + ChatListSearchItemHeader-Release.xcconfig + path + ../../buck-out/gen/submodules/ChatListSearchItemHeader/ChatListSearchItemHeader-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29F68C415700000000 + 1DD70E2969A3DF0100000000 + 1DD70E29DD3A8A6300000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29AC43662400000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29FD72F45600000000 + + isa + PBXFileReference + name + libChatListSearchItemHeader.a + path + libChatListSearchItemHeader.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29FD72F45600000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979723D879E00000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F0474E003C300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2974E003C300000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0474E003C300000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04AC43662400000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29F68C415700000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2969A3DF0100000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29DD3A8A6300000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E723D879E00000000 + + isa + PBXNativeTarget + name + ChatListSearchItemHeader + productName + ChatListSearchItemHeader + productReference + 1DD70E29FD72F45600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793723D879E00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E723D879E00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793723D879E00000000 + + \ No newline at end of file diff --git a/submodules/ChatListSearchItemHeader/ChatListSearchItemHeader.xcodeproj/xcshareddata/xcschemes/ChatListSearchItemHeader.xcscheme b/submodules/ChatListSearchItemHeader/ChatListSearchItemHeader.xcodeproj/xcshareddata/xcschemes/ChatListSearchItemHeader.xcscheme new file mode 100644 index 0000000000..dc4e6247a5 --- /dev/null +++ b/submodules/ChatListSearchItemHeader/ChatListSearchItemHeader.xcodeproj/xcshareddata/xcschemes/ChatListSearchItemHeader.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ChatListSearchItemNode/BUCK b/submodules/ChatListSearchItemNode/BUCK index 1eaa21d1ae..b6b530bc87 100644 --- a/submodules/ChatListSearchItemNode/BUCK +++ b/submodules/ChatListSearchItemNode/BUCK @@ -6,6 +6,12 @@ static_library( "Sources/**/*.swift", ]), deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/SearchBarNode:SearchBarNode", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/ChatListSearchItemNode/ChatListSearchItemNode.xcodeproj/project.pbxproj b/submodules/ChatListSearchItemNode/ChatListSearchItemNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..7eaf4f696c --- /dev/null +++ b/submodules/ChatListSearchItemNode/ChatListSearchItemNode.xcodeproj/project.pbxproj @@ -0,0 +1,555 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2946AEE39600000000 + + isa + PBXFileReference + name + ChatListSearchItem.swift + path + Sources/ChatListSearchItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2946AEE39600000000 + + + B401C9795094635300000000 + + isa + PBXGroup + name + ChatListSearchItemNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E292665E50200000000 + + isa + PBXFileReference + name + ChatListSearchItemNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/ChatListSearchItemNode/ChatListSearchItemNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2909A343EC00000000 + + isa + PBXFileReference + name + ChatListSearchItemNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/ChatListSearchItemNode/ChatListSearchItemNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E297D39EF4E00000000 + + isa + PBXFileReference + name + ChatListSearchItemNode-Release.xcconfig + path + ../../buck-out/gen/submodules/ChatListSearchItemNode/ChatListSearchItemNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E292665E50200000000 + 1DD70E2909A343EC00000000 + 1DD70E297D39EF4E00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29BF0846EE00000000 + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29EA9CBB5B00000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E2907DC840B00000000 + + isa + PBXFileReference + name + libChatListSearchItemNode.a + path + libChatListSearchItemNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2907DC840B00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C9795094635300000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F0446AEE39600000000 + + isa + PBXBuildFile + fileRef + 1DD70E2946AEE39600000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0446AEE39600000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04EA9CBB5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA9CBB5B00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04BF0846EE00000000 + E7A30F04EA9CBB5B00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E292665E50200000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2909A343EC00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E297D39EF4E00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E5094635300000000 + + isa + PBXNativeTarget + name + ChatListSearchItemNode + productName + ChatListSearchItemNode + productReference + 1DD70E2907DC840B00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847935094635300000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E5094635300000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847935094635300000000 + + \ No newline at end of file diff --git a/submodules/ChatListSearchItemNode/ChatListSearchItemNode.xcodeproj/xcshareddata/xcschemes/ChatListSearchItemNode.xcscheme b/submodules/ChatListSearchItemNode/ChatListSearchItemNode.xcodeproj/xcshareddata/xcschemes/ChatListSearchItemNode.xcscheme new file mode 100644 index 0000000000..635f176773 --- /dev/null +++ b/submodules/ChatListSearchItemNode/ChatListSearchItemNode.xcodeproj/xcshareddata/xcschemes/ChatListSearchItemNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ChatListSearchRecentPeersNode/BUCK b/submodules/ChatListSearchRecentPeersNode/BUCK index d650881f2a..a0ce302ad2 100644 --- a/submodules/ChatListSearchRecentPeersNode/BUCK +++ b/submodules/ChatListSearchRecentPeersNode/BUCK @@ -6,6 +6,15 @@ static_library( "Sources/**/*.swift", ]), deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/ListSectionHeaderNode:ListSectionHeaderNode", + "//submodules/HorizontalPeerItem:HorizontalPeerItem", + "//submodules/MergeLists:MergeLists", + "//submodules/TelegramPresentationData:TelegramPresentationData", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/ChatListSearchRecentPeersNode/ChatListSearchRecentPeersNode.xcodeproj/project.pbxproj b/submodules/ChatListSearchRecentPeersNode/ChatListSearchRecentPeersNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..669d6091e0 --- /dev/null +++ b/submodules/ChatListSearchRecentPeersNode/ChatListSearchRecentPeersNode.xcodeproj/project.pbxproj @@ -0,0 +1,819 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29C02B0E9F00000000 + + isa + PBXFileReference + name + ChatListSearchRecentPeersNode.swift + path + Sources/ChatListSearchRecentPeersNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29C02B0E9F00000000 + + + B401C979A9F0E77A00000000 + + isa + PBXGroup + name + ChatListSearchRecentPeersNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29FD29ADFB00000000 + + isa + PBXFileReference + name + ChatListSearchRecentPeersNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/ChatListSearchRecentPeersNode/ChatListSearchRecentPeersNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E293E98B2A500000000 + + isa + PBXFileReference + name + ChatListSearchRecentPeersNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/ChatListSearchRecentPeersNode/ChatListSearchRecentPeersNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B22F5E0700000000 + + isa + PBXFileReference + name + ChatListSearchRecentPeersNode-Release.xcconfig + path + ../../buck-out/gen/submodules/ChatListSearchRecentPeersNode/ChatListSearchRecentPeersNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29FD29ADFB00000000 + 1DD70E293E98B2A500000000 + 1DD70E29B22F5E0700000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E29FF334B1F00000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29928D142900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29097DBE9200000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E297AB043C800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979A9F0E77A00000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04C02B0E9F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C02B0E9F00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04C02B0E9F00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04928D142900000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F04D6F14E1000000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0484A59C1D00000000 + E7A30F04A54A195300000000 + E7A30F04097DBE9200000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F0471ED41B100000000 + E7A30F04AC43662400000000 + E7A30F04C37F741500000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29FD29ADFB00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E293E98B2A500000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29B22F5E0700000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EA9F0E77A00000000 + + isa + PBXNativeTarget + name + ChatListSearchRecentPeersNode + productName + ChatListSearchRecentPeersNode + productReference + 1DD70E297AB043C800000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793A9F0E77A00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EA9F0E77A00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793A9F0E77A00000000 + + \ No newline at end of file diff --git a/submodules/ChatListSearchRecentPeersNode/ChatListSearchRecentPeersNode.xcodeproj/xcshareddata/xcschemes/ChatListSearchRecentPeersNode.xcscheme b/submodules/ChatListSearchRecentPeersNode/ChatListSearchRecentPeersNode.xcodeproj/xcshareddata/xcschemes/ChatListSearchRecentPeersNode.xcscheme new file mode 100644 index 0000000000..5298122994 --- /dev/null +++ b/submodules/ChatListSearchRecentPeersNode/ChatListSearchRecentPeersNode.xcodeproj/xcshareddata/xcschemes/ChatListSearchRecentPeersNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ChatListUI/BUCK b/submodules/ChatListUI/BUCK index f1bafb2e72..fe20d2e97f 100644 --- a/submodules/ChatListUI/BUCK +++ b/submodules/ChatListUI/BUCK @@ -6,6 +6,36 @@ static_library( "Sources/**/*.swift", ]), deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramBaseController:TelegramBaseController", + "//submodules/OverlayStatusController:OverlayStatusController", + "//submodules/AlertUI:AlertUI", + "//submodules/UndoUI:UndoUI", + "//submodules/TelegramNotices:TelegramNotices", + "//submodules/SearchUI:SearchUI", + "//submodules/MergeLists:MergeLists", + "//submodules/ActivityIndicator:ActivityIndicator", + "//submodules/SearchBarNode:SearchBarNode", + "//submodules/ChatListSearchRecentPeersNode:ChatListSearchRecentPeersNode", + "//submodules/ChatListSearchItemNode:ChatListSearchItemNode", + "//submodules/ChatListSearchItemHeader:ChatListSearchItemHeader", + "//submodules/TemporaryCachedPeerDataManager:TemporaryCachedPeerDataManager", + "//submodules/PeerPresenceStatusManager:PeerPresenceStatusManager", + "//submodules/PeerOnlineMarkerNode:PeerOnlineMarkerNode", + "//submodules/LocalizedPeerData:LocalizedPeerData", + "//submodules/ChatTitleActivityNode:ChatTitleActivityNode", + "//submodules/DeleteChatPeerActionSheetItem:DeleteChatPeerActionSheetItem", + "//submodules/LanguageSuggestionUI:LanguageSuggestionUI", + "//submodules/ContactsPeerItem:ContactsPeerItem", + "//submodules/ContactListUI:ContactListUI", + "//submodules/PhotoResources:PhotoResources", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/ChatListUI/ChatListUI.xcodeproj/project.pbxproj b/submodules/ChatListUI/ChatListUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..70b8bb15cb --- /dev/null +++ b/submodules/ChatListUI/ChatListUI.xcodeproj/project.pbxproj @@ -0,0 +1,2156 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2989C1B99200000000 + + isa + PBXFileReference + name + ChatListArchiveInfoItem.swift + path + Sources/Node/ChatListArchiveInfoItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E292ECB2C1400000000 + + isa + PBXFileReference + name + ChatListBadgeNode.swift + path + Sources/Node/ChatListBadgeNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2962D1922E00000000 + + isa + PBXFileReference + name + ChatListHoleItem.swift + path + Sources/Node/ChatListHoleItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E3C20C4E00000000 + + isa + PBXFileReference + name + ChatListItem.swift + path + Sources/Node/ChatListItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FF0A31BE00000000 + + isa + PBXFileReference + name + ChatListItemStrings.swift + path + Sources/Node/ChatListItemStrings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B4C80FFD00000000 + + isa + PBXFileReference + name + ChatListNode.swift + path + Sources/Node/ChatListNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2993AA1ABD00000000 + + isa + PBXFileReference + name + ChatListNodeEntries.swift + path + Sources/Node/ChatListNodeEntries.swift + sourceTree + SOURCE_ROOT + + 1DD70E298B84481200000000 + + isa + PBXFileReference + name + ChatListNodeLocation.swift + path + Sources/Node/ChatListNodeLocation.swift + sourceTree + SOURCE_ROOT + + 1DD70E29AA71255F00000000 + + isa + PBXFileReference + name + ChatListPresentationData.swift + path + Sources/Node/ChatListPresentationData.swift + sourceTree + SOURCE_ROOT + + 1DD70E2928E77D0F00000000 + + isa + PBXFileReference + name + ChatListStatusNode.swift + path + Sources/Node/ChatListStatusNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29978C105400000000 + + isa + PBXFileReference + name + ChatListTypingNode.swift + path + Sources/Node/ChatListTypingNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BE4AC65500000000 + + isa + PBXFileReference + name + ChatListViewTransition.swift + path + Sources/Node/ChatListViewTransition.swift + sourceTree + SOURCE_ROOT + + B401C9790025222200000000 + + isa + PBXGroup + name + Node + path + Sources/Node + sourceTree + SOURCE_ROOT + children + + 1DD70E2989C1B99200000000 + 1DD70E292ECB2C1400000000 + 1DD70E2962D1922E00000000 + 1DD70E29E3C20C4E00000000 + 1DD70E29FF0A31BE00000000 + 1DD70E29B4C80FFD00000000 + 1DD70E2993AA1ABD00000000 + 1DD70E298B84481200000000 + 1DD70E29AA71255F00000000 + 1DD70E2928E77D0F00000000 + 1DD70E29978C105400000000 + 1DD70E29BE4AC65500000000 + + + 1DD70E29577C319700000000 + + isa + PBXFileReference + name + ChatListController.swift + path + Sources/ChatListController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2943B2E93900000000 + + isa + PBXFileReference + name + ChatListControllerNode.swift + path + Sources/ChatListControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2906CA893E00000000 + + isa + PBXFileReference + name + ChatListEmptyNode.swift + path + Sources/ChatListEmptyNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F726BE7600000000 + + isa + PBXFileReference + name + ChatListRecentPeersListItem.swift + path + Sources/ChatListRecentPeersListItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E295385342A00000000 + + isa + PBXFileReference + name + ChatListSearchContainerNode.swift + path + Sources/ChatListSearchContainerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2904D1181B00000000 + + isa + PBXFileReference + name + ChatListSelection.swift + path + Sources/ChatListSelection.swift + sourceTree + SOURCE_ROOT + + 1DD70E299588C17700000000 + + isa + PBXFileReference + name + ChatListTitleLockView.swift + path + Sources/ChatListTitleLockView.swift + sourceTree + SOURCE_ROOT + + 1DD70E294EC20C1300000000 + + isa + PBXFileReference + name + ChatListTitleProxyNode.swift + path + Sources/ChatListTitleProxyNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E691DAEC00000000 + + isa + PBXFileReference + name + ChatListTitleView.swift + path + Sources/ChatListTitleView.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C9790025222200000000 + 1DD70E29577C319700000000 + 1DD70E2943B2E93900000000 + 1DD70E2906CA893E00000000 + 1DD70E29F726BE7600000000 + 1DD70E295385342A00000000 + 1DD70E2904D1181B00000000 + 1DD70E299588C17700000000 + 1DD70E294EC20C1300000000 + 1DD70E29E691DAEC00000000 + 1DD70E291289FAA500000000 + + + B401C9790758854A00000000 + + isa + PBXGroup + name + ChatListUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E290078B62B00000000 + + isa + PBXFileReference + name + ChatListUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/ChatListUI/ChatListUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AA466ED500000000 + + isa + PBXFileReference + name + ChatListUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/ChatListUI/ChatListUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E291DDD1A3700000000 + + isa + PBXFileReference + name + ChatListUI-Release.xcconfig + path + ../../buck-out/gen/submodules/ChatListUI/ChatListUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E290078B62B00000000 + 1DD70E29AA466ED500000000 + 1DD70E291DDD1A3700000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FD72F45600000000 + + isa + PBXFileReference + name + libChatListSearchItemHeader.a + path + libChatListSearchItemHeader.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2907DC840B00000000 + + isa + PBXFileReference + name + libChatListSearchItemNode.a + path + libChatListSearchItemNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B6F47D1F00000000 + + isa + PBXFileReference + name + libChatTitleActivityNode.a + path + libChatTitleActivityNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292F91702000000000 + + isa + PBXFileReference + name + libContactListUI.a + path + libContactListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2931752C6000000000 + + isa + PBXFileReference + name + libContactsPeerItem.a + path + libContactsPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CED1620500000000 + + isa + PBXFileReference + name + libDeleteChatPeerActionSheetItem.a + path + libDeleteChatPeerActionSheetItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299A24C4DE00000000 + + isa + PBXFileReference + name + libItemListPeerItem.a + path + libItemListPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29E220F5E800000000 + + isa + PBXFileReference + name + libLanguageSuggestionUI.a + path + libLanguageSuggestionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292969635400000000 + + isa + PBXFileReference + name + libLiveLocationTimerNode.a + path + libLiveLocationTimerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BBAF750C00000000 + + isa + PBXFileReference + name + libOverlayStatusController.a + path + libOverlayStatusController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291631B91900000000 + + isa + PBXFileReference + name + libPeersNearbyIconNode.a + path + libPeersNearbyIconNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291328E99400000000 + + isa + PBXFileReference + name + libSearchUI.a + path + libSearchUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29524F478E00000000 + + isa + PBXFileReference + name + libSolidRoundedButtonNode.a + path + libSolidRoundedButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2943136EC600000000 + + isa + PBXFileReference + name + libTelegramBaseController.a + path + libTelegramBaseController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2988BAAFC800000000 + + isa + PBXFileReference + name + libTelegramNotices.a + path + libTelegramNotices.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DF758A8500000000 + + isa + PBXFileReference + name + libTelegramPermissionsUI.a + path + libTelegramPermissionsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AE67341000000000 + + isa + PBXFileReference + name + libUndoUI.a + path + libUndoUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E29FD72F45600000000 + 1DD70E2907DC840B00000000 + 1DD70E297AB043C800000000 + 1DD70E29B6F47D1F00000000 + 1DD70E2997B4D6D800000000 + 1DD70E292F91702000000000 + 1DD70E2931752C6000000000 + 1DD70E29CED1620500000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E299A24C4DE00000000 + 1DD70E295A26607D00000000 + 1DD70E29E220F5E800000000 + 1DD70E29AC43662400000000 + 1DD70E292969635400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29BBAF750C00000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E291631B91900000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29EA9CBB5B00000000 + 1DD70E291328E99400000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E29524F478E00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E2943136EC600000000 + 1DD70E29119CDA0700000000 + 1DD70E2988BAAFC800000000 + 1DD70E290DD17C7100000000 + 1DD70E29DF758A8500000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E29AE67341000000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + + + 1DD70E296DFD63C200000000 + + isa + PBXFileReference + name + libChatListUI.a + path + libChatListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E296DFD63C200000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C9790758854A00000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F0489C1B99200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2989C1B99200000000 + + E7A30F042ECB2C1400000000 + + isa + PBXBuildFile + fileRef + 1DD70E292ECB2C1400000000 + + E7A30F0462D1922E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2962D1922E00000000 + + E7A30F04E3C20C4E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E3C20C4E00000000 + + E7A30F04FF0A31BE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF0A31BE00000000 + + E7A30F04B4C80FFD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4C80FFD00000000 + + E7A30F0493AA1ABD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2993AA1ABD00000000 + + E7A30F048B84481200000000 + + isa + PBXBuildFile + fileRef + 1DD70E298B84481200000000 + + E7A30F04AA71255F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AA71255F00000000 + + E7A30F0428E77D0F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2928E77D0F00000000 + + E7A30F04978C105400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29978C105400000000 + + E7A30F04BE4AC65500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BE4AC65500000000 + + E7A30F04577C319700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29577C319700000000 + + E7A30F0443B2E93900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2943B2E93900000000 + + E7A30F0406CA893E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2906CA893E00000000 + + E7A30F04F726BE7600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F726BE7600000000 + + E7A30F045385342A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295385342A00000000 + + E7A30F0404D1181B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2904D1181B00000000 + + E7A30F049588C17700000000 + + isa + PBXBuildFile + fileRef + 1DD70E299588C17700000000 + + E7A30F044EC20C1300000000 + + isa + PBXBuildFile + fileRef + 1DD70E294EC20C1300000000 + + E7A30F04E691DAEC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E691DAEC00000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0489C1B99200000000 + E7A30F042ECB2C1400000000 + E7A30F0462D1922E00000000 + E7A30F04E3C20C4E00000000 + E7A30F04FF0A31BE00000000 + E7A30F04B4C80FFD00000000 + E7A30F0493AA1ABD00000000 + E7A30F048B84481200000000 + E7A30F04AA71255F00000000 + E7A30F0428E77D0F00000000 + E7A30F04978C105400000000 + E7A30F04BE4AC65500000000 + E7A30F04577C319700000000 + E7A30F0443B2E93900000000 + E7A30F0406CA893E00000000 + E7A30F04F726BE7600000000 + E7A30F045385342A00000000 + E7A30F0404D1181B00000000 + E7A30F049588C17700000000 + E7A30F044EC20C1300000000 + E7A30F04E691DAEC00000000 + E7A30F041289FAA500000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04FD72F45600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FD72F45600000000 + + E7A30F04EA9CBB5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA9CBB5B00000000 + + E7A30F0407DC840B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2907DC840B00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04B6F47D1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B6F47D1F00000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F049A24C4DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299A24C4DE00000000 + + E7A30F0431752C6000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2931752C6000000000 + + E7A30F041328E99400000000 + + isa + PBXBuildFile + fileRef + 1DD70E291328E99400000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + E7A30F0488BAAFC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2988BAAFC800000000 + + E7A30F041631B91900000000 + + isa + PBXBuildFile + fileRef + 1DD70E291631B91900000000 + + E7A30F04524F478E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29524F478E00000000 + + E7A30F04DF758A8500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF758A8500000000 + + E7A30F042F91702000000000 + + isa + PBXBuildFile + fileRef + 1DD70E292F91702000000000 + + E7A30F04CED1620500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CED1620500000000 + + E7A30F04E220F5E800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E220F5E800000000 + + E7A30F04BBAF750C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BBAF750C00000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F042969635400000000 + + isa + PBXBuildFile + fileRef + 1DD70E292969635400000000 + + E7A30F0443136EC600000000 + + isa + PBXBuildFile + fileRef + 1DD70E2943136EC600000000 + + E7A30F04AE67341000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AE67341000000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04BF0846EE00000000 + E7A30F04F523B9DE00000000 + E7A30F04AC43662400000000 + E7A30F04FD72F45600000000 + E7A30F04EA9CBB5B00000000 + E7A30F0407DC840B00000000 + E7A30F04928D142900000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04B6F47D1F00000000 + E7A30F0497B4D6D800000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F04D233F68C00000000 + E7A30F049A24C4DE00000000 + E7A30F0431752C6000000000 + E7A30F041328E99400000000 + E7A30F041E16CC6C00000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F04597BAFBB00000000 + E7A30F0481AE180900000000 + E7A30F040DD17C7100000000 + E7A30F0488BAAFC800000000 + E7A30F041631B91900000000 + E7A30F04524F478E00000000 + E7A30F04DF758A8500000000 + E7A30F042F91702000000000 + E7A30F04CED1620500000000 + E7A30F04E220F5E800000000 + E7A30F04BBAF750C00000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04490601EB00000000 + E7A30F042969635400000000 + E7A30F0443136EC600000000 + E7A30F04AE67341000000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E290078B62B00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29AA466ED500000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E291DDD1A3700000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E0758854A00000000 + + isa + PBXNativeTarget + name + ChatListUI + productName + ChatListUI + productReference + 1DD70E296DFD63C200000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847930758854A00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E0758854A00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847930758854A00000000 + + \ No newline at end of file diff --git a/submodules/ChatListUI/ChatListUI.xcodeproj/xcshareddata/xcschemes/ChatListUI.xcscheme b/submodules/ChatListUI/ChatListUI.xcodeproj/xcshareddata/xcschemes/ChatListUI.xcscheme new file mode 100644 index 0000000000..935d845497 --- /dev/null +++ b/submodules/ChatListUI/ChatListUI.xcodeproj/xcshareddata/xcschemes/ChatListUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ChatTitleActivityNode/BUCK b/submodules/ChatTitleActivityNode/BUCK index d8a669a8f3..f573138541 100644 --- a/submodules/ChatTitleActivityNode/BUCK +++ b/submodules/ChatTitleActivityNode/BUCK @@ -6,6 +6,9 @@ static_library( "Sources/**/*.swift", ]), deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/LegacyComponents:LegacyComponents", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/ChatTitleActivityNode/ChatTitleActivityNode.xcodeproj/project.pbxproj b/submodules/ChatTitleActivityNode/ChatTitleActivityNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..7962c1c933 --- /dev/null +++ b/submodules/ChatTitleActivityNode/ChatTitleActivityNode.xcodeproj/project.pbxproj @@ -0,0 +1,499 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29AB1EF43B00000000 + + isa + PBXFileReference + name + ChatPlayingActivityContentNode.swift + path + Sources/ChatPlayingActivityContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E296668ECAF00000000 + + isa + PBXFileReference + name + ChatRecordingVideoActivityContentNode.swift + path + Sources/ChatRecordingVideoActivityContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E298D3E0BD800000000 + + isa + PBXFileReference + name + ChatRecordingVoiceActivityContentNode.swift + path + Sources/ChatRecordingVoiceActivityContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E295E0D8B5100000000 + + isa + PBXFileReference + name + ChatTitleActivityContentNode.swift + path + Sources/ChatTitleActivityContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2996B6397600000000 + + isa + PBXFileReference + name + ChatTitleActivityNode.swift + path + Sources/ChatTitleActivityNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29837228E200000000 + + isa + PBXFileReference + name + ChatTypingActivityContentNode.swift + path + Sources/ChatTypingActivityContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E297D14EB8800000000 + + isa + PBXFileReference + name + ChatUploadingActivityContentNode.swift + path + Sources/ChatUploadingActivityContentNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29AB1EF43B00000000 + 1DD70E296668ECAF00000000 + 1DD70E298D3E0BD800000000 + 1DD70E295E0D8B5100000000 + 1DD70E2996B6397600000000 + 1DD70E29837228E200000000 + 1DD70E297D14EB8800000000 + + + B401C979E78EBF9100000000 + + isa + PBXGroup + name + ChatTitleActivityNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29893BC50400000000 + + isa + PBXFileReference + name + ChatTitleActivityNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/ChatTitleActivityNode/ChatTitleActivityNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E290E812B6E00000000 + + isa + PBXFileReference + name + ChatTitleActivityNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/ChatTitleActivityNode/ChatTitleActivityNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E298217D6D000000000 + + isa + PBXFileReference + name + ChatTitleActivityNode-Release.xcconfig + path + ../../buck-out/gen/submodules/ChatTitleActivityNode/ChatTitleActivityNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29893BC50400000000 + 1DD70E290E812B6E00000000 + 1DD70E298217D6D000000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + + + 1DD70E29B6F47D1F00000000 + + isa + PBXFileReference + name + libChatTitleActivityNode.a + path + libChatTitleActivityNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29B6F47D1F00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979E78EBF9100000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04AB1EF43B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AB1EF43B00000000 + + E7A30F046668ECAF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296668ECAF00000000 + + E7A30F048D3E0BD800000000 + + isa + PBXBuildFile + fileRef + 1DD70E298D3E0BD800000000 + + E7A30F045E0D8B5100000000 + + isa + PBXBuildFile + fileRef + 1DD70E295E0D8B5100000000 + + E7A30F0496B6397600000000 + + isa + PBXBuildFile + fileRef + 1DD70E2996B6397600000000 + + E7A30F04837228E200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29837228E200000000 + + E7A30F047D14EB8800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297D14EB8800000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04AB1EF43B00000000 + E7A30F046668ECAF00000000 + E7A30F048D3E0BD800000000 + E7A30F045E0D8B5100000000 + E7A30F0496B6397600000000 + E7A30F04837228E200000000 + E7A30F047D14EB8800000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29893BC50400000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E290E812B6E00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E298217D6D000000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EE78EBF9100000000 + + isa + PBXNativeTarget + name + ChatTitleActivityNode + productName + ChatTitleActivityNode + productReference + 1DD70E29B6F47D1F00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793E78EBF9100000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EE78EBF9100000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793E78EBF9100000000 + + \ No newline at end of file diff --git a/submodules/ChatTitleActivityNode/ChatTitleActivityNode.xcodeproj/xcshareddata/xcschemes/ChatTitleActivityNode.xcscheme b/submodules/ChatTitleActivityNode/ChatTitleActivityNode.xcodeproj/xcshareddata/xcschemes/ChatTitleActivityNode.xcscheme new file mode 100644 index 0000000000..e415ce1e30 --- /dev/null +++ b/submodules/ChatTitleActivityNode/ChatTitleActivityNode.xcodeproj/xcshareddata/xcschemes/ChatTitleActivityNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/CheckNode/CheckNode.xcodeproj/project.pbxproj b/submodules/CheckNode/CheckNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..a9a6a72177 --- /dev/null +++ b/submodules/CheckNode/CheckNode.xcodeproj/project.pbxproj @@ -0,0 +1,413 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E298864CE8400000000 + + isa + PBXFileReference + name + CheckNode.h + path + Sources/CheckNode.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2915649E2F00000000 + + isa + PBXFileReference + name + CheckNode.swift + path + Sources/CheckNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E290B01011000000000 + + isa + PBXFileReference + name + ModernCheckNode.swift + path + Sources/ModernCheckNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E298864CE8400000000 + 1DD70E2915649E2F00000000 + 1DD70E290B01011000000000 + + + B401C9798F31630A00000000 + + isa + PBXGroup + name + CheckNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29E790A06B00000000 + + isa + PBXFileReference + name + CheckNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/CheckNode/CheckNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292B0CC91500000000 + + isa + PBXFileReference + name + CheckNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/CheckNode/CheckNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E299EA3747700000000 + + isa + PBXFileReference + name + CheckNode-Release.xcconfig + path + ../../buck-out/gen/submodules/CheckNode/CheckNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29E790A06B00000000 + 1DD70E292B0CC91500000000 + 1DD70E299EA3747700000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2997B4D6D800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C9798F31630A00000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F0415649E2F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2915649E2F00000000 + + E7A30F040B01011000000000 + + isa + PBXBuildFile + fileRef + 1DD70E290B01011000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0415649E2F00000000 + E7A30F040B01011000000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29E790A06B00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E292B0CC91500000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E299EA3747700000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E8F31630A00000000 + + isa + PBXNativeTarget + name + CheckNode + productName + CheckNode + productReference + 1DD70E2997B4D6D800000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847938F31630A00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E8F31630A00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847938F31630A00000000 + + \ No newline at end of file diff --git a/submodules/CheckNode/CheckNode.xcodeproj/xcshareddata/xcschemes/CheckNode.xcscheme b/submodules/CheckNode/CheckNode.xcodeproj/xcshareddata/xcschemes/CheckNode.xcscheme new file mode 100644 index 0000000000..0da8a9ff8c --- /dev/null +++ b/submodules/CheckNode/CheckNode.xcodeproj/xcshareddata/xcschemes/CheckNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ComposePollUI/BUCK b/submodules/ComposePollUI/BUCK new file mode 100644 index 0000000000..1c817c07d5 --- /dev/null +++ b/submodules/ComposePollUI/BUCK @@ -0,0 +1,22 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ComposePollUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/ItemListUI:ItemListUI", + "//submodules/AccountContext:AccountContext", + "//submodules/AlertUI:AlertUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ComposePollUI/ComposePollUI.xcodeproj/project.pbxproj b/submodules/ComposePollUI/ComposePollUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..c23ba6b914 --- /dev/null +++ b/submodules/ComposePollUI/ComposePollUI.xcodeproj/project.pbxproj @@ -0,0 +1,991 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29EBE9025C00000000 + + isa + PBXFileReference + name + CreatePollController.swift + path + Sources/CreatePollController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2989C0B5BE00000000 + + isa + PBXFileReference + name + CreatePollOptionActionItem.swift + path + Sources/CreatePollOptionActionItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E296BCC7AE800000000 + + isa + PBXFileReference + name + CreatePollOptionItem.swift + path + Sources/CreatePollOptionItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29EBE9025C00000000 + 1DD70E2989C0B5BE00000000 + 1DD70E296BCC7AE800000000 + + + B401C979694E46A500000000 + + isa + PBXGroup + name + ComposePollUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29FD02B37000000000 + + isa + PBXFileReference + name + ComposePollUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/ComposePollUI/ComposePollUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AC462EDA00000000 + + isa + PBXFileReference + name + ComposePollUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/ComposePollUI/ComposePollUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E291FDCDA3C00000000 + + isa + PBXFileReference + name + ComposePollUI-Release.xcconfig + path + ../../buck-out/gen/submodules/ComposePollUI/ComposePollUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29FD02B37000000000 + 1DD70E29AC462EDA00000000 + 1DD70E291FDCDA3C00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E2997B4D6D800000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29ABE59A3300000000 + + isa + PBXFileReference + name + libComposePollUI.a + path + libComposePollUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29ABE59A3300000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979694E46A500000000 + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04EBE9025C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EBE9025C00000000 + + E7A30F0489C0B5BE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2989C0B5BE00000000 + + E7A30F046BCC7AE800000000 + + isa + PBXBuildFile + fileRef + 1DD70E296BCC7AE800000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04EBE9025C00000000 + E7A30F0489C0B5BE00000000 + E7A30F046BCC7AE800000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04F523B9DE00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29FD02B37000000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29AC462EDA00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E291FDCDA3C00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E694E46A500000000 + + isa + PBXNativeTarget + name + ComposePollUI + productName + ComposePollUI + productReference + 1DD70E29ABE59A3300000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793694E46A500000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E694E46A500000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793694E46A500000000 + + \ No newline at end of file diff --git a/submodules/ComposePollUI/ComposePollUI.xcodeproj/xcshareddata/xcschemes/ComposePollUI.xcscheme b/submodules/ComposePollUI/ComposePollUI.xcodeproj/xcshareddata/xcschemes/ComposePollUI.xcscheme new file mode 100644 index 0000000000..6562ac2894 --- /dev/null +++ b/submodules/ComposePollUI/ComposePollUI.xcodeproj/xcshareddata/xcschemes/ComposePollUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ContactListUI/BUCK b/submodules/ContactListUI/BUCK new file mode 100644 index 0000000000..a95e22bb63 --- /dev/null +++ b/submodules/ContactListUI/BUCK @@ -0,0 +1,32 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ContactListUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/MergeLists:MergeLists", + "//submodules/SearchUI:SearchUI", + "//submodules/ChatListSearchItemHeader:ChatListSearchItemHeader", + "//submodules/ItemListPeerItem:ItemListPeerItem", + "//submodules/ContactsPeerItem:ContactsPeerItem", + "//submodules/ChatListSearchItemNode:ChatListSearchItemNode", + "//submodules/TelegramPermissionsUI:TelegramPermissionsUI", + "//submodules/TelegramNotices:TelegramNotices", + "//submodules/AlertUI:AlertUI", + "//submodules/ShareController:ShareController", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ContactListUI/ContactListUI.xcodeproj/project.pbxproj b/submodules/ContactListUI/ContactListUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..e7ed0f4a34 --- /dev/null +++ b/submodules/ContactListUI/ContactListUI.xcodeproj/project.pbxproj @@ -0,0 +1,1679 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29AA4CA6A300000000 + + isa + PBXFileReference + name + ContactListUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/ContactListUI/ContactListUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292EE0214D00000000 + + isa + PBXFileReference + name + ContactListUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/ContactListUI/ContactListUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A276CCAF00000000 + + isa + PBXFileReference + name + ContactListUI-Release.xcconfig + path + ../../buck-out/gen/submodules/ContactListUI/ContactListUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29AA4CA6A300000000 + 1DD70E292EE0214D00000000 + 1DD70E29A276CCAF00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29C95D7ED900000000 + + isa + PBXFileReference + name + ContactAddItem.swift + path + Sources/ContactAddItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CD71432C00000000 + + isa + PBXFileReference + name + ContactListActionItem.swift + path + Sources/ContactListActionItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C8C4BFFB00000000 + + isa + PBXFileReference + name + ContactListNameIndexHeader.swift + path + Sources/ContactListNameIndexHeader.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FD9D368500000000 + + isa + PBXFileReference + name + ContactListNode.swift + path + Sources/ContactListNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D5D22BD400000000 + + isa + PBXFileReference + name + ContactsController.swift + path + Sources/ContactsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2955D77CF600000000 + + isa + PBXFileReference + name + ContactsControllerNode.swift + path + Sources/ContactsControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2912C86E8D00000000 + + isa + PBXFileReference + name + ContactsSearchContainerNode.swift + path + Sources/ContactsSearchContainerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E2947849BFD00000000 + + isa + PBXFileReference + name + InviteContactsController.swift + path + Sources/InviteContactsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CB13B09F00000000 + + isa + PBXFileReference + name + InviteContactsControllerNode.swift + path + Sources/InviteContactsControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D3C9BBF800000000 + + isa + PBXFileReference + name + InviteContactsCountPanelNode.swift + path + Sources/InviteContactsCountPanelNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29C95D7ED900000000 + 1DD70E29CD71432C00000000 + 1DD70E29C8C4BFFB00000000 + 1DD70E29FD9D368500000000 + 1DD70E29D5D22BD400000000 + 1DD70E2955D77CF600000000 + 1DD70E2912C86E8D00000000 + 1DD70E291289FAA500000000 + 1DD70E2947849BFD00000000 + 1DD70E29CB13B09F00000000 + 1DD70E29D3C9BBF800000000 + + + B401C97947E0B3D200000000 + + isa + PBXGroup + name + ContactListUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FD72F45600000000 + + isa + PBXFileReference + name + libChatListSearchItemHeader.a + path + libChatListSearchItemHeader.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2907DC840B00000000 + + isa + PBXFileReference + name + libChatListSearchItemNode.a + path + libChatListSearchItemNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2931752C6000000000 + + isa + PBXFileReference + name + libContactsPeerItem.a + path + libContactsPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299A24C4DE00000000 + + isa + PBXFileReference + name + libItemListPeerItem.a + path + libItemListPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291631B91900000000 + + isa + PBXFileReference + name + libPeersNearbyIconNode.a + path + libPeersNearbyIconNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291328E99400000000 + + isa + PBXFileReference + name + libSearchUI.a + path + libSearchUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29524F478E00000000 + + isa + PBXFileReference + name + libSolidRoundedButtonNode.a + path + libSolidRoundedButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2988BAAFC800000000 + + isa + PBXFileReference + name + libTelegramNotices.a + path + libTelegramNotices.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DF758A8500000000 + + isa + PBXFileReference + name + libTelegramPermissionsUI.a + path + libTelegramPermissionsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E29FD72F45600000000 + 1DD70E2907DC840B00000000 + 1DD70E297AB043C800000000 + 1DD70E2997B4D6D800000000 + 1DD70E2931752C6000000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E299A24C4DE00000000 + 1DD70E295A26607D00000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E291631B91900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29EA9CBB5B00000000 + 1DD70E291328E99400000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E29524F478E00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2988BAAFC800000000 + 1DD70E290DD17C7100000000 + 1DD70E29DF758A8500000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + + + 1DD70E292F91702000000000 + + isa + PBXFileReference + name + libContactListUI.a + path + libContactListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E292F91702000000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97947E0B3D200000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04C95D7ED900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C95D7ED900000000 + + E7A30F04CD71432C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD71432C00000000 + + E7A30F04C8C4BFFB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C8C4BFFB00000000 + + E7A30F04FD9D368500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FD9D368500000000 + + E7A30F04D5D22BD400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D5D22BD400000000 + + E7A30F0455D77CF600000000 + + isa + PBXBuildFile + fileRef + 1DD70E2955D77CF600000000 + + E7A30F0412C86E8D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2912C86E8D00000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F0447849BFD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2947849BFD00000000 + + E7A30F04CB13B09F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CB13B09F00000000 + + E7A30F04D3C9BBF800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D3C9BBF800000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04C95D7ED900000000 + E7A30F04CD71432C00000000 + E7A30F04C8C4BFFB00000000 + E7A30F04FD9D368500000000 + E7A30F04D5D22BD400000000 + E7A30F0455D77CF600000000 + E7A30F0412C86E8D00000000 + E7A30F041289FAA500000000 + E7A30F0447849BFD00000000 + E7A30F04CB13B09F00000000 + E7A30F04D3C9BBF800000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04FD72F45600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FD72F45600000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04EA9CBB5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA9CBB5B00000000 + + E7A30F0407DC840B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2907DC840B00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F049A24C4DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299A24C4DE00000000 + + E7A30F0431752C6000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2931752C6000000000 + + E7A30F041328E99400000000 + + isa + PBXBuildFile + fileRef + 1DD70E291328E99400000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + E7A30F0488BAAFC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2988BAAFC800000000 + + E7A30F041631B91900000000 + + isa + PBXBuildFile + fileRef + 1DD70E291631B91900000000 + + E7A30F04524F478E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29524F478E00000000 + + E7A30F04DF758A8500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF758A8500000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04F523B9DE00000000 + E7A30F04AC43662400000000 + E7A30F04FD72F45600000000 + E7A30F04BF0846EE00000000 + E7A30F04EA9CBB5B00000000 + E7A30F0407DC840B00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F04D233F68C00000000 + E7A30F049A24C4DE00000000 + E7A30F0431752C6000000000 + E7A30F041328E99400000000 + E7A30F041E16CC6C00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F047AB043C800000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F04597BAFBB00000000 + E7A30F0481AE180900000000 + E7A30F040DD17C7100000000 + E7A30F0488BAAFC800000000 + E7A30F041631B91900000000 + E7A30F04524F478E00000000 + E7A30F04DF758A8500000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29AA4CA6A300000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E292EE0214D00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29A276CCAF00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E47E0B3D200000000 + + isa + PBXNativeTarget + name + ContactListUI + productName + ContactListUI + productReference + 1DD70E292F91702000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479347E0B3D200000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E47E0B3D200000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479347E0B3D200000000 + + \ No newline at end of file diff --git a/submodules/ContactListUI/ContactListUI.xcodeproj/xcshareddata/xcschemes/ContactListUI.xcscheme b/submodules/ContactListUI/ContactListUI.xcodeproj/xcshareddata/xcschemes/ContactListUI.xcscheme new file mode 100644 index 0000000000..30c765241d --- /dev/null +++ b/submodules/ContactListUI/ContactListUI.xcodeproj/xcshareddata/xcschemes/ContactListUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ContactsPeerItem/BUCK b/submodules/ContactsPeerItem/BUCK new file mode 100644 index 0000000000..dab23dcd85 --- /dev/null +++ b/submodules/ContactsPeerItem/BUCK @@ -0,0 +1,29 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ContactsPeerItem", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/AccountContext:AccountContext", + "//submodules/AvatarNode:AvatarNode", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/CheckNode:CheckNode", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/ItemListPeerItem:ItemListPeerItem", + "//submodules/PeerPresenceStatusManager:PeerPresenceStatusManager", + "//submodules/ItemListUI:ItemListUI", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/ListSectionHeaderNode:ListSectionHeaderNode", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ContactsPeerItem/ContactsPeerItem.xcodeproj/project.pbxproj b/submodules/ContactsPeerItem/ContactsPeerItem.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..6a5a0aab20 --- /dev/null +++ b/submodules/ContactsPeerItem/ContactsPeerItem.xcodeproj/project.pbxproj @@ -0,0 +1,1037 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29C90DDE8D00000000 + + isa + PBXFileReference + name + ContactsPeerItem-Debug.xcconfig + path + ../../buck-out/gen/submodules/ContactsPeerItem/ContactsPeerItem-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A23306B700000000 + + isa + PBXFileReference + name + ContactsPeerItem-Profile.xcconfig + path + ../../buck-out/gen/submodules/ContactsPeerItem/ContactsPeerItem-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2915C9B21900000000 + + isa + PBXFileReference + name + ContactsPeerItem-Release.xcconfig + path + ../../buck-out/gen/submodules/ContactsPeerItem/ContactsPeerItem-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29C90DDE8D00000000 + 1DD70E29A23306B700000000 + 1DD70E2915C9B21900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29597C91CD00000000 + + isa + PBXFileReference + name + ContactsPeerItem.swift + path + Sources/ContactsPeerItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29113DB98B00000000 + + isa + PBXFileReference + name + ContactsSectionHeaderAccessoryItem.swift + path + Sources/ContactsSectionHeaderAccessoryItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29597C91CD00000000 + 1DD70E29113DB98B00000000 + + + B401C979F2B7E52800000000 + + isa + PBXGroup + name + ContactsPeerItem + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299A24C4DE00000000 + + isa + PBXFileReference + name + libItemListPeerItem.a + path + libItemListPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E2997B4D6D800000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E299A24C4DE00000000 + 1DD70E295A26607D00000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29D233F68C00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E2931752C6000000000 + + isa + PBXFileReference + name + libContactsPeerItem.a + path + libContactsPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2931752C6000000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979F2B7E52800000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04597C91CD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597C91CD00000000 + + E7A30F04113DB98B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29113DB98B00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04597C91CD00000000 + E7A30F04113DB98B00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F049A24C4DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299A24C4DE00000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F04D233F68C00000000 + E7A30F049A24C4DE00000000 + E7A30F04AC43662400000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29C90DDE8D00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29A23306B700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2915C9B21900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EF2B7E52800000000 + + isa + PBXNativeTarget + name + ContactsPeerItem + productName + ContactsPeerItem + productReference + 1DD70E2931752C6000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793F2B7E52800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EF2B7E52800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793F2B7E52800000000 + + \ No newline at end of file diff --git a/submodules/ContactsPeerItem/ContactsPeerItem.xcodeproj/xcshareddata/xcschemes/ContactsPeerItem.xcscheme b/submodules/ContactsPeerItem/ContactsPeerItem.xcodeproj/xcshareddata/xcschemes/ContactsPeerItem.xcscheme new file mode 100644 index 0000000000..a28cbabdd1 --- /dev/null +++ b/submodules/ContactsPeerItem/ContactsPeerItem.xcodeproj/xcshareddata/xcschemes/ContactsPeerItem.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ContextUI/BUCK b/submodules/ContextUI/BUCK new file mode 100644 index 0000000000..5f7088f97b --- /dev/null +++ b/submodules/ContextUI/BUCK @@ -0,0 +1,18 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ContextUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TextSelectionNode:TextSelectionNode", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ContextUI/ContextUI.xcodeproj/project.pbxproj b/submodules/ContextUI/ContextUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..7471eac946 --- /dev/null +++ b/submodules/ContextUI/ContextUI.xcodeproj/project.pbxproj @@ -0,0 +1,613 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2940E1D5F200000000 + + isa + PBXFileReference + name + ContextUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/ContextUI/ContextUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2974E6B8DC00000000 + + isa + PBXFileReference + name + ContextUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/ContextUI/ContextUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29E87D643E00000000 + + isa + PBXFileReference + name + ContextUI-Release.xcconfig + path + ../../buck-out/gen/submodules/ContextUI/ContextUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2940E1D5F200000000 + 1DD70E2974E6B8DC00000000 + 1DD70E29E87D643E00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29F5E771AC00000000 + + isa + PBXFileReference + name + ContextActionNode.swift + path + Sources/ContextActionNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E296059EB3A00000000 + + isa + PBXFileReference + name + ContextActionsContainerNode.swift + path + Sources/ContextActionsContainerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2984D0F63E00000000 + + isa + PBXFileReference + name + ContextContentContainerNode.swift + path + Sources/ContextContentContainerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2972528DAC00000000 + + isa + PBXFileReference + name + ContextContentSourceNode.swift + path + Sources/ContextContentSourceNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E298B1C7CF000000000 + + isa + PBXFileReference + name + ContextController.swift + path + Sources/ContextController.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29F5E771AC00000000 + 1DD70E296059EB3A00000000 + 1DD70E2984D0F63E00000000 + 1DD70E2972528DAC00000000 + 1DD70E298B1C7CF000000000 + + + B401C9795F32B06300000000 + + isa + PBXGroup + name + ContextUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F40A586F00000000 + + isa + PBXFileReference + name + libTextSelectionNode.a + path + libTextSelectionNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + 1DD70E29F40A586F00000000 + + + 1DD70E296C9831F100000000 + + isa + PBXFileReference + name + libContextUI.a + path + libContextUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E296C9831F100000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C9795F32B06300000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04F5E771AC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F5E771AC00000000 + + E7A30F046059EB3A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296059EB3A00000000 + + E7A30F0484D0F63E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984D0F63E00000000 + + E7A30F0472528DAC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2972528DAC00000000 + + E7A30F048B1C7CF000000000 + + isa + PBXBuildFile + fileRef + 1DD70E298B1C7CF000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04F5E771AC00000000 + E7A30F046059EB3A00000000 + E7A30F0484D0F63E00000000 + E7A30F0472528DAC00000000 + E7A30F048B1C7CF000000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04F40A586F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F40A586F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04F40A586F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2940E1D5F200000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2974E6B8DC00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29E87D643E00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E5F32B06300000000 + + isa + PBXNativeTarget + name + ContextUI + productName + ContextUI + productReference + 1DD70E296C9831F100000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847935F32B06300000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E5F32B06300000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847935F32B06300000000 + + \ No newline at end of file diff --git a/submodules/ContextUI/ContextUI.xcodeproj/xcshareddata/xcschemes/ContextUI.xcscheme b/submodules/ContextUI/ContextUI.xcodeproj/xcshareddata/xcschemes/ContextUI.xcscheme new file mode 100644 index 0000000000..8685a010eb --- /dev/null +++ b/submodules/ContextUI/ContextUI.xcodeproj/xcshareddata/xcschemes/ContextUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/CounterContollerTitleView/BUCK b/submodules/CounterContollerTitleView/BUCK new file mode 100644 index 0000000000..72f2ca552a --- /dev/null +++ b/submodules/CounterContollerTitleView/BUCK @@ -0,0 +1,17 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "CounterContollerTitleView", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/CounterContollerTitleView/CounterContollerTitleView.xcodeproj/project.pbxproj b/submodules/CounterContollerTitleView/CounterContollerTitleView.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..3bbea2cd58 --- /dev/null +++ b/submodules/CounterContollerTitleView/CounterContollerTitleView.xcodeproj/project.pbxproj @@ -0,0 +1,511 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29BA75C4C600000000 + + isa + PBXFileReference + name + CounterContollerTitleView-Debug.xcconfig + path + ../../buck-out/gen/submodules/CounterContollerTitleView/CounterContollerTitleView-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D93A42B000000000 + + isa + PBXFileReference + name + CounterContollerTitleView-Profile.xcconfig + path + ../../buck-out/gen/submodules/CounterContollerTitleView/CounterContollerTitleView-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E294CD0EE1200000000 + + isa + PBXFileReference + name + CounterContollerTitleView-Release.xcconfig + path + ../../buck-out/gen/submodules/CounterContollerTitleView/CounterContollerTitleView-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29BA75C4C600000000 + 1DD70E29D93A42B000000000 + 1DD70E294CD0EE1200000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29B283177400000000 + + isa + PBXFileReference + name + CounterContollerTitleView.swift + path + Sources/CounterContollerTitleView.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29B283177400000000 + + + B401C9799DE1740F00000000 + + isa + PBXGroup + name + CounterContollerTitleView + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E2915F6A49D00000000 + + isa + PBXFileReference + name + libCounterContollerTitleView.a + path + libCounterContollerTitleView.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2915F6A49D00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C9799DE1740F00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04B283177400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B283177400000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04B283177400000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29BA75C4C600000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29D93A42B000000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E294CD0EE1200000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E9DE1740F00000000 + + isa + PBXNativeTarget + name + CounterContollerTitleView + productName + CounterContollerTitleView + productReference + 1DD70E2915F6A49D00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847939DE1740F00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E9DE1740F00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847939DE1740F00000000 + + \ No newline at end of file diff --git a/submodules/CounterContollerTitleView/CounterContollerTitleView.xcodeproj/xcshareddata/xcschemes/CounterContollerTitleView.xcscheme b/submodules/CounterContollerTitleView/CounterContollerTitleView.xcodeproj/xcshareddata/xcschemes/CounterContollerTitleView.xcscheme new file mode 100644 index 0000000000..dc056cc49c --- /dev/null +++ b/submodules/CounterContollerTitleView/CounterContollerTitleView.xcodeproj/xcshareddata/xcschemes/CounterContollerTitleView.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/CountrySelectionUI/BUCK b/submodules/CountrySelectionUI/BUCK new file mode 100644 index 0000000000..e6bfe1447c --- /dev/null +++ b/submodules/CountrySelectionUI/BUCK @@ -0,0 +1,20 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "CountrySelectionUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/SearchBarNode:SearchBarNode", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/App/App.xcodeproj/project.pbxproj b/submodules/CountrySelectionUI/CountrySelectionUI.xcodeproj/project.pbxproj similarity index 60% rename from App/App.xcodeproj/project.pbxproj rename to submodules/CountrySelectionUI/CountrySelectionUI.xcodeproj/project.pbxproj index b7693ed8f5..71be39fccc 100644 --- a/App/App.xcodeproj/project.pbxproj +++ b/submodules/CountrySelectionUI/CountrySelectionUI.xcodeproj/project.pbxproj @@ -11,209 +11,40 @@ 46 objects - 1DD70E29001F47FB00000000 + 1DD70E2959A68FAB00000000 isa PBXFileReference name - BUCK + CountrySelectionUI-Debug.xcconfig path - BUCK - sourceTree - SOURCE_ROOT - explicitFileType - text.script.python - - 1DD70E296ABF6A1200000000 - - isa - PBXFileReference - name - Empty.swift - path - SupportFiles/Empty.swift - sourceTree - SOURCE_ROOT - - 1DD70E2906C06BEE00000000 - - isa - PBXFileReference - name - Info.plist - path - Info.plist - sourceTree - ]]> - explicitFileType - text.plist - - B401C979EAB5339800000000 - - isa - PBXGroup - name - Sources - sourceTree - ]]> - children - - 1DD70E296ABF6A1200000000 - 1DD70E2906C06BEE00000000 - - - B401C9790001020100000000 - - isa - PBXGroup - name - App - sourceTree - ]]> - children - - 1DD70E29001F47FB00000000 - B401C979EAB5339800000000 - - - 1DD70E29001F47FB00000001 - - isa - PBXFileReference - name - BUCK - path - BUCK - sourceTree - SOURCE_ROOT - explicitFileType - text.script.python - - 1DD70E295BBE1B9900000000 - - isa - PBXFileReference - name - Temp.swift - path - Sources/Temp.swift - sourceTree - SOURCE_ROOT - - 1DD70E298FA05E8C00000000 - - isa - PBXFileReference - name - TempMain.m - path - Sources/TempMain.m - sourceTree - SOURCE_ROOT - lastKnownFileType - sourcecode.c.objc - - B401C979EAB5339800000001 - - isa - PBXGroup - name - Sources - sourceTree - ]]> - children - - 1DD70E295BBE1B9900000000 - 1DD70E298FA05E8C00000000 - - - B401C979C43AA77A00000000 - - isa - PBXGroup - name - AppLibrary - sourceTree - ]]> - children - - 1DD70E29001F47FB00000001 - B401C979EAB5339800000001 - - - 1DD70E29898E549400000000 - - isa - PBXFileReference - name - App-Debug.xcconfig - path - ../buck-out/gen/App/App-Debug.xcconfig + ../../buck-out/gen/submodules/CountrySelectionUI/CountrySelectionUI-Debug.xcconfig sourceTree SOURCE_ROOT explicitFileType text.xcconfig - 1DD70E29446E16FE00000000 + 1DD70E296F63E85500000000 isa PBXFileReference name - App-Profile.xcconfig + CountrySelectionUI-Profile.xcconfig path - ../buck-out/gen/App/App-Profile.xcconfig + ../../buck-out/gen/submodules/CountrySelectionUI/CountrySelectionUI-Profile.xcconfig sourceTree SOURCE_ROOT explicitFileType text.xcconfig - 1DD70E29B804C26000000000 + 1DD70E29E2FA93B700000000 isa PBXFileReference name - App-Release.xcconfig + CountrySelectionUI-Release.xcconfig path - ../buck-out/gen/App/App-Release.xcconfig - sourceTree - SOURCE_ROOT - explicitFileType - text.xcconfig - - 1DD70E294E27EDFB00000000 - - isa - PBXFileReference - name - AppLibrary-Debug.xcconfig - path - ../buck-out/gen/App/AppLibrary-Debug.xcconfig - sourceTree - SOURCE_ROOT - explicitFileType - text.xcconfig - - 1DD70E294906F2A500000000 - - isa - PBXFileReference - name - AppLibrary-Profile.xcconfig - path - ../buck-out/gen/App/AppLibrary-Profile.xcconfig - sourceTree - SOURCE_ROOT - explicitFileType - text.xcconfig - - 1DD70E29BC9D9E0700000000 - - isa - PBXFileReference - name - AppLibrary-Release.xcconfig - path - ../buck-out/gen/App/AppLibrary-Release.xcconfig + ../../buck-out/gen/submodules/CountrySelectionUI/CountrySelectionUI-Release.xcconfig sourceTree SOURCE_ROOT explicitFileType @@ -229,12 +60,9 @@ ]]> children - 1DD70E29898E549400000000 - 1DD70E29446E16FE00000000 - 1DD70E29B804C26000000000 - 1DD70E294E27EDFB00000000 - 1DD70E294906F2A500000000 - 1DD70E29BC9D9E0700000000 + 1DD70E2959A68FAB00000000 + 1DD70E296F63E85500000000 + 1DD70E29E2FA93B700000000 B401C979B781F65D00000000 @@ -250,32 +78,158 @@ B401C9792F7F325000000000 - 1DD70E297ADFB9F200000000 + 1DD70E29001F47FB00000000 isa PBXFileReference name - libAppLibrary.a + BUCK path - libAppLibrary.a + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29B790435100000000 + + isa + PBXFileReference + name + AuthorizationSequenceCountrySelectionController.swift + path + Sources/AuthorizationSequenceCountrySelectionController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2973938DF300000000 + + isa + PBXFileReference + name + AuthorizationSequenceCountrySelectionControllerNode.swift + path + Sources/AuthorizationSequenceCountrySelectionControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29373FDCD900000000 + + isa + PBXFileReference + name + CountryList.swift + path + Sources/CountryList.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29B790435100000000 + 1DD70E2973938DF300000000 + 1DD70E29373FDCD900000000 + 1DD70E291289FAA500000000 + + + B401C979C262DBCA00000000 + + isa + PBXGroup + name + CountrySelectionUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a sourceTree BUILT_PRODUCTS_DIR explicitFileType archive.ar - 1DD70E29B22505DC00000000 + 1DD70E29FF334B1F00000000 isa PBXFileReference name - libMtProtoKit.dylib + libDisplay.dylib path - libMtProtoKit.dylib + libDisplay.dylib sourceTree BUILT_PRODUCTS_DIR explicitFileType compiled.mach-o.dylib + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + 1DD70E29DB6520C800000000 isa @@ -289,6 +243,19 @@ explicitFileType compiled.mach-o.dylib + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + 1DD70E29D65BA68200000000 isa @@ -302,6 +269,71 @@ explicitFileType compiled.mach-o.dylib + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + B401C97968022A5500000000 isa @@ -312,33 +344,29 @@ ]]> children - 1DD70E297ADFB9F200000000 - 1DD70E29B22505DC00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 1DD70E29DB6520C800000000 + 1DD70E29EA9CBB5B00000000 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29F0C15F9C00000000 - 1DD70E2933D47CB400000000 + 1DD70E29016F454200000000 isa PBXFileReference name - App.app + libCountrySelectionUI.a path - App.app - sourceTree - BUILT_PRODUCTS_DIR - explicitFileType - wrapper.application - - 1DD70E297ADFB9F200000001 - - isa - PBXFileReference - name - libAppLibrary.a - path - libAppLibrary.a + libCountrySelectionUI.a sourceTree BUILT_PRODUCTS_DIR explicitFileType @@ -354,8 +382,7 @@ ]]> children - 1DD70E2933D47CB400000000 - 1DD70E297ADFB9F200000001 + 1DD70E29016F454200000000 B401C979EFB6AC4600000000 @@ -368,19 +395,39 @@ ]]> children - B401C9790001020100000000 - B401C979C43AA77A00000000 B401C979B781F65D00000000 + B401C979C262DBCA00000000 B401C97968022A5500000000 B401C979C806358400000000 - E7A30F046ABF6A1200000000 + E7A30F04B790435100000000 isa PBXBuildFile fileRef - 1DD70E296ABF6A1200000000 + 1DD70E29B790435100000000 + + E7A30F0473938DF300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2973938DF300000000 + + E7A30F04373FDCD900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29373FDCD900000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 1870857F0000000000000000 @@ -388,29 +435,18 @@ PBXSourcesBuildPhase files - E7A30F046ABF6A1200000000 + E7A30F04B790435100000000 + E7A30F0473938DF300000000 + E7A30F04373FDCD900000000 + E7A30F041289FAA500000000 - E7A30F047ADFB9F200000000 + E7A30F04FF334B1F00000000 isa PBXBuildFile fileRef - 1DD70E297ADFB9F200000000 - - E7A30F04B22505DC00000000 - - isa - PBXBuildFile - fileRef - 1DD70E29B22505DC00000000 - - E7A30F04DB6520C800000000 - - isa - PBXBuildFile - fileRef - 1DD70E29DB6520C800000000 + 1DD70E29FF334B1F00000000 E7A30F04D65BA68200000000 @@ -419,62 +455,82 @@ fileRef 1DD70E29D65BA68200000000 - 4F426D880000000000000000 - - isa - PBXFrameworksBuildPhase - files - - E7A30F047ADFB9F200000000 - E7A30F04B22505DC00000000 - E7A30F04DB6520C800000000 - E7A30F04D65BA68200000000 - - - E7A30F04B22505DC00000001 - - isa - PBXBuildFile - fileRef - 1DD70E29B22505DC00000000 - settings - - ATTRIBUTES - - CodeSignOnCopy - RemoveHeadersOnCopy - - - - E7A30F04DB6520C800000001 + E7A30F04DB6520C800000000 isa PBXBuildFile fileRef 1DD70E29DB6520C800000000 - settings - - ATTRIBUTES - - CodeSignOnCopy - RemoveHeadersOnCopy - - - E7A30F04D65BA68200000001 + E7A30F04119CDA0700000000 isa PBXBuildFile fileRef - 1DD70E29D65BA68200000000 - settings - - ATTRIBUTES - - CodeSignOnCopy - RemoveHeadersOnCopy - - + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04EA9CBB5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA9CBB5B00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 FAF5FAC90000000000000000 @@ -482,12 +538,26 @@ PBXCopyFilesBuildPhase files - E7A30F04B22505DC00000001 - E7A30F04DB6520C800000001 - E7A30F04D65BA68200000001 + E7A30F04FF334B1F00000000 + E7A30F04D65BA68200000000 + E7A30F04DB6520C800000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04BF0846EE00000000 + E7A30F04EA9CBB5B00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 dstSubfolderSpec - 10 + 16 dstPath @@ -501,7 +571,7 @@ baseConfigurationReference - 1DD70E29898E549400000000 + 1DD70E2959A68FAB00000000 4952437350C7218900000000 @@ -513,7 +583,7 @@ baseConfigurationReference - 1DD70E29446E16FE00000000 + 1DD70E296F63E85500000000 49524373A439BFE700000000 @@ -525,7 +595,7 @@ baseConfigurationReference - 1DD70E29B804C26000000000 + 1DD70E29E2FA93B700000000 218C37090000000000000000 @@ -540,86 +610,29 @@ defaultConfigurationIsVisible - E66DC04E0001020100000000 + E66DC04EC262DBCA00000000 isa PBXNativeTarget name - App + CountrySelectionUI productName - App + CountrySelectionUI productReference - 1DD70E2933D47CB400000000 + 1DD70E29016F454200000000 productType - com.apple.product-type.application + com.apple.product-type.library.static dependencies buildPhases 1870857F0000000000000000 - 4F426D880000000000000000 FAF5FAC90000000000000000 buildConfigurationList 218C37090000000000000000 - E7A30F045BBE1B9900000000 - - isa - PBXBuildFile - fileRef - 1DD70E295BBE1B9900000000 - - E7A30F048FA05E8C00000000 - - isa - PBXBuildFile - fileRef - 1DD70E298FA05E8C00000000 - - 1870857F0000000000000001 - - isa - PBXSourcesBuildPhase - files - - E7A30F045BBE1B9900000000 - E7A30F048FA05E8C00000000 - - - E7A30F04DB6520C800000002 - - isa - PBXBuildFile - fileRef - 1DD70E29DB6520C800000000 - - E7A30F04D65BA68200000002 - - isa - PBXBuildFile - fileRef - 1DD70E29D65BA68200000000 - - FAF5FAC90000000000000001 - - isa - PBXCopyFilesBuildPhase - files - - E7A30F04DB6520C800000002 - E7A30F04D65BA68200000002 - - name - Fake Swift Dependencies (Copy Files Phase) - runOnlyForDeploymentPostprocessing - 1 - dstSubfolderSpec - 16 - dstPath - - 4952437303EDA63300000001 isa @@ -629,8 +642,6 @@ buildSettings - baseConfigurationReference - 1DD70E294E27EDFB00000000 4952437350C7218900000001 @@ -641,8 +652,6 @@ buildSettings - baseConfigurationReference - 1DD70E294906F2A500000000 49524373A439BFE700000001 @@ -653,8 +662,6 @@ buildSettings - baseConfigurationReference - 1DD70E29BC9D9E0700000000 218C37090000000000000001 @@ -669,73 +676,7 @@ defaultConfigurationIsVisible - E66DC04EC43AA77A00000000 - - isa - PBXNativeTarget - name - AppLibrary - productName - AppLibrary - productReference - 1DD70E297ADFB9F200000001 - productType - com.apple.product-type.library.static - dependencies - - - buildPhases - - 1870857F0000000000000001 - FAF5FAC90000000000000001 - - buildConfigurationList - 218C37090000000000000001 - - 4952437303EDA63300000002 - - isa - XCBuildConfiguration - name - Debug - buildSettings - - - - 4952437350C7218900000002 - - isa - XCBuildConfiguration - name - Profile - buildSettings - - - - 49524373A439BFE700000002 - - isa - XCBuildConfiguration - name - Release - buildSettings - - - - 218C37090000000000000002 - - isa - XCConfigurationList - buildConfigurations - - 4952437303EDA63300000002 - 4952437350C7218900000002 - 49524373A439BFE700000002 - - defaultConfigurationIsVisible - - - 96C847930001020100000000 + 96C84793C262DBCA00000000 isa PBXProject @@ -743,11 +684,10 @@ B401C979EFB6AC4600000000 targets - E66DC04E0001020100000000 - E66DC04EC43AA77A00000000 + E66DC04EC262DBCA00000000 buildConfigurationList - 218C37090000000000000002 + 218C37090000000000000001 compatibilityVersion Xcode 3.2 attributes @@ -758,6 +698,6 @@ rootObject - 96C847930001020100000000 + 96C84793C262DBCA00000000 \ No newline at end of file diff --git a/submodules/CountrySelectionUI/CountrySelectionUI.xcodeproj/xcshareddata/xcschemes/CountrySelectionUI.xcscheme b/submodules/CountrySelectionUI/CountrySelectionUI.xcodeproj/xcshareddata/xcschemes/CountrySelectionUI.xcscheme new file mode 100644 index 0000000000..f6788e676d --- /dev/null +++ b/submodules/CountrySelectionUI/CountrySelectionUI.xcodeproj/xcshareddata/xcschemes/CountrySelectionUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/DateSelectionUI/BUCK b/submodules/DateSelectionUI/BUCK new file mode 100644 index 0000000000..a5a27f0595 --- /dev/null +++ b/submodules/DateSelectionUI/BUCK @@ -0,0 +1,20 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "DateSelectionUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/TelegramPresentationData:TelegramPresentationData", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/DateSelectionUI/DateSelectionUI.xcodeproj/project.pbxproj b/submodules/DateSelectionUI/DateSelectionUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..0813002c3d --- /dev/null +++ b/submodules/DateSelectionUI/DateSelectionUI.xcodeproj/project.pbxproj @@ -0,0 +1,709 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2908EBC60300000000 + + isa + PBXFileReference + name + DateSelectionUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/DateSelectionUI/DateSelectionUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E296234E8AD00000000 + + isa + PBXFileReference + name + DateSelectionUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/DateSelectionUI/DateSelectionUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D5CB940F00000000 + + isa + PBXFileReference + name + DateSelectionUI-Release.xcconfig + path + ../../buck-out/gen/submodules/DateSelectionUI/DateSelectionUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2908EBC60300000000 + 1DD70E296234E8AD00000000 + 1DD70E29D5CB940F00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E292FA143EC00000000 + + isa + PBXFileReference + name + DateSelectionActionSheetController.swift + path + Sources/DateSelectionActionSheetController.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E292FA143EC00000000 + + + B401C9790092C07200000000 + + isa + PBXGroup + name + DateSelectionUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E2979E58A0000000000 + + isa + PBXFileReference + name + libDateSelectionUI.a + path + libDateSelectionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2979E58A0000000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C9790092C07200000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F042FA143EC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292FA143EC00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F042FA143EC00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2908EBC60300000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E296234E8AD00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29D5CB940F00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E0092C07200000000 + + isa + PBXNativeTarget + name + DateSelectionUI + productName + DateSelectionUI + productReference + 1DD70E2979E58A0000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847930092C07200000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E0092C07200000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847930092C07200000000 + + \ No newline at end of file diff --git a/submodules/DateSelectionUI/DateSelectionUI.xcodeproj/xcshareddata/xcschemes/DateSelectionUI.xcscheme b/submodules/DateSelectionUI/DateSelectionUI.xcodeproj/xcshareddata/xcschemes/DateSelectionUI.xcscheme new file mode 100644 index 0000000000..14631eb0c4 --- /dev/null +++ b/submodules/DateSelectionUI/DateSelectionUI.xcodeproj/xcshareddata/xcschemes/DateSelectionUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/DeleteChatPeerActionSheetItem/BUCK b/submodules/DeleteChatPeerActionSheetItem/BUCK new file mode 100644 index 0000000000..d99339b04f --- /dev/null +++ b/submodules/DeleteChatPeerActionSheetItem/BUCK @@ -0,0 +1,21 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "DeleteChatPeerActionSheetItem", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/AccountContext:AccountContext", + "//submodules/AvatarNode:AvatarNode", + "//submodules/TelegramPresentationData:TelegramPresentationData", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/DeleteChatPeerActionSheetItem/DeleteChatPeerActionSheetItem.xcodeproj/project.pbxproj b/submodules/DeleteChatPeerActionSheetItem/DeleteChatPeerActionSheetItem.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..86eb202603 --- /dev/null +++ b/submodules/DeleteChatPeerActionSheetItem/DeleteChatPeerActionSheetItem.xcodeproj/project.pbxproj @@ -0,0 +1,819 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29F6225ADE00000000 + + isa + PBXFileReference + name + DeleteChatPeerActionSheetItem-Debug.xcconfig + path + ../../buck-out/gen/submodules/DeleteChatPeerActionSheetItem/DeleteChatPeerActionSheetItem-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29DC19B2C800000000 + + isa + PBXFileReference + name + DeleteChatPeerActionSheetItem-Profile.xcconfig + path + ../../buck-out/gen/submodules/DeleteChatPeerActionSheetItem/DeleteChatPeerActionSheetItem-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E294FB05E2A00000000 + + isa + PBXFileReference + name + DeleteChatPeerActionSheetItem-Release.xcconfig + path + ../../buck-out/gen/submodules/DeleteChatPeerActionSheetItem/DeleteChatPeerActionSheetItem-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29F6225ADE00000000 + 1DD70E29DC19B2C800000000 + 1DD70E294FB05E2A00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29C5E8C65C00000000 + + isa + PBXFileReference + name + DeleteChatPeerActionSheetItem.swift + path + Sources/DeleteChatPeerActionSheetItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29C5E8C65C00000000 + + + B401C979DF4E70F700000000 + + isa + PBXGroup + name + DeleteChatPeerActionSheetItem + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29CED1620500000000 + + isa + PBXFileReference + name + libDeleteChatPeerActionSheetItem.a + path + libDeleteChatPeerActionSheetItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29CED1620500000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979DF4E70F700000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04C5E8C65C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C5E8C65C00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04C5E8C65C00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29F6225ADE00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29DC19B2C800000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E294FB05E2A00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EDF4E70F700000000 + + isa + PBXNativeTarget + name + DeleteChatPeerActionSheetItem + productName + DeleteChatPeerActionSheetItem + productReference + 1DD70E29CED1620500000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793DF4E70F700000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EDF4E70F700000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793DF4E70F700000000 + + \ No newline at end of file diff --git a/submodules/DeleteChatPeerActionSheetItem/DeleteChatPeerActionSheetItem.xcodeproj/xcshareddata/xcschemes/DeleteChatPeerActionSheetItem.xcscheme b/submodules/DeleteChatPeerActionSheetItem/DeleteChatPeerActionSheetItem.xcodeproj/xcshareddata/xcschemes/DeleteChatPeerActionSheetItem.xcscheme new file mode 100644 index 0000000000..293ab4be76 --- /dev/null +++ b/submodules/DeleteChatPeerActionSheetItem/DeleteChatPeerActionSheetItem.xcodeproj/xcshareddata/xcschemes/DeleteChatPeerActionSheetItem.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/DeviceAccess/DeviceAccess.xcodeproj/project.pbxproj b/submodules/DeviceAccess/DeviceAccess.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..e763d92a35 --- /dev/null +++ b/submodules/DeviceAccess/DeviceAccess.xcodeproj/project.pbxproj @@ -0,0 +1,709 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29173399FB00000000 + + isa + PBXFileReference + name + DeviceAccess-Debug.xcconfig + path + ../../buck-out/gen/submodules/DeviceAccess/DeviceAccess-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29FDD79EA500000000 + + isa + PBXFileReference + name + DeviceAccess-Profile.xcconfig + path + ../../buck-out/gen/submodules/DeviceAccess/DeviceAccess-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29716E4A0700000000 + + isa + PBXFileReference + name + DeviceAccess-Release.xcconfig + path + ../../buck-out/gen/submodules/DeviceAccess/DeviceAccess-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29173399FB00000000 + 1DD70E29FDD79EA500000000 + 1DD70E29716E4A0700000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E299307A29F00000000 + + isa + PBXFileReference + name + DeviceAccess.swift + path + Sources/DeviceAccess.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E299307A29F00000000 + + + B401C979B2CC7B7A00000000 + + isa + PBXGroup + name + DeviceAccess + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E292417E0B200000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979B2CC7B7A00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F049307A29F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299307A29F00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F049307A29F00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29173399FB00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29FDD79EA500000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29716E4A0700000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EB2CC7B7A00000000 + + isa + PBXNativeTarget + name + DeviceAccess + productName + DeviceAccess + productReference + 1DD70E292417E0B200000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793B2CC7B7A00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EB2CC7B7A00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793B2CC7B7A00000000 + + \ No newline at end of file diff --git a/submodules/DeviceAccess/DeviceAccess.xcodeproj/xcshareddata/xcschemes/DeviceAccess.xcscheme b/submodules/DeviceAccess/DeviceAccess.xcodeproj/xcshareddata/xcschemes/DeviceAccess.xcscheme new file mode 100644 index 0000000000..b8f2acc2fe --- /dev/null +++ b/submodules/DeviceAccess/DeviceAccess.xcodeproj/xcshareddata/xcschemes/DeviceAccess.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/DeviceLocationManager/DeviceLocationManager.xcodeproj/project.pbxproj b/submodules/DeviceLocationManager/DeviceLocationManager.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..5ad62a3c17 --- /dev/null +++ b/submodules/DeviceLocationManager/DeviceLocationManager.xcodeproj/project.pbxproj @@ -0,0 +1,379 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2906FD839300000000 + + isa + PBXFileReference + name + DeviceLocationManager-Debug.xcconfig + path + ../../buck-out/gen/submodules/DeviceLocationManager/DeviceLocationManager-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2922CD823D00000000 + + isa + PBXFileReference + name + DeviceLocationManager-Profile.xcconfig + path + ../../buck-out/gen/submodules/DeviceLocationManager/DeviceLocationManager-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2996642D9F00000000 + + isa + PBXFileReference + name + DeviceLocationManager-Release.xcconfig + path + ../../buck-out/gen/submodules/DeviceLocationManager/DeviceLocationManager-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2906FD839300000000 + 1DD70E2922CD823D00000000 + 1DD70E2996642D9F00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2901DC0E0700000000 + + isa + PBXFileReference + name + DeviceLocationManager.swift + path + Sources/DeviceLocationManager.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2901DC0E0700000000 + + + B401C979468F94E200000000 + + isa + PBXGroup + name + DeviceLocationManager + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29D65BA68200000000 + + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E295915423000000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979468F94E200000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F0401DC0E0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E2901DC0E0700000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0401DC0E0700000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2906FD839300000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2922CD823D00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2996642D9F00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E468F94E200000000 + + isa + PBXNativeTarget + name + DeviceLocationManager + productName + DeviceLocationManager + productReference + 1DD70E295915423000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793468F94E200000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E468F94E200000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793468F94E200000000 + + \ No newline at end of file diff --git a/submodules/DeviceLocationManager/DeviceLocationManager.xcodeproj/xcshareddata/xcschemes/DeviceLocationManager.xcscheme b/submodules/DeviceLocationManager/DeviceLocationManager.xcodeproj/xcshareddata/xcschemes/DeviceLocationManager.xcscheme new file mode 100644 index 0000000000..161da0e645 --- /dev/null +++ b/submodules/DeviceLocationManager/DeviceLocationManager.xcodeproj/xcshareddata/xcschemes/DeviceLocationManager.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/DeviceProximity/DeviceProximity.xcodeproj/project.pbxproj b/submodules/DeviceProximity/DeviceProximity.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..28b2ed55c4 --- /dev/null +++ b/submodules/DeviceProximity/DeviceProximity.xcodeproj/project.pbxproj @@ -0,0 +1,379 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29E565E6EC00000000 + + isa + PBXFileReference + name + DeviceProximity-Debug.xcconfig + path + ../../buck-out/gen/submodules/DeviceProximity/DeviceProximity-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2908AA735600000000 + + isa + PBXFileReference + name + DeviceProximity-Profile.xcconfig + path + ../../buck-out/gen/submodules/DeviceProximity/DeviceProximity-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E297C411EB800000000 + + isa + PBXFileReference + name + DeviceProximity-Release.xcconfig + path + ../../buck-out/gen/submodules/DeviceProximity/DeviceProximity-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29E565E6EC00000000 + 1DD70E2908AA735600000000 + 1DD70E297C411EB800000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29B136E6D900000000 + + isa + PBXFileReference + name + DeviceProximityBag.h + path + Sources/DeviceProximityBag.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29B136E6DE00000000 + + isa + PBXFileReference + name + DeviceProximityBag.m + path + Sources/DeviceProximityBag.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2903AAE1BE00000000 + + isa + PBXFileReference + name + DeviceProximityManager.h + path + Sources/DeviceProximityManager.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2903AAE1C300000000 + + isa + PBXFileReference + name + DeviceProximityManager.m + path + Sources/DeviceProximityManager.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29B136E6D900000000 + 1DD70E29B136E6DE00000000 + 1DD70E2903AAE1BE00000000 + 1DD70E2903AAE1C300000000 + + + B401C97962B20AA900000000 + + isa + PBXGroup + name + DeviceProximity + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29D15B227700000000 + + isa + PBXFileReference + name + libDeviceProximity.a + path + libDeviceProximity.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29D15B227700000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97962B20AA900000000 + B401C979C806358400000000 + + + E7A30F04B136E6DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B136E6DE00000000 + + E7A30F0403AAE1C300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2903AAE1C300000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04B136E6DE00000000 + E7A30F0403AAE1C300000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29E565E6EC00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2908AA735600000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E297C411EB800000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E62B20AA900000000 + + isa + PBXNativeTarget + name + DeviceProximity + productName + DeviceProximity + productReference + 1DD70E29D15B227700000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479362B20AA900000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E62B20AA900000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479362B20AA900000000 + + \ No newline at end of file diff --git a/submodules/DeviceProximity/DeviceProximity.xcodeproj/xcshareddata/xcschemes/DeviceProximity.xcscheme b/submodules/DeviceProximity/DeviceProximity.xcodeproj/xcshareddata/xcschemes/DeviceProximity.xcscheme new file mode 100644 index 0000000000..8fe0a5b6a9 --- /dev/null +++ b/submodules/DeviceProximity/DeviceProximity.xcodeproj/xcshareddata/xcschemes/DeviceProximity.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/DirectionalPanGesture/BUCK b/submodules/DirectionalPanGesture/BUCK new file mode 100644 index 0000000000..c2ce482cf9 --- /dev/null +++ b/submodules/DirectionalPanGesture/BUCK @@ -0,0 +1,12 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "DirectionalPanGesture", + srcs = glob([ + "Sources/**/*.swift", + ]), + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/DirectionalPanGesture/DirectionalPanGesture.xcodeproj/project.pbxproj b/submodules/DirectionalPanGesture/DirectionalPanGesture.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..50f230dc32 --- /dev/null +++ b/submodules/DirectionalPanGesture/DirectionalPanGesture.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29D65B589F00000000 + + isa + PBXFileReference + name + DirectionalPanGesture-Debug.xcconfig + path + ../../buck-out/gen/submodules/DirectionalPanGesture/DirectionalPanGesture-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29920A444900000000 + + isa + PBXFileReference + name + DirectionalPanGesture-Profile.xcconfig + path + ../../buck-out/gen/submodules/DirectionalPanGesture/DirectionalPanGesture-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2905A0EFAB00000000 + + isa + PBXFileReference + name + DirectionalPanGesture-Release.xcconfig + path + ../../buck-out/gen/submodules/DirectionalPanGesture/DirectionalPanGesture-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29D65B589F00000000 + 1DD70E29920A444900000000 + 1DD70E2905A0EFAB00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2913FC0ABF00000000 + + isa + PBXFileReference + name + DirectionalPanGestureRecognizer.swift + path + Sources/DirectionalPanGestureRecognizer.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2913FC0ABF00000000 + + + B401C9796CDBC95600000000 + + isa + PBXGroup + name + DirectionalPanGesture + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E291D2629A400000000 + + isa + PBXFileReference + name + libDirectionalPanGesture.a + path + libDirectionalPanGesture.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E291D2629A400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C9796CDBC95600000000 + B401C979C806358400000000 + + + E7A30F0413FC0ABF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2913FC0ABF00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0413FC0ABF00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29D65B589F00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29920A444900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2905A0EFAB00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E6CDBC95600000000 + + isa + PBXNativeTarget + name + DirectionalPanGesture + productName + DirectionalPanGesture + productReference + 1DD70E291D2629A400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847936CDBC95600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E6CDBC95600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847936CDBC95600000000 + + \ No newline at end of file diff --git a/submodules/DirectionalPanGesture/DirectionalPanGesture.xcodeproj/xcshareddata/xcschemes/DirectionalPanGesture.xcscheme b/submodules/DirectionalPanGesture/DirectionalPanGesture.xcodeproj/xcshareddata/xcschemes/DirectionalPanGesture.xcscheme new file mode 100644 index 0000000000..91048d9647 --- /dev/null +++ b/submodules/DirectionalPanGesture/DirectionalPanGesture.xcodeproj/xcshareddata/xcschemes/DirectionalPanGesture.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/EncryptionKeyVisualization/BUCK b/submodules/EncryptionKeyVisualization/BUCK index 438d1d59ee..78c401a40d 100644 --- a/submodules/EncryptionKeyVisualization/BUCK +++ b/submodules/EncryptionKeyVisualization/BUCK @@ -3,6 +3,7 @@ load("//Config:buck_rule_macros.bzl", "static_library") static_library( name = "EncryptionKeyVisualization", srcs = glob([ + "Sources/*.swift", "Sources/*.m", ]), headers = glob([ diff --git a/submodules/EncryptionKeyVisualization/EncryptionKeyVisualization.xcodeproj/project.pbxproj b/submodules/EncryptionKeyVisualization/EncryptionKeyVisualization.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..681696d1d7 --- /dev/null +++ b/submodules/EncryptionKeyVisualization/EncryptionKeyVisualization.xcodeproj/project.pbxproj @@ -0,0 +1,415 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29FB488CED00000000 + + isa + PBXFileReference + name + EncryptionKeyVisualization-Debug.xcconfig + path + ../../buck-out/gen/submodules/EncryptionKeyVisualization/EncryptionKeyVisualization-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29307B9D1700000000 + + isa + PBXFileReference + name + EncryptionKeyVisualization-Profile.xcconfig + path + ../../buck-out/gen/submodules/EncryptionKeyVisualization/EncryptionKeyVisualization-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A412487900000000 + + isa + PBXFileReference + name + EncryptionKeyVisualization-Release.xcconfig + path + ../../buck-out/gen/submodules/EncryptionKeyVisualization/EncryptionKeyVisualization-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29FB488CED00000000 + 1DD70E29307B9D1700000000 + 1DD70E29A412487900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29BFABA62700000000 + + isa + PBXFileReference + name + SecretChatKeyVisualization.h + path + Sources/SecretChatKeyVisualization.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29BFABA62C00000000 + + isa + PBXFileReference + name + SecretChatKeyVisualization.m + path + Sources/SecretChatKeyVisualization.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E291860EC5200000000 + + isa + PBXFileReference + name + SecretChatKeyVisualization.swift + path + Sources/SecretChatKeyVisualization.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29BFABA62700000000 + 1DD70E29BFABA62C00000000 + 1DD70E291860EC5200000000 + + + B401C979BC0242C800000000 + + isa + PBXGroup + name + EncryptionKeyVisualization + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29119CDA0700000000 + + + 1DD70E29AE190FC000000000 + + isa + PBXFileReference + name + libEncryptionKeyVisualization.a + path + libEncryptionKeyVisualization.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29AE190FC000000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979BC0242C800000000 + B401C97968022A5500000000 + B401C979C806358400000000 + + + E7A30F04BFABA62C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BFABA62C00000000 + + E7A30F041860EC5200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291860EC5200000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04BFABA62C00000000 + E7A30F041860EC5200000000 + + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04119CDA0700000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29FB488CED00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29307B9D1700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29A412487900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EBC0242C800000000 + + isa + PBXNativeTarget + name + EncryptionKeyVisualization + productName + EncryptionKeyVisualization + productReference + 1DD70E29AE190FC000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793BC0242C800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EBC0242C800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793BC0242C800000000 + + \ No newline at end of file diff --git a/submodules/EncryptionKeyVisualization/EncryptionKeyVisualization.xcodeproj/xcshareddata/xcschemes/EncryptionKeyVisualization.xcscheme b/submodules/EncryptionKeyVisualization/EncryptionKeyVisualization.xcodeproj/xcshareddata/xcschemes/EncryptionKeyVisualization.xcscheme new file mode 100644 index 0000000000..3346001747 --- /dev/null +++ b/submodules/EncryptionKeyVisualization/EncryptionKeyVisualization.xcodeproj/xcshareddata/xcschemes/EncryptionKeyVisualization.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/GZip/GZip.xcodeproj/project.pbxproj b/submodules/GZip/GZip.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..d336fc1624 --- /dev/null +++ b/submodules/GZip/GZip.xcodeproj/project.pbxproj @@ -0,0 +1,343 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E299169741B00000000 + + isa + PBXFileReference + name + GZip-Debug.xcconfig + path + ../../buck-out/gen/submodules/GZip/GZip-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29C1FF70C500000000 + + isa + PBXFileReference + name + GZip-Profile.xcconfig + path + ../../buck-out/gen/submodules/GZip/GZip-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2935961C2700000000 + + isa + PBXFileReference + name + GZip-Release.xcconfig + path + ../../buck-out/gen/submodules/GZip/GZip-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E299169741B00000000 + 1DD70E29C1FF70C500000000 + 1DD70E2935961C2700000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E297E4DBCD400000000 + + isa + PBXFileReference + name + GZip.h + path + Sources/GZip.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E297E4DBCD900000000 + + isa + PBXFileReference + name + GZip.m + path + Sources/GZip.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E297E4DBCD400000000 + 1DD70E297E4DBCD900000000 + + + B401C9790021A55A00000000 + + isa + PBXGroup + name + GZip + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29E6AAA79200000000 + + isa + PBXFileReference + name + libGZip.a + path + libGZip.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29E6AAA79200000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C9790021A55A00000000 + B401C979C806358400000000 + + + E7A30F047E4DBCD900000000 + + isa + PBXBuildFile + fileRef + 1DD70E297E4DBCD900000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F047E4DBCD900000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E299169741B00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29C1FF70C500000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2935961C2700000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E0021A55A00000000 + + isa + PBXNativeTarget + name + GZip + productName + GZip + productReference + 1DD70E29E6AAA79200000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847930021A55A00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E0021A55A00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847930021A55A00000000 + + \ No newline at end of file diff --git a/submodules/GZip/GZip.xcodeproj/xcshareddata/xcschemes/GZip.xcscheme b/submodules/GZip/GZip.xcodeproj/xcshareddata/xcschemes/GZip.xcscheme new file mode 100644 index 0000000000..35b84aa2d2 --- /dev/null +++ b/submodules/GZip/GZip.xcodeproj/xcshareddata/xcschemes/GZip.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/GalleryUI/BUCK b/submodules/GalleryUI/BUCK new file mode 100644 index 0000000000..819a42cee6 --- /dev/null +++ b/submodules/GalleryUI/BUCK @@ -0,0 +1,31 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "GalleryUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TextFormat:TextFormat", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramUniversalVideoContent:TelegramUniversalVideoContent", + "//submodules/WebsiteType:WebsiteType", + "//submodules/ScreenCaptureDetection:ScreenCaptureDetection", + "//submodules/OpenInExternalAppUI:OpenInExternalAppUI", + "//submodules/ShareController:ShareController", + "//submodules/SwipeToDismissGesture:SwipeToDismissGesture", + "//submodules/CheckNode:CheckNode", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/QuickLook.framework", + "$SDKROOT/System/Library/Frameworks/SafariServices.framework", + ], +) diff --git a/submodules/GalleryUI/GalleryUI.xcodeproj/project.pbxproj b/submodules/GalleryUI/GalleryUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..d871224da1 --- /dev/null +++ b/submodules/GalleryUI/GalleryUI.xcodeproj/project.pbxproj @@ -0,0 +1,1800 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29B539AEAF00000000 + + isa + PBXFileReference + name + GalleryUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/GalleryUI/GalleryUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2932AB565900000000 + + isa + PBXFileReference + name + GalleryUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/GalleryUI/GalleryUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A64201BB00000000 + + isa + PBXFileReference + name + GalleryUI-Release.xcconfig + path + ../../buck-out/gen/submodules/GalleryUI/GalleryUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29B539AEAF00000000 + 1DD70E2932AB565900000000 + 1DD70E29A64201BB00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AF00DC4900000000 + + isa + PBXFileReference + name + libOpenInExternalAppUI.a + path + libOpenInExternalAppUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CF967D4300000000 + + isa + PBXFileReference + name + libScreenCaptureDetection.a + path + libScreenCaptureDetection.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E296A346AC200000000 + + isa + PBXFileReference + name + libSwipeToDismissGesture.a + path + libSwipeToDismissGesture.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C7E0F39600000000 + + isa + PBXFileReference + name + libTelegramUniversalVideoContent.a + path + libTelegramUniversalVideoContent.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A6BAE8A300000000 + + isa + PBXFileReference + name + libWebsiteType.a + path + libWebsiteType.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E297AB043C800000000 + 1DD70E2997B4D6D800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29AF00DC4900000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29CF967D4300000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E296A346AC200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29C7E0F39600000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + 1DD70E29A6BAE8A300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2958777ADE00000000 + + isa + PBXFileReference + name + ChatAnimationGalleryItem.swift + path + Sources/Items/ChatAnimationGalleryItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29916337F700000000 + + isa + PBXFileReference + name + ChatDocumentGalleryItem.swift + path + Sources/Items/ChatDocumentGalleryItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E299CCC16AB00000000 + + isa + PBXFileReference + name + ChatExternalFileGalleryItem.swift + path + Sources/Items/ChatExternalFileGalleryItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B48701E700000000 + + isa + PBXFileReference + name + ChatImageGalleryItem.swift + path + Sources/Items/ChatImageGalleryItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E299E33F93A00000000 + + isa + PBXFileReference + name + UniversalVideoGalleryItem.swift + path + Sources/Items/UniversalVideoGalleryItem.swift + sourceTree + SOURCE_ROOT + + B401C979043AF7A000000000 + + isa + PBXGroup + name + Items + path + Sources/Items + sourceTree + SOURCE_ROOT + children + + 1DD70E2958777ADE00000000 + 1DD70E29916337F700000000 + 1DD70E299CCC16AB00000000 + 1DD70E29B48701E700000000 + 1DD70E299E33F93A00000000 + + + 1DD70E2978DEFDFE00000000 + + isa + PBXFileReference + name + ChatItemGalleryFooterContentNode.swift + path + Sources/ChatItemGalleryFooterContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2975D0EAEC00000000 + + isa + PBXFileReference + name + ChatVideoGalleryItemScrubberView.swift + path + Sources/ChatVideoGalleryItemScrubberView.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FA38189300000000 + + isa + PBXFileReference + name + GalleryController.swift + path + Sources/GalleryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C7EAF23500000000 + + isa + PBXFileReference + name + GalleryControllerNode.swift + path + Sources/GalleryControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E35656AE00000000 + + isa + PBXFileReference + name + GalleryControllerPresentationState.swift + path + Sources/GalleryControllerPresentationState.swift + sourceTree + SOURCE_ROOT + + 1DD70E2947F0409300000000 + + isa + PBXFileReference + name + GalleryFooterContentNode.swift + path + Sources/GalleryFooterContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E0140A7400000000 + + isa + PBXFileReference + name + GalleryFooterNode.swift + path + Sources/GalleryFooterNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E299F45E04A00000000 + + isa + PBXFileReference + name + GalleryItem.swift + path + Sources/GalleryItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E291CD0066C00000000 + + isa + PBXFileReference + name + GalleryItemNode.swift + path + Sources/GalleryItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D073D76100000000 + + isa + PBXFileReference + name + GalleryItemTransitionNode.swift + path + Sources/GalleryItemTransitionNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E299611168900000000 + + isa + PBXFileReference + name + GalleryNavigationCheckNode.swift + path + Sources/GalleryNavigationCheckNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2962CB955A00000000 + + isa + PBXFileReference + name + GalleryNavigationRecipientNode.swift + path + Sources/GalleryNavigationRecipientNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E291F7B21B800000000 + + isa + PBXFileReference + name + GalleryPagerNode.swift + path + Sources/GalleryPagerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E32A664E00000000 + + isa + PBXFileReference + name + GalleryThumbnailContainerNode.swift + path + Sources/GalleryThumbnailContainerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C9CBB5DE00000000 + + isa + PBXFileReference + name + GalleryVideoDecoration.swift + path + Sources/GalleryVideoDecoration.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BA1DBF9500000000 + + isa + PBXFileReference + name + SecretMediaPreviewController.swift + path + Sources/SecretMediaPreviewController.swift + sourceTree + SOURCE_ROOT + + 1DD70E298073135100000000 + + isa + PBXFileReference + name + SecretMediaPreviewFooterContentNode.swift + path + Sources/SecretMediaPreviewFooterContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29AE0E120000000000 + + isa + PBXFileReference + name + ZoomableContentGalleryItemNode.swift + path + Sources/ZoomableContentGalleryItemNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C979043AF7A000000000 + 1DD70E2978DEFDFE00000000 + 1DD70E2975D0EAEC00000000 + 1DD70E291289FAA500000000 + 1DD70E29FA38189300000000 + 1DD70E29C7EAF23500000000 + 1DD70E29E35656AE00000000 + 1DD70E2947F0409300000000 + 1DD70E29E0140A7400000000 + 1DD70E299F45E04A00000000 + 1DD70E291CD0066C00000000 + 1DD70E29D073D76100000000 + 1DD70E299611168900000000 + 1DD70E2962CB955A00000000 + 1DD70E291F7B21B800000000 + 1DD70E29E32A664E00000000 + 1DD70E29C9CBB5DE00000000 + 1DD70E29BA1DBF9500000000 + 1DD70E298073135100000000 + 1DD70E29AE0E120000000000 + + + B401C9798A7E154600000000 + + isa + PBXGroup + name + GalleryUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29F29DEA1400000000 + + isa + PBXFileReference + name + libGalleryUI.a + path + libGalleryUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29F29DEA1400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9798A7E154600000000 + B401C979C806358400000000 + + + E7A30F0458777ADE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2958777ADE00000000 + + E7A30F04916337F700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29916337F700000000 + + E7A30F049CCC16AB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299CCC16AB00000000 + + E7A30F04B48701E700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B48701E700000000 + + E7A30F049E33F93A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299E33F93A00000000 + + E7A30F0478DEFDFE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2978DEFDFE00000000 + + E7A30F0475D0EAEC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2975D0EAEC00000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04FA38189300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FA38189300000000 + + E7A30F04C7EAF23500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7EAF23500000000 + + E7A30F04E35656AE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E35656AE00000000 + + E7A30F0447F0409300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2947F0409300000000 + + E7A30F04E0140A7400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E0140A7400000000 + + E7A30F049F45E04A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299F45E04A00000000 + + E7A30F041CD0066C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291CD0066C00000000 + + E7A30F04D073D76100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D073D76100000000 + + E7A30F049611168900000000 + + isa + PBXBuildFile + fileRef + 1DD70E299611168900000000 + + E7A30F0462CB955A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2962CB955A00000000 + + E7A30F041F7B21B800000000 + + isa + PBXBuildFile + fileRef + 1DD70E291F7B21B800000000 + + E7A30F04E32A664E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E32A664E00000000 + + E7A30F04C9CBB5DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C9CBB5DE00000000 + + E7A30F04BA1DBF9500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA1DBF9500000000 + + E7A30F048073135100000000 + + isa + PBXBuildFile + fileRef + 1DD70E298073135100000000 + + E7A30F04AE0E120000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AE0E120000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0458777ADE00000000 + E7A30F04916337F700000000 + E7A30F049CCC16AB00000000 + E7A30F04B48701E700000000 + E7A30F049E33F93A00000000 + E7A30F0478DEFDFE00000000 + E7A30F0475D0EAEC00000000 + E7A30F041289FAA500000000 + E7A30F04FA38189300000000 + E7A30F04C7EAF23500000000 + E7A30F04E35656AE00000000 + E7A30F0447F0409300000000 + E7A30F04E0140A7400000000 + E7A30F049F45E04A00000000 + E7A30F041CD0066C00000000 + E7A30F04D073D76100000000 + E7A30F049611168900000000 + E7A30F0462CB955A00000000 + E7A30F041F7B21B800000000 + E7A30F04E32A664E00000000 + E7A30F04C9CBB5DE00000000 + E7A30F04BA1DBF9500000000 + E7A30F048073135100000000 + E7A30F04AE0E120000000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F04AF00DC4900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AF00DC4900000000 + + E7A30F04CF967D4300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CF967D4300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + E7A30F046A346AC200000000 + + isa + PBXBuildFile + fileRef + 1DD70E296A346AC200000000 + + E7A30F04C7E0F39600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7E0F39600000000 + + E7A30F04A6BAE8A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A6BAE8A300000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F0497B4D6D800000000 + E7A30F04D6F14E1000000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04CD296A8300000000 + E7A30F04490601EB00000000 + E7A30F04597BAFBB00000000 + E7A30F04AF00DC4900000000 + E7A30F04CF967D4300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F041E16CC6C00000000 + E7A30F04BF0846EE00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F04AC43662400000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04D233F68C00000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F0481AE180900000000 + E7A30F046A346AC200000000 + E7A30F04C7E0F39600000000 + E7A30F04A6BAE8A300000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29B539AEAF00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2932AB565900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29A64201BB00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E8A7E154600000000 + + isa + PBXNativeTarget + name + GalleryUI + productName + GalleryUI + productReference + 1DD70E29F29DEA1400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847938A7E154600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E8A7E154600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847938A7E154600000000 + + \ No newline at end of file diff --git a/submodules/GalleryUI/GalleryUI.xcodeproj/xcshareddata/xcschemes/GalleryUI.xcscheme b/submodules/GalleryUI/GalleryUI.xcodeproj/xcshareddata/xcschemes/GalleryUI.xcscheme new file mode 100644 index 0000000000..1df6a944ee --- /dev/null +++ b/submodules/GalleryUI/GalleryUI.xcodeproj/xcshareddata/xcschemes/GalleryUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/GameUI/BUCK b/submodules/GameUI/BUCK new file mode 100644 index 0000000000..3d78cade3a --- /dev/null +++ b/submodules/GameUI/BUCK @@ -0,0 +1,23 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "GameUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/ShareController:ShareController", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/WebKit.framework", + ], +) diff --git a/submodules/GameUI/GameUI.xcodeproj/project.pbxproj b/submodules/GameUI/GameUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..1ce5c8d7c4 --- /dev/null +++ b/submodules/GameUI/GameUI.xcodeproj/project.pbxproj @@ -0,0 +1,1167 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E292338D9CF00000000 + + isa + PBXFileReference + name + GameUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/GameUI/GameUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E291D8C397900000000 + + isa + PBXFileReference + name + GameUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/GameUI/GameUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E299122E4DB00000000 + + isa + PBXFileReference + name + GameUI-Release.xcconfig + path + ../../buck-out/gen/submodules/GameUI/GameUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E292338D9CF00000000 + 1DD70E291D8C397900000000 + 1DD70E299122E4DB00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E297AB043C800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E294817097300000000 + + isa + PBXFileReference + name + GameController.swift + path + Sources/GameController.swift + sourceTree + SOURCE_ROOT + + 1DD70E293926731500000000 + + isa + PBXFileReference + name + GameControllerNode.swift + path + Sources/GameControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2985ADA6D400000000 + + isa + PBXFileReference + name + GameControllerTitleView.swift + path + Sources/GameControllerTitleView.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E294817097300000000 + 1DD70E293926731500000000 + 1DD70E2985ADA6D400000000 + + + B401C9797EB20E2600000000 + + isa + PBXGroup + name + GameUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E295F34701E00000000 + + isa + PBXFileReference + name + libGameUI.a + path + libGameUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E295F34701E00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9797EB20E2600000000 + B401C979C806358400000000 + + + E7A30F044817097300000000 + + isa + PBXBuildFile + fileRef + 1DD70E294817097300000000 + + E7A30F043926731500000000 + + isa + PBXBuildFile + fileRef + 1DD70E293926731500000000 + + E7A30F0485ADA6D400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2985ADA6D400000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F044817097300000000 + E7A30F043926731500000000 + E7A30F0485ADA6D400000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F041E16CC6C00000000 + E7A30F04BF0846EE00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F04AC43662400000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04D233F68C00000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F04597BAFBB00000000 + E7A30F0481AE180900000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E292338D9CF00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E291D8C397900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E299122E4DB00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E7EB20E2600000000 + + isa + PBXNativeTarget + name + GameUI + productName + GameUI + productReference + 1DD70E295F34701E00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847937EB20E2600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E7EB20E2600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847937EB20E2600000000 + + \ No newline at end of file diff --git a/submodules/GameUI/GameUI.xcodeproj/xcshareddata/xcschemes/GameUI.xcscheme b/submodules/GameUI/GameUI.xcodeproj/xcshareddata/xcschemes/GameUI.xcscheme new file mode 100644 index 0000000000..18bd222bb6 --- /dev/null +++ b/submodules/GameUI/GameUI.xcodeproj/xcshareddata/xcschemes/GameUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/Geocoding/Geocoding.xcodeproj/project.pbxproj b/submodules/Geocoding/Geocoding.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..e7b042a299 --- /dev/null +++ b/submodules/Geocoding/Geocoding.xcodeproj/project.pbxproj @@ -0,0 +1,379 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29D3C2357A00000000 + + isa + PBXFileReference + name + Geocoding-Debug.xcconfig + path + ../../buck-out/gen/submodules/Geocoding/Geocoding-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D12D566400000000 + + isa + PBXFileReference + name + Geocoding-Profile.xcconfig + path + ../../buck-out/gen/submodules/Geocoding/Geocoding-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2944C401C600000000 + + isa + PBXFileReference + name + Geocoding-Release.xcconfig + path + ../../buck-out/gen/submodules/Geocoding/Geocoding-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29D3C2357A00000000 + 1DD70E29D12D566400000000 + 1DD70E2944C401C600000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29D65BA68200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2979374C4000000000 + + isa + PBXFileReference + name + Geocoding.swift + path + Sources/Geocoding.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2979374C4000000000 + + + B401C979B9E031DB00000000 + + isa + PBXGroup + name + Geocoding + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29D1EB356900000000 + + isa + PBXFileReference + name + libGeocoding.a + path + libGeocoding.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29D1EB356900000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979B9E031DB00000000 + B401C979C806358400000000 + + + E7A30F0479374C4000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2979374C4000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0479374C4000000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29D3C2357A00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29D12D566400000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2944C401C600000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EB9E031DB00000000 + + isa + PBXNativeTarget + name + Geocoding + productName + Geocoding + productReference + 1DD70E29D1EB356900000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793B9E031DB00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EB9E031DB00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793B9E031DB00000000 + + \ No newline at end of file diff --git a/submodules/Geocoding/Geocoding.xcodeproj/xcshareddata/xcschemes/Geocoding.xcscheme b/submodules/Geocoding/Geocoding.xcodeproj/xcshareddata/xcschemes/Geocoding.xcscheme new file mode 100644 index 0000000000..2225e56d32 --- /dev/null +++ b/submodules/Geocoding/Geocoding.xcodeproj/xcshareddata/xcschemes/Geocoding.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/GridMessageSelectionNode/BUCK b/submodules/GridMessageSelectionNode/BUCK new file mode 100644 index 0000000000..47bdff99c9 --- /dev/null +++ b/submodules/GridMessageSelectionNode/BUCK @@ -0,0 +1,18 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "GridMessageSelectionNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/CheckNode:CheckNode", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/GridMessageSelectionNode/GridMessageSelectionNode.xcodeproj/project.pbxproj b/submodules/GridMessageSelectionNode/GridMessageSelectionNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..a067b95090 --- /dev/null +++ b/submodules/GridMessageSelectionNode/GridMessageSelectionNode.xcodeproj/project.pbxproj @@ -0,0 +1,533 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29B8D46BA800000000 + + isa + PBXFileReference + name + GridMessageSelectionNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/GridMessageSelectionNode/GridMessageSelectionNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29BA8AB91200000000 + + isa + PBXFileReference + name + GridMessageSelectionNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/GridMessageSelectionNode/GridMessageSelectionNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292E21647400000000 + + isa + PBXFileReference + name + GridMessageSelectionNode-Release.xcconfig + path + ../../buck-out/gen/submodules/GridMessageSelectionNode/GridMessageSelectionNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29B8D46BA800000000 + 1DD70E29BA8AB91200000000 + 1DD70E292E21647400000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E2997B4D6D800000000 + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29689CCA5200000000 + + isa + PBXFileReference + name + GridMessageSelectionNode.swift + path + Sources/GridMessageSelectionNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29689CCA5200000000 + + + B401C9798A7A256D00000000 + + isa + PBXGroup + name + GridMessageSelectionNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29F8FF5A6500000000 + + isa + PBXFileReference + name + libGridMessageSelectionNode.a + path + libGridMessageSelectionNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29F8FF5A6500000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9798A7A256D00000000 + B401C979C806358400000000 + + + E7A30F04689CCA5200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29689CCA5200000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04689CCA5200000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F0497B4D6D800000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29B8D46BA800000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29BA8AB91200000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E292E21647400000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E8A7A256D00000000 + + isa + PBXNativeTarget + name + GridMessageSelectionNode + productName + GridMessageSelectionNode + productReference + 1DD70E29F8FF5A6500000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847938A7A256D00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E8A7A256D00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847938A7A256D00000000 + + \ No newline at end of file diff --git a/submodules/GridMessageSelectionNode/GridMessageSelectionNode.xcodeproj/xcshareddata/xcschemes/GridMessageSelectionNode.xcscheme b/submodules/GridMessageSelectionNode/GridMessageSelectionNode.xcodeproj/xcshareddata/xcschemes/GridMessageSelectionNode.xcscheme new file mode 100644 index 0000000000..5f9d87477b --- /dev/null +++ b/submodules/GridMessageSelectionNode/GridMessageSelectionNode.xcodeproj/xcshareddata/xcschemes/GridMessageSelectionNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/HashtagSearchUI/BUCK b/submodules/HashtagSearchUI/BUCK new file mode 100644 index 0000000000..88393dcdbd --- /dev/null +++ b/submodules/HashtagSearchUI/BUCK @@ -0,0 +1,23 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "HashtagSearchUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramBaseController:TelegramBaseController", + "//submodules/ChatListUI:ChatListUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/HashtagSearchUI/HashtagSearchUI.xcodeproj/project.pbxproj b/submodules/HashtagSearchUI/HashtagSearchUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..0361099236 --- /dev/null +++ b/submodules/HashtagSearchUI/HashtagSearchUI.xcodeproj/project.pbxproj @@ -0,0 +1,1763 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29D27875AD00000000 + + isa + PBXFileReference + name + HashtagSearchUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/HashtagSearchUI/HashtagSearchUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29FB5455D700000000 + + isa + PBXFileReference + name + HashtagSearchUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/HashtagSearchUI/HashtagSearchUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E296EEB013900000000 + + isa + PBXFileReference + name + HashtagSearchUI-Release.xcconfig + path + ../../buck-out/gen/submodules/HashtagSearchUI/HashtagSearchUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29D27875AD00000000 + 1DD70E29FB5455D700000000 + 1DD70E296EEB013900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FD72F45600000000 + + isa + PBXFileReference + name + libChatListSearchItemHeader.a + path + libChatListSearchItemHeader.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2907DC840B00000000 + + isa + PBXFileReference + name + libChatListSearchItemNode.a + path + libChatListSearchItemNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E296DFD63C200000000 + + isa + PBXFileReference + name + libChatListUI.a + path + libChatListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B6F47D1F00000000 + + isa + PBXFileReference + name + libChatTitleActivityNode.a + path + libChatTitleActivityNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292F91702000000000 + + isa + PBXFileReference + name + libContactListUI.a + path + libContactListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2931752C6000000000 + + isa + PBXFileReference + name + libContactsPeerItem.a + path + libContactsPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CED1620500000000 + + isa + PBXFileReference + name + libDeleteChatPeerActionSheetItem.a + path + libDeleteChatPeerActionSheetItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299A24C4DE00000000 + + isa + PBXFileReference + name + libItemListPeerItem.a + path + libItemListPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29E220F5E800000000 + + isa + PBXFileReference + name + libLanguageSuggestionUI.a + path + libLanguageSuggestionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292969635400000000 + + isa + PBXFileReference + name + libLiveLocationTimerNode.a + path + libLiveLocationTimerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BBAF750C00000000 + + isa + PBXFileReference + name + libOverlayStatusController.a + path + libOverlayStatusController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291631B91900000000 + + isa + PBXFileReference + name + libPeersNearbyIconNode.a + path + libPeersNearbyIconNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291328E99400000000 + + isa + PBXFileReference + name + libSearchUI.a + path + libSearchUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29524F478E00000000 + + isa + PBXFileReference + name + libSolidRoundedButtonNode.a + path + libSolidRoundedButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2943136EC600000000 + + isa + PBXFileReference + name + libTelegramBaseController.a + path + libTelegramBaseController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2988BAAFC800000000 + + isa + PBXFileReference + name + libTelegramNotices.a + path + libTelegramNotices.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DF758A8500000000 + + isa + PBXFileReference + name + libTelegramPermissionsUI.a + path + libTelegramPermissionsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AE67341000000000 + + isa + PBXFileReference + name + libUndoUI.a + path + libUndoUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E29FD72F45600000000 + 1DD70E2907DC840B00000000 + 1DD70E297AB043C800000000 + 1DD70E296DFD63C200000000 + 1DD70E29B6F47D1F00000000 + 1DD70E2997B4D6D800000000 + 1DD70E292F91702000000000 + 1DD70E2931752C6000000000 + 1DD70E29CED1620500000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E299A24C4DE00000000 + 1DD70E295A26607D00000000 + 1DD70E29E220F5E800000000 + 1DD70E29AC43662400000000 + 1DD70E292969635400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29BBAF750C00000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E291631B91900000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29EA9CBB5B00000000 + 1DD70E291328E99400000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E29524F478E00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E2943136EC600000000 + 1DD70E29119CDA0700000000 + 1DD70E2988BAAFC800000000 + 1DD70E290DD17C7100000000 + 1DD70E29DF758A8500000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E29AE67341000000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29EAA579D500000000 + + isa + PBXFileReference + name + HashtagSearchController.swift + path + Sources/HashtagSearchController.swift + sourceTree + SOURCE_ROOT + + 1DD70E291461E27700000000 + + isa + PBXFileReference + name + HashtagSearchControllerNode.swift + path + Sources/HashtagSearchControllerNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29EAA579D500000000 + 1DD70E291461E27700000000 + + + B401C9790795F20800000000 + + isa + PBXGroup + name + HashtagSearchUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29CCE2AE1600000000 + + isa + PBXFileReference + name + libHashtagSearchUI.a + path + libHashtagSearchUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29CCE2AE1600000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9790795F20800000000 + B401C979C806358400000000 + + + E7A30F04EAA579D500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EAA579D500000000 + + E7A30F041461E27700000000 + + isa + PBXBuildFile + fileRef + 1DD70E291461E27700000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04EAA579D500000000 + E7A30F041461E27700000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04FD72F45600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FD72F45600000000 + + E7A30F04EA9CBB5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA9CBB5B00000000 + + E7A30F0407DC840B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2907DC840B00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04B6F47D1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B6F47D1F00000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F049A24C4DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299A24C4DE00000000 + + E7A30F0431752C6000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2931752C6000000000 + + E7A30F041328E99400000000 + + isa + PBXBuildFile + fileRef + 1DD70E291328E99400000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + E7A30F0488BAAFC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2988BAAFC800000000 + + E7A30F041631B91900000000 + + isa + PBXBuildFile + fileRef + 1DD70E291631B91900000000 + + E7A30F04524F478E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29524F478E00000000 + + E7A30F04DF758A8500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF758A8500000000 + + E7A30F042F91702000000000 + + isa + PBXBuildFile + fileRef + 1DD70E292F91702000000000 + + E7A30F04CED1620500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CED1620500000000 + + E7A30F04E220F5E800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E220F5E800000000 + + E7A30F04BBAF750C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BBAF750C00000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F042969635400000000 + + isa + PBXBuildFile + fileRef + 1DD70E292969635400000000 + + E7A30F0443136EC600000000 + + isa + PBXBuildFile + fileRef + 1DD70E2943136EC600000000 + + E7A30F04AE67341000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AE67341000000000 + + E7A30F046DFD63C200000000 + + isa + PBXBuildFile + fileRef + 1DD70E296DFD63C200000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04BF0846EE00000000 + E7A30F04F523B9DE00000000 + E7A30F04AC43662400000000 + E7A30F04FD72F45600000000 + E7A30F04EA9CBB5B00000000 + E7A30F0407DC840B00000000 + E7A30F04928D142900000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04B6F47D1F00000000 + E7A30F0497B4D6D800000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F04D233F68C00000000 + E7A30F049A24C4DE00000000 + E7A30F0431752C6000000000 + E7A30F041328E99400000000 + E7A30F041E16CC6C00000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F04597BAFBB00000000 + E7A30F0481AE180900000000 + E7A30F040DD17C7100000000 + E7A30F0488BAAFC800000000 + E7A30F041631B91900000000 + E7A30F04524F478E00000000 + E7A30F04DF758A8500000000 + E7A30F042F91702000000000 + E7A30F04CED1620500000000 + E7A30F04E220F5E800000000 + E7A30F04BBAF750C00000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04490601EB00000000 + E7A30F042969635400000000 + E7A30F0443136EC600000000 + E7A30F04AE67341000000000 + E7A30F046DFD63C200000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29D27875AD00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29FB5455D700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E296EEB013900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E0795F20800000000 + + isa + PBXNativeTarget + name + HashtagSearchUI + productName + HashtagSearchUI + productReference + 1DD70E29CCE2AE1600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847930795F20800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E0795F20800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847930795F20800000000 + + \ No newline at end of file diff --git a/submodules/HashtagSearchUI/HashtagSearchUI.xcodeproj/xcshareddata/xcschemes/HashtagSearchUI.xcscheme b/submodules/HashtagSearchUI/HashtagSearchUI.xcodeproj/xcshareddata/xcschemes/HashtagSearchUI.xcscheme new file mode 100644 index 0000000000..6439d62351 --- /dev/null +++ b/submodules/HashtagSearchUI/HashtagSearchUI.xcodeproj/xcshareddata/xcschemes/HashtagSearchUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/HexColor/HexColor.xcodeproj/project.pbxproj b/submodules/HexColor/HexColor.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..a0d704a0a6 --- /dev/null +++ b/submodules/HexColor/HexColor.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29A52D7A8D00000000 + + isa + PBXFileReference + name + HexColor-Debug.xcconfig + path + ../../buck-out/gen/submodules/HexColor/HexColor-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29F4DBA2B700000000 + + isa + PBXFileReference + name + HexColor-Profile.xcconfig + path + ../../buck-out/gen/submodules/HexColor/HexColor-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2968724E1900000000 + + isa + PBXFileReference + name + HexColor-Release.xcconfig + path + ../../buck-out/gen/submodules/HexColor/HexColor-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29A52D7A8D00000000 + 1DD70E29F4DBA2B700000000 + 1DD70E2968724E1900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E299A1D75CD00000000 + + isa + PBXFileReference + name + HexColor.swift + path + Sources/HexColor.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E299A1D75CD00000000 + + + B401C979E6D3C92800000000 + + isa + PBXGroup + name + HexColor + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2947B6256000000000 + + isa + PBXFileReference + name + libHexColor.a + path + libHexColor.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2947B6256000000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979E6D3C92800000000 + B401C979C806358400000000 + + + E7A30F049A1D75CD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299A1D75CD00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F049A1D75CD00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29A52D7A8D00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29F4DBA2B700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2968724E1900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EE6D3C92800000000 + + isa + PBXNativeTarget + name + HexColor + productName + HexColor + productReference + 1DD70E2947B6256000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793E6D3C92800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EE6D3C92800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793E6D3C92800000000 + + \ No newline at end of file diff --git a/submodules/HexColor/HexColor.xcodeproj/xcshareddata/xcschemes/HexColor.xcscheme b/submodules/HexColor/HexColor.xcodeproj/xcshareddata/xcschemes/HexColor.xcscheme new file mode 100644 index 0000000000..59f2ccadaf --- /dev/null +++ b/submodules/HexColor/HexColor.xcodeproj/xcshareddata/xcschemes/HexColor.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/HockeySDK-iOS/Classes/BITHockeyManagerDelegate.h b/submodules/HockeySDK-iOS/Classes/BITHockeyManagerDelegate.h index c4f099b733..a95b546890 100644 --- a/submodules/HockeySDK-iOS/Classes/BITHockeyManagerDelegate.h +++ b/submodules/HockeySDK-iOS/Classes/BITHockeyManagerDelegate.h @@ -38,11 +38,11 @@ #endif #if HOCKEYSDK_FEATURE_FEEDBACK -#import "BITFeedbackManagerDelegate.h" +//#import "BITFeedbackManagerDelegate.h" #endif #if HOCKEYSDK_FEATURE_AUTHENTICATOR -#import "BITAuthenticator.h" +//#import "BITAuthenticator.h" #endif @class BITHockeyManager; @@ -61,10 +61,10 @@ , BITUpdateManagerDelegate #endif #if HOCKEYSDK_FEATURE_FEEDBACK - , BITFeedbackManagerDelegate + //, BITFeedbackManagerDelegate #endif #if HOCKEYSDK_FEATURE_AUTHENTICATOR - , BITAuthenticatorDelegate + //, BITAuthenticatorDelegate #endif > diff --git a/submodules/HorizontalPeerItem/BUCK b/submodules/HorizontalPeerItem/BUCK new file mode 100644 index 0000000000..82120ebfe3 --- /dev/null +++ b/submodules/HorizontalPeerItem/BUCK @@ -0,0 +1,23 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "HorizontalPeerItem", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/SelectablePeerNode:SelectablePeerNode", + "//submodules/PeerOnlineMarkerNode:PeerOnlineMarkerNode", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/HorizontalPeerItem/HorizontalPeerItem.xcodeproj/project.pbxproj b/submodules/HorizontalPeerItem/HorizontalPeerItem.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..a87584bd09 --- /dev/null +++ b/submodules/HorizontalPeerItem/HorizontalPeerItem.xcodeproj/project.pbxproj @@ -0,0 +1,753 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E299DEC7F9C00000000 + + isa + PBXFileReference + name + HorizontalPeerItem-Debug.xcconfig + path + ../../buck-out/gen/submodules/HorizontalPeerItem/HorizontalPeerItem-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B9EDA00600000000 + + isa + PBXFileReference + name + HorizontalPeerItem-Profile.xcconfig + path + ../../buck-out/gen/submodules/HorizontalPeerItem/HorizontalPeerItem-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292D844B6800000000 + + isa + PBXFileReference + name + HorizontalPeerItem-Release.xcconfig + path + ../../buck-out/gen/submodules/HorizontalPeerItem/HorizontalPeerItem-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E299DEC7F9C00000000 + 1DD70E29B9EDA00600000000 + 1DD70E292D844B6800000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29928D142900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29097DBE9200000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29C784B3DE00000000 + + isa + PBXFileReference + name + HorizontalPeerItem.swift + path + Sources/HorizontalPeerItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29C784B3DE00000000 + + + B401C97989C327F900000000 + + isa + PBXGroup + name + HorizontalPeerItem + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2971ED41B100000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C97989C327F900000000 + B401C979C806358400000000 + + + E7A30F04C784B3DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C784B3DE00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04C784B3DE00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04928D142900000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F04D6F14E1000000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0484A59C1D00000000 + E7A30F04A54A195300000000 + E7A30F04097DBE9200000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E299DEC7F9C00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29B9EDA00600000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E292D844B6800000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E89C327F900000000 + + isa + PBXNativeTarget + name + HorizontalPeerItem + productName + HorizontalPeerItem + productReference + 1DD70E2971ED41B100000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479389C327F900000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E89C327F900000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479389C327F900000000 + + \ No newline at end of file diff --git a/submodules/HorizontalPeerItem/HorizontalPeerItem.xcodeproj/xcshareddata/xcschemes/HorizontalPeerItem.xcscheme b/submodules/HorizontalPeerItem/HorizontalPeerItem.xcodeproj/xcshareddata/xcschemes/HorizontalPeerItem.xcscheme new file mode 100644 index 0000000000..fd11e94d7b --- /dev/null +++ b/submodules/HorizontalPeerItem/HorizontalPeerItem.xcodeproj/xcshareddata/xcschemes/HorizontalPeerItem.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ImageBlur/ImageBlur.xcodeproj/project.pbxproj b/submodules/ImageBlur/ImageBlur.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..4099feef28 --- /dev/null +++ b/submodules/ImageBlur/ImageBlur.xcodeproj/project.pbxproj @@ -0,0 +1,399 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29CB11A43300000000 + + isa + PBXFileReference + name + ImageBlur-Debug.xcconfig + path + ../../buck-out/gen/submodules/ImageBlur/ImageBlur-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29325BFADD00000000 + + isa + PBXFileReference + name + ImageBlur-Profile.xcconfig + path + ../../buck-out/gen/submodules/ImageBlur/ImageBlur-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A5F2A63F00000000 + + isa + PBXFileReference + name + ImageBlur-Release.xcconfig + path + ../../buck-out/gen/submodules/ImageBlur/ImageBlur-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29CB11A43300000000 + 1DD70E29325BFADD00000000 + 1DD70E29A5F2A63F00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2961ED1ABF00000000 + + isa + PBXFileReference + name + ApplyScreenshotEffect.h + path + Sources/ApplyScreenshotEffect.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2961ED1AC400000000 + + isa + PBXFileReference + name + ApplyScreenshotEffect.m + path + Sources/ApplyScreenshotEffect.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E291345A43D00000000 + + isa + PBXFileReference + name + FastBlur.h + path + Sources/FastBlur.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E291345A44200000000 + + isa + PBXFileReference + name + FastBlur.m + path + Sources/FastBlur.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29E6A2B96700000000 + + isa + PBXFileReference + name + ImageBlur.swift + path + Sources/ImageBlur.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2961ED1ABF00000000 + 1DD70E2961ED1AC400000000 + 1DD70E291345A43D00000000 + 1DD70E291345A44200000000 + 1DD70E29E6A2B96700000000 + + + B401C9794312484200000000 + + isa + PBXGroup + name + ImageBlur + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29D6F14E1000000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C9794312484200000000 + B401C979C806358400000000 + + + E7A30F0461ED1AC400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2961ED1AC400000000 + + E7A30F041345A44200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291345A44200000000 + + E7A30F04E6A2B96700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E6A2B96700000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0461ED1AC400000000 + E7A30F041345A44200000000 + E7A30F04E6A2B96700000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29CB11A43300000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29325BFADD00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29A5F2A63F00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E4312484200000000 + + isa + PBXNativeTarget + name + ImageBlur + productName + ImageBlur + productReference + 1DD70E29D6F14E1000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847934312484200000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E4312484200000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847934312484200000000 + + \ No newline at end of file diff --git a/submodules/ImageBlur/ImageBlur.xcodeproj/xcshareddata/xcschemes/ImageBlur.xcscheme b/submodules/ImageBlur/ImageBlur.xcodeproj/xcshareddata/xcschemes/ImageBlur.xcscheme new file mode 100644 index 0000000000..5082816cd7 --- /dev/null +++ b/submodules/ImageBlur/ImageBlur.xcodeproj/xcshareddata/xcschemes/ImageBlur.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ImageCompression/ImageCompression.xcodeproj/project.pbxproj b/submodules/ImageCompression/ImageCompression.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..6258b839ab --- /dev/null +++ b/submodules/ImageCompression/ImageCompression.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29751F982A00000000 + + isa + PBXFileReference + name + ImageCompression-Debug.xcconfig + path + ../../buck-out/gen/submodules/ImageCompression/ImageCompression-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2990BCCD1400000000 + + isa + PBXFileReference + name + ImageCompression-Profile.xcconfig + path + ../../buck-out/gen/submodules/ImageCompression/ImageCompression-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E290453787600000000 + + isa + PBXFileReference + name + ImageCompression-Release.xcconfig + path + ../../buck-out/gen/submodules/ImageCompression/ImageCompression-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29751F982A00000000 + 1DD70E2990BCCD1400000000 + 1DD70E290453787600000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2992AF239000000000 + + isa + PBXFileReference + name + ImageCompression.swift + path + Sources/ImageCompression.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2992AF239000000000 + + + B401C979E29FC52B00000000 + + isa + PBXGroup + name + ImageCompression + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29C6E517A300000000 + + isa + PBXFileReference + name + libImageCompression.a + path + libImageCompression.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29C6E517A300000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979E29FC52B00000000 + B401C979C806358400000000 + + + E7A30F0492AF239000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2992AF239000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0492AF239000000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29751F982A00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2990BCCD1400000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E290453787600000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EE29FC52B00000000 + + isa + PBXNativeTarget + name + ImageCompression + productName + ImageCompression + productReference + 1DD70E29C6E517A300000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793E29FC52B00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EE29FC52B00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793E29FC52B00000000 + + \ No newline at end of file diff --git a/submodules/ImageCompression/ImageCompression.xcodeproj/xcshareddata/xcschemes/ImageCompression.xcscheme b/submodules/ImageCompression/ImageCompression.xcodeproj/xcshareddata/xcschemes/ImageCompression.xcscheme new file mode 100644 index 0000000000..deca876f0d --- /dev/null +++ b/submodules/ImageCompression/ImageCompression.xcodeproj/xcshareddata/xcschemes/ImageCompression.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ImageTransparency/ImageTransparency.xcodeproj/project.pbxproj b/submodules/ImageTransparency/ImageTransparency.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..1ce9916c79 --- /dev/null +++ b/submodules/ImageTransparency/ImageTransparency.xcodeproj/project.pbxproj @@ -0,0 +1,379 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29CBFE942200000000 + + isa + PBXFileReference + name + ImageTransparency-Debug.xcconfig + path + ../../buck-out/gen/submodules/ImageTransparency/ImageTransparency-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29ABCCAB0C00000000 + + isa + PBXFileReference + name + ImageTransparency-Profile.xcconfig + path + ../../buck-out/gen/submodules/ImageTransparency/ImageTransparency-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E291F63566E00000000 + + isa + PBXFileReference + name + ImageTransparency-Release.xcconfig + path + ../../buck-out/gen/submodules/ImageTransparency/ImageTransparency-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29CBFE942200000000 + 1DD70E29ABCCAB0C00000000 + 1DD70E291F63566E00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29ABDE509800000000 + + isa + PBXFileReference + name + ImageTransparency.swift + path + Sources/ImageTransparency.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29ABDE509800000000 + + + B401C979A5D7583300000000 + + isa + PBXGroup + name + ImageTransparency + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29247D9AC100000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979A5D7583300000000 + B401C979C806358400000000 + + + E7A30F04ABDE509800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29ABDE509800000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04ABDE509800000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29CBFE942200000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29ABCCAB0C00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E291F63566E00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EA5D7583300000000 + + isa + PBXNativeTarget + name + ImageTransparency + productName + ImageTransparency + productReference + 1DD70E29247D9AC100000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793A5D7583300000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EA5D7583300000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793A5D7583300000000 + + \ No newline at end of file diff --git a/submodules/ImageTransparency/ImageTransparency.xcodeproj/xcshareddata/xcschemes/ImageTransparency.xcscheme b/submodules/ImageTransparency/ImageTransparency.xcodeproj/xcshareddata/xcschemes/ImageTransparency.xcscheme new file mode 100644 index 0000000000..c2ff66efad --- /dev/null +++ b/submodules/ImageTransparency/ImageTransparency.xcodeproj/xcshareddata/xcschemes/ImageTransparency.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/InstantPageCache/InstantPageCache.xcodeproj/project.pbxproj b/submodules/InstantPageCache/InstantPageCache.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..373c879cf3 --- /dev/null +++ b/submodules/InstantPageCache/InstantPageCache.xcodeproj/project.pbxproj @@ -0,0 +1,489 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2947DD7D0300000000 + + isa + PBXFileReference + name + InstantPageCache-Debug.xcconfig + path + ../../buck-out/gen/submodules/InstantPageCache/InstantPageCache-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AB94DFAD00000000 + + isa + PBXFileReference + name + InstantPageCache-Profile.xcconfig + path + ../../buck-out/gen/submodules/InstantPageCache/InstantPageCache-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E291F2B8B0F00000000 + + isa + PBXFileReference + name + InstantPageCache-Release.xcconfig + path + ../../buck-out/gen/submodules/InstantPageCache/InstantPageCache-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2947DD7D0300000000 + 1DD70E29AB94DFAD00000000 + 1DD70E291F2B8B0F00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29B5051C0E00000000 + + isa + PBXFileReference + name + libPersistentStringHash.a + path + libPersistentStringHash.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29B5051C0E00000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E292395015100000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2911F7CFAA00000000 + + isa + PBXFileReference + name + CachedInstantPages.swift + path + Sources/CachedInstantPages.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2911F7CFAA00000000 + + + B401C979B949E97200000000 + + isa + PBXGroup + name + InstantPageCache + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E299B97462A00000000 + + isa + PBXFileReference + name + libInstantPageCache.a + path + libInstantPageCache.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E299B97462A00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979B949E97200000000 + B401C979C806358400000000 + + + E7A30F0411F7CFAA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2911F7CFAA00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0411F7CFAA00000000 + + + E7A30F04B5051C0E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B5051C0E00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04B5051C0E00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F04FF334B1F00000000 + E7A30F042395015100000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2947DD7D0300000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29AB94DFAD00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E291F2B8B0F00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EB949E97200000000 + + isa + PBXNativeTarget + name + InstantPageCache + productName + InstantPageCache + productReference + 1DD70E299B97462A00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793B949E97200000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EB949E97200000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793B949E97200000000 + + \ No newline at end of file diff --git a/submodules/InstantPageCache/InstantPageCache.xcodeproj/xcshareddata/xcschemes/InstantPageCache.xcscheme b/submodules/InstantPageCache/InstantPageCache.xcodeproj/xcshareddata/xcschemes/InstantPageCache.xcscheme new file mode 100644 index 0000000000..ce5b0eaef0 --- /dev/null +++ b/submodules/InstantPageCache/InstantPageCache.xcodeproj/xcshareddata/xcschemes/InstantPageCache.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/InstantPageUI/BUCK b/submodules/InstantPageUI/BUCK new file mode 100644 index 0000000000..b5a18477a9 --- /dev/null +++ b/submodules/InstantPageUI/BUCK @@ -0,0 +1,26 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "InstantPageUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/GalleryUI:GalleryUI", + "//submodules/MusicAlbumArtResources:MusicAlbumArtResources", + "//submodules/LiveLocationPositionNode:LiveLocationPositionNode", + "//submodules/MosaicLayout:MosaicLayout", + "//submodules/LocationUI:LocationUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/InstantPageUI/InstantPageUI.xcodeproj/project.pbxproj b/submodules/InstantPageUI/InstantPageUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..7d7dfbc3a0 --- /dev/null +++ b/submodules/InstantPageUI/InstantPageUI.xcodeproj/project.pbxproj @@ -0,0 +1,2517 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E291C0E45B100000000 + + isa + PBXFileReference + name + InstantPageUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/InstantPageUI/InstantPageUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2936B634DB00000000 + + isa + PBXFileReference + name + InstantPageUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/InstantPageUI/InstantPageUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AA4CE03D00000000 + + isa + PBXFileReference + name + InstantPageUI-Release.xcconfig + path + ../../buck-out/gen/submodules/InstantPageUI/InstantPageUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E291C0E45B100000000 + 1DD70E2936B634DB00000000 + 1DD70E29AA4CE03D00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F29DEA1400000000 + + isa + PBXFileReference + name + libGalleryUI.a + path + libGalleryUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2952137F3500000000 + + isa + PBXFileReference + name + libLegacyUI.a + path + libLegacyUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292995DF8400000000 + + isa + PBXFileReference + name + libLiveLocationPositionNode.a + path + libLiveLocationPositionNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29E102CFE100000000 + + isa + PBXFileReference + name + libLocationUI.a + path + libLocationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E296BF0672C00000000 + + isa + PBXFileReference + name + libMosaicLayout.a + path + libMosaicLayout.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29866F6A0400000000 + + isa + PBXFileReference + name + libMusicAlbumArtResources.a + path + libMusicAlbumArtResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AF00DC4900000000 + + isa + PBXFileReference + name + libOpenInExternalAppUI.a + path + libOpenInExternalAppUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CF967D4300000000 + + isa + PBXFileReference + name + libScreenCaptureDetection.a + path + libScreenCaptureDetection.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E296A346AC200000000 + + isa + PBXFileReference + name + libSwipeToDismissGesture.a + path + libSwipeToDismissGesture.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C7E0F39600000000 + + isa + PBXFileReference + name + libTelegramUniversalVideoContent.a + path + libTelegramUniversalVideoContent.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A6BAE8A300000000 + + isa + PBXFileReference + name + libWebsiteType.a + path + libWebsiteType.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E297AB043C800000000 + 1DD70E2997B4D6D800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29F29DEA1400000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E2952137F3500000000 + 1DD70E29AC43662400000000 + 1DD70E292995DF8400000000 + 1DD70E29CE34063500000000 + 1DD70E29E102CFE100000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E296BF0672C00000000 + 1DD70E29866F6A0400000000 + 1DD70E29AF00DC4900000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29CF967D4300000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E296A346AC200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29C7E0F39600000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + 1DD70E29A6BAE8A300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E293EE5EB7000000000 + + isa + PBXFileReference + name + InstantImageGalleryItem.swift + path + Sources/InstantImageGalleryItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29025B7C1D00000000 + + isa + PBXFileReference + name + InstantPageAnchorItem.swift + path + Sources/InstantPageAnchorItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E298CDC0AFE00000000 + + isa + PBXFileReference + name + InstantPageArticleItem.swift + path + Sources/InstantPageArticleItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E295DE20EAD00000000 + + isa + PBXFileReference + name + InstantPageArticleNode.swift + path + Sources/InstantPageArticleNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E294E2F7DDE00000000 + + isa + PBXFileReference + name + InstantPageAudioItem.swift + path + Sources/InstantPageAudioItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E291F35818D00000000 + + isa + PBXFileReference + name + InstantPageAudioNode.swift + path + Sources/InstantPageAudioNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2999B32E7000000000 + + isa + PBXFileReference + name + InstantPageContentNode.swift + path + Sources/InstantPageContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2926D3995100000000 + + isa + PBXFileReference + name + InstantPageController.swift + path + Sources/InstantPageController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29453BE3F300000000 + + isa + PBXFileReference + name + InstantPageControllerNode.swift + path + Sources/InstantPageControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B717014A00000000 + + isa + PBXFileReference + name + InstantPageDetailsItem.swift + path + Sources/InstantPageDetailsItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29881D04F900000000 + + isa + PBXFileReference + name + InstantPageDetailsNode.swift + path + Sources/InstantPageDetailsNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2960E21CED00000000 + + isa + PBXFileReference + name + InstantPageFeedbackItem.swift + path + Sources/InstantPageFeedbackItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2931E8209C00000000 + + isa + PBXFileReference + name + InstantPageFeedbackNode.swift + path + Sources/InstantPageFeedbackNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E297B53DEA300000000 + + isa + PBXFileReference + name + InstantPageGalleryController.swift + path + Sources/InstantPageGalleryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29093C888300000000 + + isa + PBXFileReference + name + InstantPageGalleryFooterContentNode.swift + path + Sources/InstantPageGalleryFooterContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E296241292300000000 + + isa + PBXFileReference + name + InstantPageImageItem.swift + path + Sources/InstantPageImageItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2933472CD200000000 + + isa + PBXFileReference + name + InstantPageImageNode.swift + path + Sources/InstantPageImageNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2943C8478800000000 + + isa + PBXFileReference + name + InstantPageItem.swift + path + Sources/InstantPageItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E294392565F00000000 + + isa + PBXFileReference + name + InstantPageLayout.swift + path + Sources/InstantPageLayout.swift + sourceTree + SOURCE_ROOT + + 1DD70E298E78C10F00000000 + + isa + PBXFileReference + name + InstantPageLayoutSpacings.swift + path + Sources/InstantPageLayoutSpacings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29361693CC00000000 + + isa + PBXFileReference + name + InstantPageLinkSelectionView.swift + path + Sources/InstantPageLinkSelectionView.swift + sourceTree + SOURCE_ROOT + + 1DD70E2918AA257900000000 + + isa + PBXFileReference + name + InstantPageMedia.swift + path + Sources/InstantPageMedia.swift + sourceTree + SOURCE_ROOT + + 1DD70E29384139EB00000000 + + isa + PBXFileReference + name + InstantPageMediaPlaylist.swift + path + Sources/InstantPageMediaPlaylist.swift + sourceTree + SOURCE_ROOT + + 1DD70E2935AF4EB400000000 + + isa + PBXFileReference + name + InstantPageNavigationBar.swift + path + Sources/InstantPageNavigationBar.swift + sourceTree + SOURCE_ROOT + + 1DD70E2914CE4B3700000000 + + isa + PBXFileReference + name + InstantPageNode.swift + path + Sources/InstantPageNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E297571EA5100000000 + + isa + PBXFileReference + name + InstantPagePeerReferenceItem.swift + path + Sources/InstantPagePeerReferenceItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E294677EE0000000000 + + isa + PBXFileReference + name + InstantPagePeerReferenceNode.swift + path + Sources/InstantPagePeerReferenceNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E292C0FDFD500000000 + + isa + PBXFileReference + name + InstantPagePlayableVideoItem.swift + path + Sources/InstantPagePlayableVideoItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FD15E38400000000 + + isa + PBXFileReference + name + InstantPagePlayableVideoNode.swift + path + Sources/InstantPagePlayableVideoNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DCFDD89C00000000 + + isa + PBXFileReference + name + InstantPageReferenceController.swift + path + Sources/InstantPageReferenceController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29524F85BE00000000 + + isa + PBXFileReference + name + InstantPageReferenceControllerNode.swift + path + Sources/InstantPageReferenceControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E3EDFC3E00000000 + + isa + PBXFileReference + name + InstantPageScrollableNode.swift + path + Sources/InstantPageScrollableNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E296278CB5600000000 + + isa + PBXFileReference + name + InstantPageSettingsBacklightItemNode.swift + path + Sources/InstantPageSettingsBacklightItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29905B373F00000000 + + isa + PBXFileReference + name + InstantPageSettingsButtonItemNode.swift + path + Sources/InstantPageSettingsButtonItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29427D8D6000000000 + + isa + PBXFileReference + name + InstantPageSettingsFontFamilyItemNode.swift + path + Sources/InstantPageSettingsFontFamilyItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CAB1E3BD00000000 + + isa + PBXFileReference + name + InstantPageSettingsFontSizeItemNode.swift + path + Sources/InstantPageSettingsFontSizeItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2916939DAD00000000 + + isa + PBXFileReference + name + InstantPageSettingsItemNode.swift + path + Sources/InstantPageSettingsItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29460E67E800000000 + + isa + PBXFileReference + name + InstantPageSettingsItemTheme.swift + path + Sources/InstantPageSettingsItemTheme.swift + sourceTree + SOURCE_ROOT + + 1DD70E29123743BA00000000 + + isa + PBXFileReference + name + InstantPageSettingsNode.swift + path + Sources/InstantPageSettingsNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E296D2F9BC100000000 + + isa + PBXFileReference + name + InstantPageSettingsSwitchItemNode.swift + path + Sources/InstantPageSettingsSwitchItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E293727999000000000 + + isa + PBXFileReference + name + InstantPageSettingsThemeItemNode.swift + path + Sources/InstantPageSettingsThemeItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C0BD2FE900000000 + + isa + PBXFileReference + name + InstantPageShapeItem.swift + path + Sources/InstantPageShapeItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E293EA0B43600000000 + + isa + PBXFileReference + name + InstantPageSlideshowItem.swift + path + Sources/InstantPageSlideshowItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E292987045800000000 + + isa + PBXFileReference + name + InstantPageSlideshowItemNode.swift + path + Sources/InstantPageSlideshowItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C91A40C300000000 + + isa + PBXFileReference + name + InstantPageStoredState.swift + path + Sources/InstantPageStoredState.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BD4487D600000000 + + isa + PBXFileReference + name + InstantPageTableItem.swift + path + Sources/InstantPageTableItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29ED750C9500000000 + + isa + PBXFileReference + name + InstantPageTextItem.swift + path + Sources/InstantPageTextItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2929E3E01900000000 + + isa + PBXFileReference + name + InstantPageTextStyleStack.swift + path + Sources/InstantPageTextStyleStack.swift + sourceTree + SOURCE_ROOT + + 1DD70E290F296B9E00000000 + + isa + PBXFileReference + name + InstantPageTheme.swift + path + Sources/InstantPageTheme.swift + sourceTree + SOURCE_ROOT + + 1DD70E2993F5BEE300000000 + + isa + PBXFileReference + name + InstantPageTile.swift + path + Sources/InstantPageTile.swift + sourceTree + SOURCE_ROOT + + 1DD70E2962CCF08500000000 + + isa + PBXFileReference + name + InstantPageTileNode.swift + path + Sources/InstantPageTileNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E298877C14D00000000 + + isa + PBXFileReference + name + InstantPageWebEmbedItem.swift + path + Sources/InstantPageWebEmbedItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29597DC4FC00000000 + + isa + PBXFileReference + name + InstantPageWebEmbedNode.swift + path + Sources/InstantPageWebEmbedNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E293EE5EB7000000000 + 1DD70E29025B7C1D00000000 + 1DD70E298CDC0AFE00000000 + 1DD70E295DE20EAD00000000 + 1DD70E294E2F7DDE00000000 + 1DD70E291F35818D00000000 + 1DD70E2999B32E7000000000 + 1DD70E2926D3995100000000 + 1DD70E29453BE3F300000000 + 1DD70E29B717014A00000000 + 1DD70E29881D04F900000000 + 1DD70E2960E21CED00000000 + 1DD70E2931E8209C00000000 + 1DD70E297B53DEA300000000 + 1DD70E29093C888300000000 + 1DD70E296241292300000000 + 1DD70E2933472CD200000000 + 1DD70E2943C8478800000000 + 1DD70E294392565F00000000 + 1DD70E298E78C10F00000000 + 1DD70E29361693CC00000000 + 1DD70E2918AA257900000000 + 1DD70E29384139EB00000000 + 1DD70E2935AF4EB400000000 + 1DD70E2914CE4B3700000000 + 1DD70E297571EA5100000000 + 1DD70E294677EE0000000000 + 1DD70E292C0FDFD500000000 + 1DD70E29FD15E38400000000 + 1DD70E29DCFDD89C00000000 + 1DD70E29524F85BE00000000 + 1DD70E29E3EDFC3E00000000 + 1DD70E296278CB5600000000 + 1DD70E29905B373F00000000 + 1DD70E29427D8D6000000000 + 1DD70E29CAB1E3BD00000000 + 1DD70E2916939DAD00000000 + 1DD70E29460E67E800000000 + 1DD70E29123743BA00000000 + 1DD70E296D2F9BC100000000 + 1DD70E293727999000000000 + 1DD70E29C0BD2FE900000000 + 1DD70E293EA0B43600000000 + 1DD70E292987045800000000 + 1DD70E29C91A40C300000000 + 1DD70E29BD4487D600000000 + 1DD70E29ED750C9500000000 + 1DD70E2929E3E01900000000 + 1DD70E290F296B9E00000000 + 1DD70E2993F5BEE300000000 + 1DD70E2962CCF08500000000 + 1DD70E298877C14D00000000 + 1DD70E29597DC4FC00000000 + + + B401C9793CC29A8400000000 + + isa + PBXGroup + name + InstantPageUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E297394725200000000 + + isa + PBXFileReference + name + libInstantPageUI.a + path + libInstantPageUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E297394725200000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9793CC29A8400000000 + B401C979C806358400000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F043EE5EB7000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293EE5EB7000000000 + + E7A30F04025B7C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29025B7C1D00000000 + + E7A30F048CDC0AFE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E298CDC0AFE00000000 + + E7A30F045DE20EAD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295DE20EAD00000000 + + E7A30F044E2F7DDE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E294E2F7DDE00000000 + + E7A30F041F35818D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291F35818D00000000 + + E7A30F0499B32E7000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2999B32E7000000000 + + E7A30F0426D3995100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2926D3995100000000 + + E7A30F04453BE3F300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29453BE3F300000000 + + E7A30F04B717014A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B717014A00000000 + + E7A30F04881D04F900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29881D04F900000000 + + E7A30F0460E21CED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2960E21CED00000000 + + E7A30F0431E8209C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2931E8209C00000000 + + E7A30F047B53DEA300000000 + + isa + PBXBuildFile + fileRef + 1DD70E297B53DEA300000000 + + E7A30F04093C888300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29093C888300000000 + + E7A30F046241292300000000 + + isa + PBXBuildFile + fileRef + 1DD70E296241292300000000 + + E7A30F0433472CD200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2933472CD200000000 + + E7A30F0443C8478800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2943C8478800000000 + + E7A30F044392565F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E294392565F00000000 + + E7A30F048E78C10F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E298E78C10F00000000 + + E7A30F04361693CC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29361693CC00000000 + + E7A30F0418AA257900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2918AA257900000000 + + E7A30F04384139EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29384139EB00000000 + + E7A30F0435AF4EB400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2935AF4EB400000000 + + E7A30F0414CE4B3700000000 + + isa + PBXBuildFile + fileRef + 1DD70E2914CE4B3700000000 + + E7A30F047571EA5100000000 + + isa + PBXBuildFile + fileRef + 1DD70E297571EA5100000000 + + E7A30F044677EE0000000000 + + isa + PBXBuildFile + fileRef + 1DD70E294677EE0000000000 + + E7A30F042C0FDFD500000000 + + isa + PBXBuildFile + fileRef + 1DD70E292C0FDFD500000000 + + E7A30F04FD15E38400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FD15E38400000000 + + E7A30F04DCFDD89C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DCFDD89C00000000 + + E7A30F04524F85BE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29524F85BE00000000 + + E7A30F04E3EDFC3E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E3EDFC3E00000000 + + E7A30F046278CB5600000000 + + isa + PBXBuildFile + fileRef + 1DD70E296278CB5600000000 + + E7A30F04905B373F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29905B373F00000000 + + E7A30F04427D8D6000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29427D8D6000000000 + + E7A30F04CAB1E3BD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CAB1E3BD00000000 + + E7A30F0416939DAD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2916939DAD00000000 + + E7A30F04460E67E800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29460E67E800000000 + + E7A30F04123743BA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29123743BA00000000 + + E7A30F046D2F9BC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E296D2F9BC100000000 + + E7A30F043727999000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293727999000000000 + + E7A30F04C0BD2FE900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C0BD2FE900000000 + + E7A30F043EA0B43600000000 + + isa + PBXBuildFile + fileRef + 1DD70E293EA0B43600000000 + + E7A30F042987045800000000 + + isa + PBXBuildFile + fileRef + 1DD70E292987045800000000 + + E7A30F04C91A40C300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C91A40C300000000 + + E7A30F04BD4487D600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BD4487D600000000 + + E7A30F04ED750C9500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29ED750C9500000000 + + E7A30F0429E3E01900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2929E3E01900000000 + + E7A30F040F296B9E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F296B9E00000000 + + E7A30F0493F5BEE300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2993F5BEE300000000 + + E7A30F0462CCF08500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2962CCF08500000000 + + E7A30F048877C14D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E298877C14D00000000 + + E7A30F04597DC4FC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597DC4FC00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F043EE5EB7000000000 + E7A30F04025B7C1D00000000 + E7A30F048CDC0AFE00000000 + E7A30F045DE20EAD00000000 + E7A30F044E2F7DDE00000000 + E7A30F041F35818D00000000 + E7A30F0499B32E7000000000 + E7A30F0426D3995100000000 + E7A30F04453BE3F300000000 + E7A30F04B717014A00000000 + E7A30F04881D04F900000000 + E7A30F0460E21CED00000000 + E7A30F0431E8209C00000000 + E7A30F047B53DEA300000000 + E7A30F04093C888300000000 + E7A30F046241292300000000 + E7A30F0433472CD200000000 + E7A30F0443C8478800000000 + E7A30F044392565F00000000 + E7A30F048E78C10F00000000 + E7A30F04361693CC00000000 + E7A30F0418AA257900000000 + E7A30F04384139EB00000000 + E7A30F0435AF4EB400000000 + E7A30F0414CE4B3700000000 + E7A30F047571EA5100000000 + E7A30F044677EE0000000000 + E7A30F042C0FDFD500000000 + E7A30F04FD15E38400000000 + E7A30F04DCFDD89C00000000 + E7A30F04524F85BE00000000 + E7A30F04E3EDFC3E00000000 + E7A30F046278CB5600000000 + E7A30F04905B373F00000000 + E7A30F04427D8D6000000000 + E7A30F04CAB1E3BD00000000 + E7A30F0416939DAD00000000 + E7A30F04460E67E800000000 + E7A30F04123743BA00000000 + E7A30F046D2F9BC100000000 + E7A30F043727999000000000 + E7A30F04C0BD2FE900000000 + E7A30F043EA0B43600000000 + E7A30F042987045800000000 + E7A30F04C91A40C300000000 + E7A30F04BD4487D600000000 + E7A30F04ED750C9500000000 + E7A30F0429E3E01900000000 + E7A30F040F296B9E00000000 + E7A30F0493F5BEE300000000 + E7A30F0462CCF08500000000 + E7A30F048877C14D00000000 + E7A30F04597DC4FC00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F04AF00DC4900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AF00DC4900000000 + + E7A30F04CF967D4300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CF967D4300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + E7A30F046A346AC200000000 + + isa + PBXBuildFile + fileRef + 1DD70E296A346AC200000000 + + E7A30F04C7E0F39600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7E0F39600000000 + + E7A30F04A6BAE8A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A6BAE8A300000000 + + E7A30F04F29DEA1400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F29DEA1400000000 + + E7A30F042995DF8400000000 + + isa + PBXBuildFile + fileRef + 1DD70E292995DF8400000000 + + E7A30F0452137F3500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2952137F3500000000 + + E7A30F04E102CFE100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E102CFE100000000 + + E7A30F046BF0672C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296BF0672C00000000 + + E7A30F04866F6A0400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29866F6A0400000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F0497B4D6D800000000 + E7A30F04D6F14E1000000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04CD296A8300000000 + E7A30F04490601EB00000000 + E7A30F04597BAFBB00000000 + E7A30F04AF00DC4900000000 + E7A30F04CF967D4300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F041E16CC6C00000000 + E7A30F04BF0846EE00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F04AC43662400000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04D233F68C00000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F0481AE180900000000 + E7A30F046A346AC200000000 + E7A30F04C7E0F39600000000 + E7A30F04A6BAE8A300000000 + E7A30F04F29DEA1400000000 + E7A30F042995DF8400000000 + E7A30F0452137F3500000000 + E7A30F04E102CFE100000000 + E7A30F046BF0672C00000000 + E7A30F04866F6A0400000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E291C0E45B100000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2936B634DB00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29AA4CE03D00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E3CC29A8400000000 + + isa + PBXNativeTarget + name + InstantPageUI + productName + InstantPageUI + productReference + 1DD70E297394725200000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847933CC29A8400000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E3CC29A8400000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847933CC29A8400000000 + + \ No newline at end of file diff --git a/submodules/InstantPageUI/InstantPageUI.xcodeproj/xcshareddata/xcschemes/InstantPageUI.xcscheme b/submodules/InstantPageUI/InstantPageUI.xcodeproj/xcshareddata/xcschemes/InstantPageUI.xcscheme new file mode 100644 index 0000000000..45d097ad2f --- /dev/null +++ b/submodules/InstantPageUI/InstantPageUI.xcodeproj/xcshareddata/xcschemes/InstantPageUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ItemListAddressItem/BUCK b/submodules/ItemListAddressItem/BUCK new file mode 100644 index 0000000000..0056fd9caa --- /dev/null +++ b/submodules/ItemListAddressItem/BUCK @@ -0,0 +1,21 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ItemListAddressItem", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/ItemListUI:ItemListUI", + "//submodules/AccountContext:AccountContext", + "//submodules/TextFormat:TextFormat", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ItemListAddressItem/ItemListAddressItem.xcodeproj/project.pbxproj b/submodules/ItemListAddressItem/ItemListAddressItem.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..7c7eaae676 --- /dev/null +++ b/submodules/ItemListAddressItem/ItemListAddressItem.xcodeproj/project.pbxproj @@ -0,0 +1,949 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29FCBCB7FF00000000 + + isa + PBXFileReference + name + ItemListAddressItem-Debug.xcconfig + path + ../../buck-out/gen/submodules/ItemListAddressItem/ItemListAddressItem-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A5914BA900000000 + + isa + PBXFileReference + name + ItemListAddressItem-Profile.xcconfig + path + ../../buck-out/gen/submodules/ItemListAddressItem/ItemListAddressItem-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E291927F70B00000000 + + isa + PBXFileReference + name + ItemListAddressItem-Release.xcconfig + path + ../../buck-out/gen/submodules/ItemListAddressItem/ItemListAddressItem-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29FCBCB7FF00000000 + 1DD70E29A5914BA900000000 + 1DD70E291927F70B00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E2997B4D6D800000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E290A17F01B00000000 + + isa + PBXFileReference + name + ItemListAddressItem.swift + path + Sources/ItemListAddressItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E290A17F01B00000000 + + + B401C979999395F600000000 + + isa + PBXGroup + name + ItemListAddressItem + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29C137890400000000 + + isa + PBXFileReference + name + libItemListAddressItem.a + path + libItemListAddressItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29C137890400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979999395F600000000 + B401C979C806358400000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F040A17F01B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290A17F01B00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F040A17F01B00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29FCBCB7FF00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29A5914BA900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E291927F70B00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E999395F600000000 + + isa + PBXNativeTarget + name + ItemListAddressItem + productName + ItemListAddressItem + productReference + 1DD70E29C137890400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793999395F600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E999395F600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793999395F600000000 + + \ No newline at end of file diff --git a/submodules/ItemListAddressItem/ItemListAddressItem.xcodeproj/xcshareddata/xcschemes/ItemListAddressItem.xcscheme b/submodules/ItemListAddressItem/ItemListAddressItem.xcodeproj/xcshareddata/xcschemes/ItemListAddressItem.xcscheme new file mode 100644 index 0000000000..2125513065 --- /dev/null +++ b/submodules/ItemListAddressItem/ItemListAddressItem.xcodeproj/xcshareddata/xcschemes/ItemListAddressItem.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ItemListAvatarAndNameInfoItem/BUCK b/submodules/ItemListAvatarAndNameInfoItem/BUCK new file mode 100644 index 0000000000..f8a2bf277b --- /dev/null +++ b/submodules/ItemListAvatarAndNameInfoItem/BUCK @@ -0,0 +1,25 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ItemListAvatarAndNameInfoItem", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/PeerPresenceStatusManager:PeerPresenceStatusManager", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/AvatarNode:AvatarNode", + "//submodules/ActivityIndicator:ActivityIndicator", + "//submodules/ItemListUI:ItemListUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ItemListAvatarAndNameInfoItem/ItemListAvatarAndNameInfoItem.xcodeproj/project.pbxproj b/submodules/ItemListAvatarAndNameInfoItem/ItemListAvatarAndNameInfoItem.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..dfdb7e1c3a --- /dev/null +++ b/submodules/ItemListAvatarAndNameInfoItem/ItemListAvatarAndNameInfoItem.xcodeproj/project.pbxproj @@ -0,0 +1,993 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29B84A5C1C00000000 + + isa + PBXFileReference + name + ItemListAvatarAndNameInfoItem-Debug.xcconfig + path + ../../buck-out/gen/submodules/ItemListAvatarAndNameInfoItem/ItemListAvatarAndNameInfoItem-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B4465C8600000000 + + isa + PBXFileReference + name + ItemListAvatarAndNameInfoItem-Profile.xcconfig + path + ../../buck-out/gen/submodules/ItemListAvatarAndNameInfoItem/ItemListAvatarAndNameInfoItem-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2927DD07E800000000 + + isa + PBXFileReference + name + ItemListAvatarAndNameInfoItem-Release.xcconfig + path + ../../buck-out/gen/submodules/ItemListAvatarAndNameInfoItem/ItemListAvatarAndNameInfoItem-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29B84A5C1C00000000 + 1DD70E29B4465C8600000000 + 1DD70E2927DD07E800000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E2997B4D6D800000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29D233F68C00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E343141000000000 + + isa + PBXFileReference + name + ItemListAvatarAndNameItem.swift + path + Sources/ItemListAvatarAndNameItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E29E343141000000000 + + + B401C97987F7DB7900000000 + + isa + PBXGroup + name + ItemListAvatarAndNameInfoItem + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29F2CA340700000000 + + isa + PBXFileReference + name + libItemListAvatarAndNameInfoItem.a + path + libItemListAvatarAndNameInfoItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29F2CA340700000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C97987F7DB7900000000 + B401C979C806358400000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04E343141000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E343141000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F04E343141000000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04BF0846EE00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F045915423000000000 + E7A30F04F33FDAC300000000 + E7A30F0451398CF200000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F04D233F68C00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29B84A5C1C00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29B4465C8600000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2927DD07E800000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E87F7DB7900000000 + + isa + PBXNativeTarget + name + ItemListAvatarAndNameInfoItem + productName + ItemListAvatarAndNameInfoItem + productReference + 1DD70E29F2CA340700000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479387F7DB7900000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E87F7DB7900000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479387F7DB7900000000 + + \ No newline at end of file diff --git a/submodules/ItemListAvatarAndNameInfoItem/ItemListAvatarAndNameInfoItem.xcodeproj/xcshareddata/xcschemes/ItemListAvatarAndNameInfoItem.xcscheme b/submodules/ItemListAvatarAndNameInfoItem/ItemListAvatarAndNameInfoItem.xcodeproj/xcshareddata/xcschemes/ItemListAvatarAndNameInfoItem.xcscheme new file mode 100644 index 0000000000..f0c801c083 --- /dev/null +++ b/submodules/ItemListAvatarAndNameInfoItem/ItemListAvatarAndNameInfoItem.xcodeproj/xcshareddata/xcschemes/ItemListAvatarAndNameInfoItem.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ItemListPeerActionItem/BUCK b/submodules/ItemListPeerActionItem/BUCK new file mode 100644 index 0000000000..ad1ce4cefe --- /dev/null +++ b/submodules/ItemListPeerActionItem/BUCK @@ -0,0 +1,19 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ItemListPeerActionItem", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/ItemListUI:ItemListUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ItemListPeerActionItem/ItemListPeerActionItem.xcodeproj/project.pbxproj b/submodules/ItemListPeerActionItem/ItemListPeerActionItem.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..11b9670cbe --- /dev/null +++ b/submodules/ItemListPeerActionItem/ItemListPeerActionItem.xcodeproj/project.pbxproj @@ -0,0 +1,929 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2931A226F900000000 + + isa + PBXFileReference + name + ItemListPeerActionItem-Debug.xcconfig + path + ../../buck-out/gen/submodules/ItemListPeerActionItem/ItemListPeerActionItem-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2936D6E42300000000 + + isa + PBXFileReference + name + ItemListPeerActionItem-Profile.xcconfig + path + ../../buck-out/gen/submodules/ItemListPeerActionItem/ItemListPeerActionItem-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AA6D8F8500000000 + + isa + PBXFileReference + name + ItemListPeerActionItem-Release.xcconfig + path + ../../buck-out/gen/submodules/ItemListPeerActionItem/ItemListPeerActionItem-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2931A226F900000000 + 1DD70E2936D6E42300000000 + 1DD70E29AA6D8F8500000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E2997B4D6D800000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E293B1CDFE100000000 + + isa + PBXFileReference + name + ItemListPeerActionItem.swift + path + Sources/ItemListPeerActionItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E293B1CDFE100000000 + + + B401C9796DE1523C00000000 + + isa + PBXGroup + name + ItemListPeerActionItem + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2905A95CB400000000 + + isa + PBXFileReference + name + libItemListPeerActionItem.a + path + libItemListPeerActionItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2905A95CB400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9796DE1523C00000000 + B401C979C806358400000000 + + + E7A30F043B1CDFE100000000 + + isa + PBXBuildFile + fileRef + 1DD70E293B1CDFE100000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F043B1CDFE100000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2931A226F900000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2936D6E42300000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29AA6D8F8500000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E6DE1523C00000000 + + isa + PBXNativeTarget + name + ItemListPeerActionItem + productName + ItemListPeerActionItem + productReference + 1DD70E2905A95CB400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847936DE1523C00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E6DE1523C00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847936DE1523C00000000 + + \ No newline at end of file diff --git a/submodules/ItemListPeerActionItem/ItemListPeerActionItem.xcodeproj/xcshareddata/xcschemes/ItemListPeerActionItem.xcscheme b/submodules/ItemListPeerActionItem/ItemListPeerActionItem.xcodeproj/xcshareddata/xcschemes/ItemListPeerActionItem.xcscheme new file mode 100644 index 0000000000..63bdee50b8 --- /dev/null +++ b/submodules/ItemListPeerActionItem/ItemListPeerActionItem.xcodeproj/xcshareddata/xcschemes/ItemListPeerActionItem.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ItemListPeerItem/BUCK b/submodules/ItemListPeerItem/BUCK new file mode 100644 index 0000000000..e81414f23c --- /dev/null +++ b/submodules/ItemListPeerItem/BUCK @@ -0,0 +1,25 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ItemListPeerItem", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/AvatarNode:AvatarNode", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/PeerPresenceStatusManager:PeerPresenceStatusManager", + "//submodules/ItemListUI:ItemListUI", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ItemListPeerItem/ItemListPeerItem.xcodeproj/project.pbxproj b/submodules/ItemListPeerItem/ItemListPeerItem.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..0ac777cc51 --- /dev/null +++ b/submodules/ItemListPeerItem/ItemListPeerItem.xcodeproj/project.pbxproj @@ -0,0 +1,973 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E290F9E82CF00000000 + + isa + PBXFileReference + name + ItemListPeerItem-Debug.xcconfig + path + ../../buck-out/gen/submodules/ItemListPeerItem/ItemListPeerItem-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29872BA27900000000 + + isa + PBXFileReference + name + ItemListPeerItem-Profile.xcconfig + path + ../../buck-out/gen/submodules/ItemListPeerItem/ItemListPeerItem-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29FAC24DDB00000000 + + isa + PBXFileReference + name + ItemListPeerItem-Release.xcconfig + path + ../../buck-out/gen/submodules/ItemListPeerItem/ItemListPeerItem-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E290F9E82CF00000000 + 1DD70E29872BA27900000000 + 1DD70E29FAC24DDB00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E2997B4D6D800000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29D233F68C00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29378FBB4B00000000 + + isa + PBXFileReference + name + ItemListPeerItem.swift + path + Sources/ItemListPeerItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29378FBB4B00000000 + + + B401C97902CF852600000000 + + isa + PBXGroup + name + ItemListPeerItem + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E299A24C4DE00000000 + + isa + PBXFileReference + name + libItemListPeerItem.a + path + libItemListPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E299A24C4DE00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C97902CF852600000000 + B401C979C806358400000000 + + + E7A30F04378FBB4B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29378FBB4B00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04378FBB4B00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F04D6F14E1000000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0484A59C1D00000000 + E7A30F04A54A195300000000 + E7A30F045915423000000000 + E7A30F04F33FDAC300000000 + E7A30F0451398CF200000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F04D233F68C00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E290F9E82CF00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29872BA27900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29FAC24DDB00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E02CF852600000000 + + isa + PBXNativeTarget + name + ItemListPeerItem + productName + ItemListPeerItem + productReference + 1DD70E299A24C4DE00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479302CF852600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E02CF852600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479302CF852600000000 + + \ No newline at end of file diff --git a/submodules/ItemListPeerItem/ItemListPeerItem.xcodeproj/xcshareddata/xcschemes/ItemListPeerItem.xcscheme b/submodules/ItemListPeerItem/ItemListPeerItem.xcodeproj/xcshareddata/xcschemes/ItemListPeerItem.xcscheme new file mode 100644 index 0000000000..ddec3e8832 --- /dev/null +++ b/submodules/ItemListPeerItem/ItemListPeerItem.xcodeproj/xcshareddata/xcschemes/ItemListPeerItem.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ItemListStickerPackItem/BUCK b/submodules/ItemListStickerPackItem/BUCK new file mode 100644 index 0000000000..3da5704d8b --- /dev/null +++ b/submodules/ItemListStickerPackItem/BUCK @@ -0,0 +1,23 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ItemListStickerPackItem", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/ItemListUI:ItemListUI", + "//submodules/StickerResources:StickerResources", + "//submodules/AnimationUI:AnimationUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ItemListStickerPackItem/ItemListStickerPackItem.xcodeproj/project.pbxproj b/submodules/ItemListStickerPackItem/ItemListStickerPackItem.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..1bcb58653d --- /dev/null +++ b/submodules/ItemListStickerPackItem/ItemListStickerPackItem.xcodeproj/project.pbxproj @@ -0,0 +1,929 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29D3EAD73D00000000 + + isa + PBXFileReference + name + ItemListStickerPackItem-Debug.xcconfig + path + ../../buck-out/gen/submodules/ItemListStickerPackItem/ItemListStickerPackItem-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2969B4936700000000 + + isa + PBXFileReference + name + ItemListStickerPackItem-Profile.xcconfig + path + ../../buck-out/gen/submodules/ItemListStickerPackItem/ItemListStickerPackItem-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29DD4B3EC900000000 + + isa + PBXFileReference + name + ItemListStickerPackItem-Release.xcconfig + path + ../../buck-out/gen/submodules/ItemListStickerPackItem/ItemListStickerPackItem-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29D3EAD73D00000000 + 1DD70E2969B4936700000000 + 1DD70E29DD4B3EC900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E2997B4D6D800000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E292D74131D00000000 + + isa + PBXFileReference + name + ItemListStickerPackItem.swift + path + Sources/ItemListStickerPackItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E292D74131D00000000 + + + B401C979F17EA27800000000 + + isa + PBXGroup + name + ItemListStickerPackItem + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E295C00B78600000000 + + isa + PBXFileReference + name + libItemListStickerPackItem.a + path + libItemListStickerPackItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E295C00B78600000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979F17EA27800000000 + B401C979C806358400000000 + + + E7A30F042D74131D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292D74131D00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F042D74131D00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F04D6F14E1000000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F045915423000000000 + E7A30F04F33FDAC300000000 + E7A30F0451398CF200000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29D3EAD73D00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2969B4936700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29DD4B3EC900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EF17EA27800000000 + + isa + PBXNativeTarget + name + ItemListStickerPackItem + productName + ItemListStickerPackItem + productReference + 1DD70E295C00B78600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793F17EA27800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EF17EA27800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793F17EA27800000000 + + \ No newline at end of file diff --git a/submodules/ItemListStickerPackItem/ItemListStickerPackItem.xcodeproj/xcshareddata/xcschemes/ItemListStickerPackItem.xcscheme b/submodules/ItemListStickerPackItem/ItemListStickerPackItem.xcodeproj/xcshareddata/xcschemes/ItemListStickerPackItem.xcscheme new file mode 100644 index 0000000000..063a4d0877 --- /dev/null +++ b/submodules/ItemListStickerPackItem/ItemListStickerPackItem.xcodeproj/xcshareddata/xcschemes/ItemListStickerPackItem.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ItemListUI/BUCK b/submodules/ItemListUI/BUCK new file mode 100644 index 0000000000..36f6b4954c --- /dev/null +++ b/submodules/ItemListUI/BUCK @@ -0,0 +1,25 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ItemListUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/MergeLists:MergeLists", + "//submodules/TextFormat:TextFormat", + "//submodules/ProgressNavigationButtonNode:ProgressNavigationButtonNode", + "//submodules/SwitchNode:SwitchNode", + "//submodules/AnimationUI:AnimationUI", + "//submodules/CheckNode:CheckNode", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ItemListUI/ItemListUI.xcodeproj/project.pbxproj b/submodules/ItemListUI/ItemListUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..dbf9227619 --- /dev/null +++ b/submodules/ItemListUI/ItemListUI.xcodeproj/project.pbxproj @@ -0,0 +1,1442 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2964CB815000000000 + + isa + PBXFileReference + name + ItemListUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/ItemListUI/ItemListUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29451304BA00000000 + + isa + PBXFileReference + name + ItemListUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/ItemListUI/ItemListUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B8A9B01C00000000 + + isa + PBXFileReference + name + ItemListUI-Release.xcconfig + path + ../../buck-out/gen/submodules/ItemListUI/ItemListUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2964CB815000000000 + 1DD70E29451304BA00000000 + 1DD70E29B8A9B01C00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E2997B4D6D800000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291585DEDF00000000 + + isa + PBXFileReference + name + ItemListActionItem.swift + path + Sources/Items/ItemListActionItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E299A32E54500000000 + + isa + PBXFileReference + name + ItemListActivityTextItem.swift + path + Sources/Items/ItemListActivityTextItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E294578CFEC00000000 + + isa + PBXFileReference + name + ItemListCheckboxItem.swift + path + Sources/Items/ItemListCheckboxItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DD51215600000000 + + isa + PBXFileReference + name + ItemListDisclosureItem.swift + path + Sources/Items/ItemListDisclosureItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2913168D4D00000000 + + isa + PBXFileReference + name + ItemListEditableItem.swift + path + Sources/Items/ItemListEditableItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B61DFF9700000000 + + isa + PBXFileReference + name + ItemListInfoItem.swift + path + Sources/Items/ItemListInfoItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CD90160600000000 + + isa + PBXFileReference + name + ItemListMultilineInputItem.swift + path + Sources/Items/ItemListMultilineInputItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E293B3858E100000000 + + isa + PBXFileReference + name + ItemListMultilineTextItem.swift + path + Sources/Items/ItemListMultilineTextItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B1DEE75A00000000 + + isa + PBXFileReference + name + ItemListPlaceholderItem.swift + path + Sources/Items/ItemListPlaceholderItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2951CD3D3900000000 + + isa + PBXFileReference + name + ItemListSectionHeaderItem.swift + path + Sources/Items/ItemListSectionHeaderItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B4B5097500000000 + + isa + PBXFileReference + name + ItemListSingleLineInputItem.swift + path + Sources/Items/ItemListSingleLineInputItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A855725D00000000 + + isa + PBXFileReference + name + ItemListSwitchItem.swift + path + Sources/Items/ItemListSwitchItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E298E0B7E3A00000000 + + isa + PBXFileReference + name + ItemListTextEmptyStateItem.swift + path + Sources/Items/ItemListTextEmptyStateItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E297AFF8D5600000000 + + isa + PBXFileReference + name + ItemListTextItem.swift + path + Sources/Items/ItemListTextItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29888C1FC800000000 + + isa + PBXFileReference + name + ItemListTextWithLabelItem.swift + path + Sources/Items/ItemListTextWithLabelItem.swift + sourceTree + SOURCE_ROOT + + B401C979043AF7A000000000 + + isa + PBXGroup + name + Items + path + Sources/Items + sourceTree + SOURCE_ROOT + children + + 1DD70E291585DEDF00000000 + 1DD70E299A32E54500000000 + 1DD70E294578CFEC00000000 + 1DD70E29DD51215600000000 + 1DD70E2913168D4D00000000 + 1DD70E29B61DFF9700000000 + 1DD70E29CD90160600000000 + 1DD70E293B3858E100000000 + 1DD70E29B1DEE75A00000000 + 1DD70E2951CD3D3900000000 + 1DD70E29B4B5097500000000 + 1DD70E29A855725D00000000 + 1DD70E298E0B7E3A00000000 + 1DD70E297AFF8D5600000000 + 1DD70E29888C1FC800000000 + + + 1DD70E297BC0EDD200000000 + + isa + PBXFileReference + name + ItemListController.swift + path + Sources/ItemListController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A23C5E6900000000 + + isa + PBXFileReference + name + ItemListControllerEmptyStateItem.swift + path + Sources/ItemListControllerEmptyStateItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2902790FF400000000 + + isa + PBXFileReference + name + ItemListControllerNode.swift + path + Sources/ItemListControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E290857F3DA00000000 + + isa + PBXFileReference + name + ItemListControllerSearch.swift + path + Sources/ItemListControllerSearch.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E72FA29D00000000 + + isa + PBXFileReference + name + ItemListControllerSegmentedTitleView.swift + path + Sources/ItemListControllerSegmentedTitleView.swift + sourceTree + SOURCE_ROOT + + 1DD70E290DDDC64400000000 + + isa + PBXFileReference + name + ItemListEditableDeleteControlNode.swift + path + Sources/ItemListEditableDeleteControlNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29AD71BDBE00000000 + + isa + PBXFileReference + name + ItemListEditableReorderControlNode.swift + path + Sources/ItemListEditableReorderControlNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29586B50C900000000 + + isa + PBXFileReference + name + ItemListItem.swift + path + Sources/ItemListItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2939FE48C000000000 + + isa + PBXFileReference + name + ItemListLoadingIndicatorEmptyStateItem.swift + path + Sources/ItemListLoadingIndicatorEmptyStateItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29613EB66700000000 + + isa + PBXFileReference + name + ItemListRevealOptionsNode.swift + path + Sources/ItemListRevealOptionsNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2978C1317D00000000 + + isa + PBXFileReference + name + ItemListSelectableControlNode.swift + path + Sources/ItemListSelectableControlNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2989E0026900000000 + + isa + PBXFileReference + name + ListItemWithHeader.swift + path + Sources/ListItemWithHeader.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C979043AF7A000000000 + 1DD70E297BC0EDD200000000 + 1DD70E29A23C5E6900000000 + 1DD70E2902790FF400000000 + 1DD70E290857F3DA00000000 + 1DD70E29E72FA29D00000000 + 1DD70E290DDDC64400000000 + 1DD70E29AD71BDBE00000000 + 1DD70E29586B50C900000000 + 1DD70E2939FE48C000000000 + 1DD70E29613EB66700000000 + 1DD70E2978C1317D00000000 + 1DD70E2989E0026900000000 + + + B401C979E17F74C500000000 + + isa + PBXGroup + name + ItemListUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E295A26607D00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979E17F74C500000000 + B401C979C806358400000000 + + + E7A30F041585DEDF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291585DEDF00000000 + + E7A30F049A32E54500000000 + + isa + PBXBuildFile + fileRef + 1DD70E299A32E54500000000 + + E7A30F044578CFEC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E294578CFEC00000000 + + E7A30F04DD51215600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD51215600000000 + + E7A30F0413168D4D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2913168D4D00000000 + + E7A30F04B61DFF9700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B61DFF9700000000 + + E7A30F04CD90160600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD90160600000000 + + E7A30F043B3858E100000000 + + isa + PBXBuildFile + fileRef + 1DD70E293B3858E100000000 + + E7A30F04B1DEE75A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B1DEE75A00000000 + + E7A30F0451CD3D3900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951CD3D3900000000 + + E7A30F04B4B5097500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B5097500000000 + + E7A30F04A855725D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A855725D00000000 + + E7A30F048E0B7E3A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E298E0B7E3A00000000 + + E7A30F047AFF8D5600000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AFF8D5600000000 + + E7A30F04888C1FC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29888C1FC800000000 + + E7A30F047BC0EDD200000000 + + isa + PBXBuildFile + fileRef + 1DD70E297BC0EDD200000000 + + E7A30F04A23C5E6900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A23C5E6900000000 + + E7A30F0402790FF400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2902790FF400000000 + + E7A30F040857F3DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290857F3DA00000000 + + E7A30F04E72FA29D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E72FA29D00000000 + + E7A30F040DDDC64400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DDDC64400000000 + + E7A30F04AD71BDBE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AD71BDBE00000000 + + E7A30F04586B50C900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29586B50C900000000 + + E7A30F0439FE48C000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2939FE48C000000000 + + E7A30F04613EB66700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29613EB66700000000 + + E7A30F0478C1317D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2978C1317D00000000 + + E7A30F0489E0026900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2989E0026900000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041585DEDF00000000 + E7A30F049A32E54500000000 + E7A30F044578CFEC00000000 + E7A30F04DD51215600000000 + E7A30F0413168D4D00000000 + E7A30F04B61DFF9700000000 + E7A30F04CD90160600000000 + E7A30F043B3858E100000000 + E7A30F04B1DEE75A00000000 + E7A30F0451CD3D3900000000 + E7A30F04B4B5097500000000 + E7A30F04A855725D00000000 + E7A30F048E0B7E3A00000000 + E7A30F047AFF8D5600000000 + E7A30F04888C1FC800000000 + E7A30F047BC0EDD200000000 + E7A30F04A23C5E6900000000 + E7A30F0402790FF400000000 + E7A30F040857F3DA00000000 + E7A30F04E72FA29D00000000 + E7A30F040DDDC64400000000 + E7A30F04AD71BDBE00000000 + E7A30F04586B50C900000000 + E7A30F0439FE48C000000000 + E7A30F04613EB66700000000 + E7A30F0478C1317D00000000 + E7A30F0489E0026900000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2964CB815000000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29451304BA00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29B8A9B01C00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EE17F74C500000000 + + isa + PBXNativeTarget + name + ItemListUI + productName + ItemListUI + productReference + 1DD70E295A26607D00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793E17F74C500000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EE17F74C500000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793E17F74C500000000 + + \ No newline at end of file diff --git a/submodules/ItemListUI/ItemListUI.xcodeproj/xcshareddata/xcschemes/ItemListUI.xcscheme b/submodules/ItemListUI/ItemListUI.xcodeproj/xcshareddata/xcschemes/ItemListUI.xcscheme new file mode 100644 index 0000000000..d2a9db867c --- /dev/null +++ b/submodules/ItemListUI/ItemListUI.xcodeproj/xcshareddata/xcschemes/ItemListUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/JoinLinkPreviewUI/BUCK b/submodules/JoinLinkPreviewUI/BUCK new file mode 100644 index 0000000000..f8a1ad7c8e --- /dev/null +++ b/submodules/JoinLinkPreviewUI/BUCK @@ -0,0 +1,24 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "JoinLinkPreviewUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/AlertUI:AlertUI", + "//submodules/ShareController:ShareController", + "//submodules/SelectablePeerNode:SelectablePeerNode", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/JoinLinkPreviewUI/JoinLinkPreviewUI.xcodeproj/project.pbxproj b/submodules/JoinLinkPreviewUI/JoinLinkPreviewUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..05bcf1ae78 --- /dev/null +++ b/submodules/JoinLinkPreviewUI/JoinLinkPreviewUI.xcodeproj/project.pbxproj @@ -0,0 +1,1189 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E297488D15D00000000 + + isa + PBXFileReference + name + JoinLinkPreviewUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/JoinLinkPreviewUI/JoinLinkPreviewUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E295ABC858700000000 + + isa + PBXFileReference + name + JoinLinkPreviewUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/JoinLinkPreviewUI/JoinLinkPreviewUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29CE5330E900000000 + + isa + PBXFileReference + name + JoinLinkPreviewUI-Release.xcconfig + path + ../../buck-out/gen/submodules/JoinLinkPreviewUI/JoinLinkPreviewUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E297488D15D00000000 + 1DD70E295ABC858700000000 + 1DD70E29CE5330E900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E297AB043C800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E297C42E82500000000 + + isa + PBXFileReference + name + JoinLinkPreviewController.swift + path + Sources/JoinLinkPreviewController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A1FFA8C700000000 + + isa + PBXFileReference + name + JoinLinkPreviewControllerNode.swift + path + Sources/JoinLinkPreviewControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C1060ADA00000000 + + isa + PBXFileReference + name + JoinLinkPreviewPeerContentNode.swift + path + Sources/JoinLinkPreviewPeerContentNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E297C42E82500000000 + 1DD70E29A1FFA8C700000000 + 1DD70E29C1060ADA00000000 + + + B401C979592FAC5800000000 + + isa + PBXGroup + name + JoinLinkPreviewUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29631179A600000000 + + isa + PBXFileReference + name + libJoinLinkPreviewUI.a + path + libJoinLinkPreviewUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29631179A600000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979592FAC5800000000 + B401C979C806358400000000 + + + E7A30F047C42E82500000000 + + isa + PBXBuildFile + fileRef + 1DD70E297C42E82500000000 + + E7A30F04A1FFA8C700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A1FFA8C700000000 + + E7A30F04C1060ADA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C1060ADA00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F047C42E82500000000 + E7A30F04A1FFA8C700000000 + E7A30F04C1060ADA00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04F523B9DE00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F041E16CC6C00000000 + E7A30F04BF0846EE00000000 + E7A30F0471ED41B100000000 + E7A30F04AC43662400000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04D233F68C00000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F04597BAFBB00000000 + E7A30F0481AE180900000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E297488D15D00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E295ABC858700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29CE5330E900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E592FAC5800000000 + + isa + PBXNativeTarget + name + JoinLinkPreviewUI + productName + JoinLinkPreviewUI + productReference + 1DD70E29631179A600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793592FAC5800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E592FAC5800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793592FAC5800000000 + + \ No newline at end of file diff --git a/submodules/JoinLinkPreviewUI/JoinLinkPreviewUI.xcodeproj/xcshareddata/xcschemes/JoinLinkPreviewUI.xcscheme b/submodules/JoinLinkPreviewUI/JoinLinkPreviewUI.xcodeproj/xcshareddata/xcschemes/JoinLinkPreviewUI.xcscheme new file mode 100644 index 0000000000..55c263fbaf --- /dev/null +++ b/submodules/JoinLinkPreviewUI/JoinLinkPreviewUI.xcodeproj/xcshareddata/xcschemes/JoinLinkPreviewUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LanguageLinkPreviewUI/BUCK b/submodules/LanguageLinkPreviewUI/BUCK new file mode 100644 index 0000000000..cafd7c1364 --- /dev/null +++ b/submodules/LanguageLinkPreviewUI/BUCK @@ -0,0 +1,24 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "LanguageLinkPreviewUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/TextFormat:TextFormat", + "//submodules/ShareController:ShareController", + "//submodules/AlertUI:AlertUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/LanguageLinkPreviewUI/LanguageLinkPreviewUI.xcodeproj/project.pbxproj b/submodules/LanguageLinkPreviewUI/LanguageLinkPreviewUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..e6b66cdaec --- /dev/null +++ b/submodules/LanguageLinkPreviewUI/LanguageLinkPreviewUI.xcodeproj/project.pbxproj @@ -0,0 +1,1189 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E291B18868B00000000 + + isa + PBXFileReference + name + LanguageLinkPreviewUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/LanguageLinkPreviewUI/LanguageLinkPreviewUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E299C33A73500000000 + + isa + PBXFileReference + name + LanguageLinkPreviewUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/LanguageLinkPreviewUI/LanguageLinkPreviewUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E290FCA529700000000 + + isa + PBXFileReference + name + LanguageLinkPreviewUI-Release.xcconfig + path + ../../buck-out/gen/submodules/LanguageLinkPreviewUI/LanguageLinkPreviewUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E291B18868B00000000 + 1DD70E299C33A73500000000 + 1DD70E290FCA529700000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E297AB043C800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2998BD6F4A00000000 + + isa + PBXFileReference + name + LanguageLinkPreviewContentNode.swift + path + Sources/LanguageLinkPreviewContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BB70D53700000000 + + isa + PBXFileReference + name + LanguageLinkPreviewController.swift + path + Sources/LanguageLinkPreviewController.swift + sourceTree + SOURCE_ROOT + + 1DD70E298F6CBCD900000000 + + isa + PBXFileReference + name + LanguageLinkPreviewControllerNode.swift + path + Sources/LanguageLinkPreviewControllerNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2998BD6F4A00000000 + 1DD70E29BB70D53700000000 + 1DD70E298F6CBCD900000000 + + + B401C979E2DE00EA00000000 + + isa + PBXGroup + name + LanguageLinkPreviewUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E291B78CC3800000000 + + isa + PBXFileReference + name + libLanguageLinkPreviewUI.a + path + libLanguageLinkPreviewUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E291B78CC3800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979E2DE00EA00000000 + B401C979C806358400000000 + + + E7A30F0498BD6F4A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2998BD6F4A00000000 + + E7A30F04BB70D53700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BB70D53700000000 + + E7A30F048F6CBCD900000000 + + isa + PBXBuildFile + fileRef + 1DD70E298F6CBCD900000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0498BD6F4A00000000 + E7A30F04BB70D53700000000 + E7A30F048F6CBCD900000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04F523B9DE00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F041E16CC6C00000000 + E7A30F04BF0846EE00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F04AC43662400000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04D233F68C00000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F04597BAFBB00000000 + E7A30F0481AE180900000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E291B18868B00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E299C33A73500000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E290FCA529700000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EE2DE00EA00000000 + + isa + PBXNativeTarget + name + LanguageLinkPreviewUI + productName + LanguageLinkPreviewUI + productReference + 1DD70E291B78CC3800000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793E2DE00EA00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EE2DE00EA00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793E2DE00EA00000000 + + \ No newline at end of file diff --git a/submodules/LanguageLinkPreviewUI/LanguageLinkPreviewUI.xcodeproj/xcshareddata/xcschemes/LanguageLinkPreviewUI.xcscheme b/submodules/LanguageLinkPreviewUI/LanguageLinkPreviewUI.xcodeproj/xcshareddata/xcschemes/LanguageLinkPreviewUI.xcscheme new file mode 100644 index 0000000000..b28b2bb870 --- /dev/null +++ b/submodules/LanguageLinkPreviewUI/LanguageLinkPreviewUI.xcodeproj/xcshareddata/xcschemes/LanguageLinkPreviewUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LanguageSuggestionUI/BUCK b/submodules/LanguageSuggestionUI/BUCK new file mode 100644 index 0000000000..ec182059c9 --- /dev/null +++ b/submodules/LanguageSuggestionUI/BUCK @@ -0,0 +1,21 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "LanguageSuggestionUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/ActivityIndicator:ActivityIndicator", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/LanguageSuggestionUI/LanguageSuggestionUI.xcodeproj/project.pbxproj b/submodules/LanguageSuggestionUI/LanguageSuggestionUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..82512cb266 --- /dev/null +++ b/submodules/LanguageSuggestionUI/LanguageSuggestionUI.xcodeproj/project.pbxproj @@ -0,0 +1,731 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29D1DBB78500000000 + + isa + PBXFileReference + name + LanguageSuggestionUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/LanguageSuggestionUI/LanguageSuggestionUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AEEE81AF00000000 + + isa + PBXFileReference + name + LanguageSuggestionUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/LanguageSuggestionUI/LanguageSuggestionUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2922852D1100000000 + + isa + PBXFileReference + name + LanguageSuggestionUI-Release.xcconfig + path + ../../buck-out/gen/submodules/LanguageSuggestionUI/LanguageSuggestionUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29D1DBB78500000000 + 1DD70E29AEEE81AF00000000 + 1DD70E2922852D1100000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2903669CFD00000000 + + isa + PBXFileReference + name + LanguageSuggestionController.swift + path + Sources/LanguageSuggestionController.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2903669CFD00000000 + + + B401C979C1C23B3000000000 + + isa + PBXGroup + name + LanguageSuggestionUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29E220F5E800000000 + + isa + PBXFileReference + name + libLanguageSuggestionUI.a + path + libLanguageSuggestionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29E220F5E800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C1C23B3000000000 + B401C979C806358400000000 + + + E7A30F0403669CFD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2903669CFD00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0403669CFD00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04BF0846EE00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29D1DBB78500000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29AEEE81AF00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2922852D1100000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EC1C23B3000000000 + + isa + PBXNativeTarget + name + LanguageSuggestionUI + productName + LanguageSuggestionUI + productReference + 1DD70E29E220F5E800000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793C1C23B3000000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EC1C23B3000000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793C1C23B3000000000 + + \ No newline at end of file diff --git a/submodules/LanguageSuggestionUI/LanguageSuggestionUI.xcodeproj/xcshareddata/xcschemes/LanguageSuggestionUI.xcscheme b/submodules/LanguageSuggestionUI/LanguageSuggestionUI.xcodeproj/xcshareddata/xcschemes/LanguageSuggestionUI.xcscheme new file mode 100644 index 0000000000..36baee0cb1 --- /dev/null +++ b/submodules/LanguageSuggestionUI/LanguageSuggestionUI.xcodeproj/xcshareddata/xcschemes/LanguageSuggestionUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LegacyDataImport/LegacyDataImport.xcodeproj/project.pbxproj b/submodules/LegacyDataImport/LegacyDataImport.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..085a3b1232 --- /dev/null +++ b/submodules/LegacyDataImport/LegacyDataImport.xcodeproj/project.pbxproj @@ -0,0 +1,1045 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29C7A79CFD00000000 + + isa + PBXFileReference + name + LegacyDataImport-Debug.xcconfig + path + ../../buck-out/gen/submodules/LegacyDataImport/LegacyDataImport-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E296156E92700000000 + + isa + PBXFileReference + name + LegacyDataImport-Profile.xcconfig + path + ../../buck-out/gen/submodules/LegacyDataImport/LegacyDataImport-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D4ED948900000000 + + isa + PBXFileReference + name + LegacyDataImport-Release.xcconfig + path + ../../buck-out/gen/submodules/LegacyDataImport/LegacyDataImport-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29C7A79CFD00000000 + 1DD70E296156E92700000000 + 1DD70E29D4ED948900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2988BAAFC800000000 + + isa + PBXFileReference + name + libTelegramNotices.a + path + libTelegramNotices.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2988BAAFC800000000 + 1DD70E290DD17C7100000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29611C2D6E00000000 + + isa + PBXFileReference + name + LegacyBuffer.swift + path + Sources/LegacyBuffer.swift + sourceTree + SOURCE_ROOT + + 1DD70E29AF9F640B00000000 + + isa + PBXFileReference + name + LegacyChatImport.swift + path + Sources/LegacyChatImport.swift + sourceTree + SOURCE_ROOT + + 1DD70E292BEDD55D00000000 + + isa + PBXFileReference + name + LegacyDataImport.swift + path + Sources/LegacyDataImport.swift + sourceTree + SOURCE_ROOT + + 1DD70E29EA80C0A400000000 + + isa + PBXFileReference + name + LegacyDataImportSplash.swift + path + Sources/LegacyDataImportSplash.swift + sourceTree + SOURCE_ROOT + + 1DD70E29690AB02F00000000 + + isa + PBXFileReference + name + LegacyFileImport.swift + path + Sources/LegacyFileImport.swift + sourceTree + SOURCE_ROOT + + 1DD70E295D032F7900000000 + + isa + PBXFileReference + name + LegacyPreferencesImport.swift + path + Sources/LegacyPreferencesImport.swift + sourceTree + SOURCE_ROOT + + 1DD70E29AA91074100000000 + + isa + PBXFileReference + name + LegacyResourceImport.swift + path + Sources/LegacyResourceImport.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F3FBE2C800000000 + + isa + PBXFileReference + name + LegacyUserDataImport.swift + path + Sources/LegacyUserDataImport.swift + sourceTree + SOURCE_ROOT + + 1DD70E2961AB9DA800000000 + + isa + PBXFileReference + name + TGAutoDownloadPreferences.h + path + Sources/TGAutoDownloadPreferences.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2961AB9DAD00000000 + + isa + PBXFileReference + name + TGAutoDownloadPreferences.m + path + Sources/TGAutoDownloadPreferences.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E290A208B5600000000 + + isa + PBXFileReference + name + TGPresentationAutoNightPreferences.h + path + Sources/TGPresentationAutoNightPreferences.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E290A208B5B00000000 + + isa + PBXFileReference + name + TGPresentationAutoNightPreferences.m + path + Sources/TGPresentationAutoNightPreferences.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29349E5BE800000000 + + isa + PBXFileReference + name + TGProxyItem.h + path + Sources/TGProxyItem.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29349E5BED00000000 + + isa + PBXFileReference + name + TGProxyItem.m + path + Sources/TGProxyItem.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29611C2D6E00000000 + 1DD70E29AF9F640B00000000 + 1DD70E292BEDD55D00000000 + 1DD70E29EA80C0A400000000 + 1DD70E29690AB02F00000000 + 1DD70E295D032F7900000000 + 1DD70E29AA91074100000000 + 1DD70E29F3FBE2C800000000 + 1DD70E2961AB9DA800000000 + 1DD70E2961AB9DAD00000000 + 1DD70E290A208B5600000000 + 1DD70E290A208B5B00000000 + 1DD70E29349E5BE800000000 + 1DD70E29349E5BED00000000 + + + B401C979B60714B800000000 + + isa + PBXGroup + name + LegacyDataImport + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E295DB6B7F000000000 + + isa + PBXFileReference + name + libLegacyDataImport.a + path + libLegacyDataImport.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E295DB6B7F000000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979B60714B800000000 + B401C979C806358400000000 + + + E7A30F04611C2D6E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29611C2D6E00000000 + + E7A30F04AF9F640B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AF9F640B00000000 + + E7A30F042BEDD55D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292BEDD55D00000000 + + E7A30F04EA80C0A400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA80C0A400000000 + + E7A30F04690AB02F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29690AB02F00000000 + + E7A30F045D032F7900000000 + + isa + PBXBuildFile + fileRef + 1DD70E295D032F7900000000 + + E7A30F04AA91074100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AA91074100000000 + + E7A30F04F3FBE2C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F3FBE2C800000000 + + E7A30F0461AB9DAD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2961AB9DAD00000000 + + E7A30F040A208B5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290A208B5B00000000 + + E7A30F04349E5BED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29349E5BED00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04611C2D6E00000000 + E7A30F04AF9F640B00000000 + E7A30F042BEDD55D00000000 + E7A30F04EA80C0A400000000 + E7A30F04690AB02F00000000 + E7A30F045D032F7900000000 + E7A30F04AA91074100000000 + E7A30F04F3FBE2C800000000 + E7A30F0461AB9DAD00000000 + E7A30F040A208B5B00000000 + E7A30F04349E5BED00000000 + + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + E7A30F0488BAAFC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2988BAAFC800000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04DB6520C800000000 + E7A30F04FF334B1F00000000 + E7A30F043E4DE92B00000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F045915423000000000 + E7A30F04F33FDAC300000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F042417E0B200000000 + E7A30F040DD17C7100000000 + E7A30F0488BAAFC800000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29C7A79CFD00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E296156E92700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29D4ED948900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EB60714B800000000 + + isa + PBXNativeTarget + name + LegacyDataImport + productName + LegacyDataImport + productReference + 1DD70E295DB6B7F000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793B60714B800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EB60714B800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793B60714B800000000 + + \ No newline at end of file diff --git a/submodules/LegacyDataImport/LegacyDataImport.xcodeproj/xcshareddata/xcschemes/LegacyDataImport.xcscheme b/submodules/LegacyDataImport/LegacyDataImport.xcodeproj/xcshareddata/xcschemes/LegacyDataImport.xcscheme new file mode 100644 index 0000000000..48bdf85794 --- /dev/null +++ b/submodules/LegacyDataImport/LegacyDataImport.xcodeproj/xcshareddata/xcschemes/LegacyDataImport.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LegacyMediaPickerUI/BUCK b/submodules/LegacyMediaPickerUI/BUCK new file mode 100644 index 0000000000..65c4d92fec --- /dev/null +++ b/submodules/LegacyMediaPickerUI/BUCK @@ -0,0 +1,32 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "LegacyMediaPickerUI", + srcs = glob([ + "Sources/**/*.swift", + "Sources/**/*.m", + ]), + headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/LegacyMediaPickerUI.h"]), + exported_headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/LegacyMediaPickerUI.h"]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/LegacyUI:LegacyUI", + "//submodules/MimeTypes:MimeTypes", + "//submodules/LocalMediaResources:LocalMediaResources", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/LegacyMediaPickerUI/LegacyMediaPickerUI.xcodeproj/project.pbxproj b/submodules/LegacyMediaPickerUI/LegacyMediaPickerUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..6a29249e90 --- /dev/null +++ b/submodules/LegacyMediaPickerUI/LegacyMediaPickerUI.xcodeproj/project.pbxproj @@ -0,0 +1,999 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29408D4CD800000000 + + isa + PBXFileReference + name + LegacyMediaPickerUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/LegacyMediaPickerUI/LegacyMediaPickerUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2937900E4200000000 + + isa + PBXFileReference + name + LegacyMediaPickerUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/LegacyMediaPickerUI/LegacyMediaPickerUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AB26B9A400000000 + + isa + PBXFileReference + name + LegacyMediaPickerUI-Release.xcconfig + path + ../../buck-out/gen/submodules/LegacyMediaPickerUI/LegacyMediaPickerUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29408D4CD800000000 + 1DD70E2937900E4200000000 + 1DD70E29AB26B9A400000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C6E517A300000000 + + isa + PBXFileReference + name + libImageCompression.a + path + libImageCompression.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2952137F3500000000 + + isa + PBXFileReference + name + libLegacyUI.a + path + libLegacyUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2968BAC05A00000000 + + isa + PBXFileReference + name + libLocalMediaResources.a + path + libLocalMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29C6E517A300000000 + 1DD70E2952137F3500000000 + 1DD70E2968BAC05A00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29B883E7D000000000 + + isa + PBXFileReference + name + LegacyAttachmentMenu.swift + path + Sources/LegacyAttachmentMenu.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A10DBC7500000000 + + isa + PBXFileReference + name + LegacyAvatarPicker.swift + path + Sources/LegacyAvatarPicker.swift + sourceTree + SOURCE_ROOT + + 1DD70E293C87ECC500000000 + + isa + PBXFileReference + name + LegacyImagePicker.swift + path + Sources/LegacyImagePicker.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F44A23ED00000000 + + isa + PBXFileReference + name + LegacyImageProcessors.h + path + Sources/LegacyImageProcessors.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29F44A23F200000000 + + isa + PBXFileReference + name + LegacyImageProcessors.m + path + Sources/LegacyImageProcessors.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E297E812ACF00000000 + + isa + PBXFileReference + name + LegacyMediaPickers.swift + path + Sources/LegacyMediaPickers.swift + sourceTree + SOURCE_ROOT + + 1DD70E2984310F4700000000 + + isa + PBXFileReference + name + LegacySuggestionContext.swift + path + Sources/LegacySuggestionContext.swift + sourceTree + SOURCE_ROOT + + 1DD70E299E1B2B6C00000000 + + isa + PBXFileReference + name + LegacyWallpaperPicker.swift + path + Sources/LegacyWallpaperPicker.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29B883E7D000000000 + 1DD70E29A10DBC7500000000 + 1DD70E293C87ECC500000000 + 1DD70E29F44A23ED00000000 + 1DD70E29F44A23F200000000 + 1DD70E297E812ACF00000000 + 1DD70E2984310F4700000000 + 1DD70E299E1B2B6C00000000 + + + B401C97932210A3D00000000 + + isa + PBXGroup + name + LegacyMediaPickerUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E296C39078B00000000 + + isa + PBXFileReference + name + libLegacyMediaPickerUI.a + path + libLegacyMediaPickerUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E296C39078B00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C97932210A3D00000000 + B401C979C806358400000000 + + + E7A30F04B883E7D000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B883E7D000000000 + + E7A30F04A10DBC7500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A10DBC7500000000 + + E7A30F043C87ECC500000000 + + isa + PBXBuildFile + fileRef + 1DD70E293C87ECC500000000 + + E7A30F04F44A23F200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F44A23F200000000 + + E7A30F047E812ACF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E297E812ACF00000000 + + E7A30F0484310F4700000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984310F4700000000 + + E7A30F049E1B2B6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299E1B2B6C00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04B883E7D000000000 + E7A30F04A10DBC7500000000 + E7A30F043C87ECC500000000 + E7A30F04F44A23F200000000 + E7A30F047E812ACF00000000 + E7A30F0484310F4700000000 + E7A30F049E1B2B6C00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F0452137F3500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2952137F3500000000 + + E7A30F04C6E517A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C6E517A300000000 + + E7A30F0468BAC05A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2968BAC05A00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F042417E0B200000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F0452137F3500000000 + E7A30F04C6E517A300000000 + E7A30F0468BAC05A00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29408D4CD800000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2937900E4200000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29AB26B9A400000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E32210A3D00000000 + + isa + PBXNativeTarget + name + LegacyMediaPickerUI + productName + LegacyMediaPickerUI + productReference + 1DD70E296C39078B00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479332210A3D00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E32210A3D00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479332210A3D00000000 + + \ No newline at end of file diff --git a/submodules/LegacyMediaPickerUI/LegacyMediaPickerUI.xcodeproj/xcshareddata/xcschemes/LegacyMediaPickerUI.xcscheme b/submodules/LegacyMediaPickerUI/LegacyMediaPickerUI.xcodeproj/xcshareddata/xcschemes/LegacyMediaPickerUI.xcscheme new file mode 100644 index 0000000000..ad5a275b48 --- /dev/null +++ b/submodules/LegacyMediaPickerUI/LegacyMediaPickerUI.xcodeproj/xcshareddata/xcschemes/LegacyMediaPickerUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LegacyUI/BUCK b/submodules/LegacyUI/BUCK new file mode 100644 index 0000000000..52cb17a0c9 --- /dev/null +++ b/submodules/LegacyUI/BUCK @@ -0,0 +1,24 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "LegacyUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramAudio:TelegramAudio", + "//submodules/DeviceAccess:DeviceAccess", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/StickerResources:StickerResources", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/LegacyUI/LegacyUI.xcodeproj/project.pbxproj b/submodules/LegacyUI/LegacyUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..a01811ed9c --- /dev/null +++ b/submodules/LegacyUI/LegacyUI.xcodeproj/project.pbxproj @@ -0,0 +1,997 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29229182D800000000 + + isa + PBXFileReference + name + LegacyUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/LegacyUI/LegacyUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A95EC44200000000 + + isa + PBXFileReference + name + LegacyUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/LegacyUI/LegacyUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E291CF56FA400000000 + + isa + PBXFileReference + name + LegacyUI-Release.xcconfig + path + ../../buck-out/gen/submodules/LegacyUI/LegacyUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29229182D800000000 + 1DD70E29A95EC44200000000 + 1DD70E291CF56FA400000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29CEDA9ABA00000000 + + isa + PBXFileReference + name + LegacyComponentsStickers.swift + path + Sources/LegacyComponentsStickers.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C3F09B4A00000000 + + isa + PBXFileReference + name + LegacyController.swift + path + Sources/LegacyController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2927A5416C00000000 + + isa + PBXFileReference + name + LegacyControllerNode.swift + path + Sources/LegacyControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E297ACDA44500000000 + + isa + PBXFileReference + name + LegacyEmptyController.swift + path + Sources/LegacyEmptyController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F3F8C5DB00000000 + + isa + PBXFileReference + name + LegacyHTTPOperationImpl.swift + path + Sources/LegacyHTTPOperationImpl.swift + sourceTree + SOURCE_ROOT + + 1DD70E2912B34EE000000000 + + isa + PBXFileReference + name + LegacyImageDownloadActor.swift + path + Sources/LegacyImageDownloadActor.swift + sourceTree + SOURCE_ROOT + + 1DD70E2900C1CDD400000000 + + isa + PBXFileReference + name + LegacyLocationVenueIconDataSource.swift + path + Sources/LegacyLocationVenueIconDataSource.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C7C40C8800000000 + + isa + PBXFileReference + name + LegacyMediaLocations.swift + path + Sources/LegacyMediaLocations.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C2600A3E00000000 + + isa + PBXFileReference + name + LegacyNavigationController.swift + path + Sources/LegacyNavigationController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E160621900000000 + + isa + PBXFileReference + name + LegacyPeerAvatarPlaceholderDataSource.swift + path + Sources/LegacyPeerAvatarPlaceholderDataSource.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F0DA041500000000 + + isa + PBXFileReference + name + TelegramInitializeLegacyComponents.swift + path + Sources/TelegramInitializeLegacyComponents.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29CEDA9ABA00000000 + 1DD70E29C3F09B4A00000000 + 1DD70E2927A5416C00000000 + 1DD70E297ACDA44500000000 + 1DD70E29F3F8C5DB00000000 + 1DD70E2912B34EE000000000 + 1DD70E2900C1CDD400000000 + 1DD70E29C7C40C8800000000 + 1DD70E29C2600A3E00000000 + 1DD70E29E160621900000000 + 1DD70E29F0DA041500000000 + + + B401C9796AF7943D00000000 + + isa + PBXGroup + name + LegacyUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2952137F3500000000 + + isa + PBXFileReference + name + libLegacyUI.a + path + libLegacyUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2952137F3500000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9796AF7943D00000000 + B401C979C806358400000000 + + + E7A30F04CEDA9ABA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CEDA9ABA00000000 + + E7A30F04C3F09B4A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C3F09B4A00000000 + + E7A30F0427A5416C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2927A5416C00000000 + + E7A30F047ACDA44500000000 + + isa + PBXBuildFile + fileRef + 1DD70E297ACDA44500000000 + + E7A30F04F3F8C5DB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F3F8C5DB00000000 + + E7A30F0412B34EE000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2912B34EE000000000 + + E7A30F0400C1CDD400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2900C1CDD400000000 + + E7A30F04C7C40C8800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7C40C8800000000 + + E7A30F04C2600A3E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C2600A3E00000000 + + E7A30F04E160621900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E160621900000000 + + E7A30F04F0DA041500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0DA041500000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04CEDA9ABA00000000 + E7A30F04C3F09B4A00000000 + E7A30F0427A5416C00000000 + E7A30F047ACDA44500000000 + E7A30F04F3F8C5DB00000000 + E7A30F0412B34EE000000000 + E7A30F0400C1CDD400000000 + E7A30F04C7C40C8800000000 + E7A30F04C2600A3E00000000 + E7A30F04E160621900000000 + E7A30F04F0DA041500000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F042417E0B200000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29229182D800000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29A95EC44200000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E291CF56FA400000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E6AF7943D00000000 + + isa + PBXNativeTarget + name + LegacyUI + productName + LegacyUI + productReference + 1DD70E2952137F3500000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847936AF7943D00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E6AF7943D00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847936AF7943D00000000 + + \ No newline at end of file diff --git a/submodules/LegacyUI/LegacyUI.xcodeproj/xcshareddata/xcschemes/LegacyUI.xcscheme b/submodules/LegacyUI/LegacyUI.xcodeproj/xcshareddata/xcschemes/LegacyUI.xcscheme new file mode 100644 index 0000000000..af9a8108b2 --- /dev/null +++ b/submodules/LegacyUI/LegacyUI.xcodeproj/xcshareddata/xcschemes/LegacyUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LightweightAccountData/LightweightAccountData.xcodeproj/project.pbxproj b/submodules/LightweightAccountData/LightweightAccountData.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..a59eb7c144 --- /dev/null +++ b/submodules/LightweightAccountData/LightweightAccountData.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29DACE11EC00000000 + + isa + PBXFileReference + name + LightweightAccountData-Debug.xcconfig + path + ../../buck-out/gen/submodules/LightweightAccountData/LightweightAccountData-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2944B3DE5600000000 + + isa + PBXFileReference + name + LightweightAccountData-Profile.xcconfig + path + ../../buck-out/gen/submodules/LightweightAccountData/LightweightAccountData-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B84A89B800000000 + + isa + PBXFileReference + name + LightweightAccountData-Release.xcconfig + path + ../../buck-out/gen/submodules/LightweightAccountData/LightweightAccountData-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29DACE11EC00000000 + 1DD70E2944B3DE5600000000 + 1DD70E29B84A89B800000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29C1FA48DB00000000 + + isa + PBXFileReference + name + SharedAccountInfo.swift + path + Sources/SharedAccountInfo.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29C1FA48DB00000000 + + + B401C9791D593FA900000000 + + isa + PBXGroup + name + LightweightAccountData + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29B6DBA2E100000000 + + isa + PBXFileReference + name + libLightweightAccountData.a + path + libLightweightAccountData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29B6DBA2E100000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C9791D593FA900000000 + B401C979C806358400000000 + + + E7A30F04C1FA48DB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C1FA48DB00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04C1FA48DB00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29DACE11EC00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2944B3DE5600000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29B84A89B800000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E1D593FA900000000 + + isa + PBXNativeTarget + name + LightweightAccountData + productName + LightweightAccountData + productReference + 1DD70E29B6DBA2E100000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847931D593FA900000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E1D593FA900000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847931D593FA900000000 + + \ No newline at end of file diff --git a/submodules/LightweightAccountData/LightweightAccountData.xcodeproj/xcshareddata/xcschemes/LightweightAccountData.xcscheme b/submodules/LightweightAccountData/LightweightAccountData.xcodeproj/xcshareddata/xcschemes/LightweightAccountData.xcscheme new file mode 100644 index 0000000000..a0d1a6d800 --- /dev/null +++ b/submodules/LightweightAccountData/LightweightAccountData.xcodeproj/xcshareddata/xcschemes/LightweightAccountData.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ListSectionHeaderNode/BUCK b/submodules/ListSectionHeaderNode/BUCK new file mode 100644 index 0000000000..25fbe0526c --- /dev/null +++ b/submodules/ListSectionHeaderNode/BUCK @@ -0,0 +1,17 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ListSectionHeaderNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ListSectionHeaderNode/ListSectionHeaderNode.xcodeproj/project.pbxproj b/submodules/ListSectionHeaderNode/ListSectionHeaderNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..2480c37e45 --- /dev/null +++ b/submodules/ListSectionHeaderNode/ListSectionHeaderNode.xcodeproj/project.pbxproj @@ -0,0 +1,511 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2968846C1F00000000 + + isa + PBXFileReference + name + ListSectionHeaderNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/ListSectionHeaderNode/ListSectionHeaderNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E293E3C77C900000000 + + isa + PBXFileReference + name + ListSectionHeaderNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/ListSectionHeaderNode/ListSectionHeaderNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B1D3232B00000000 + + isa + PBXFileReference + name + ListSectionHeaderNode-Release.xcconfig + path + ../../buck-out/gen/submodules/ListSectionHeaderNode/ListSectionHeaderNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2968846C1F00000000 + 1DD70E293E3C77C900000000 + 1DD70E29B1D3232B00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2908AF17FB00000000 + + isa + PBXFileReference + name + ListSectionHeaderNode.swift + path + Sources/ListSectionHeaderNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2908AF17FB00000000 + + + B401C979831E25D600000000 + + isa + PBXGroup + name + ListSectionHeaderNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29AC43662400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979831E25D600000000 + B401C979C806358400000000 + + + E7A30F0408AF17FB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2908AF17FB00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0408AF17FB00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2968846C1F00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E293E3C77C900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29B1D3232B00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E831E25D600000000 + + isa + PBXNativeTarget + name + ListSectionHeaderNode + productName + ListSectionHeaderNode + productReference + 1DD70E29AC43662400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793831E25D600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E831E25D600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793831E25D600000000 + + \ No newline at end of file diff --git a/submodules/ListSectionHeaderNode/ListSectionHeaderNode.xcodeproj/xcshareddata/xcschemes/ListSectionHeaderNode.xcscheme b/submodules/ListSectionHeaderNode/ListSectionHeaderNode.xcodeproj/xcshareddata/xcschemes/ListSectionHeaderNode.xcscheme new file mode 100644 index 0000000000..df2198b45b --- /dev/null +++ b/submodules/ListSectionHeaderNode/ListSectionHeaderNode.xcodeproj/xcshareddata/xcschemes/ListSectionHeaderNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LiveLocationManager/LiveLocationManager.xcodeproj/project.pbxproj b/submodules/LiveLocationManager/LiveLocationManager.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..070c6a8fa3 --- /dev/null +++ b/submodules/LiveLocationManager/LiveLocationManager.xcodeproj/project.pbxproj @@ -0,0 +1,729 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29A70D73A900000000 + + isa + PBXFileReference + name + LiveLocationManager-Debug.xcconfig + path + ../../buck-out/gen/submodules/LiveLocationManager/LiveLocationManager-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29FEA1C4D300000000 + + isa + PBXFileReference + name + LiveLocationManager-Profile.xcconfig + path + ../../buck-out/gen/submodules/LiveLocationManager/LiveLocationManager-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E297238703500000000 + + isa + PBXFileReference + name + LiveLocationManager-Release.xcconfig + path + ../../buck-out/gen/submodules/LiveLocationManager/LiveLocationManager-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29A70D73A900000000 + 1DD70E29FEA1C4D300000000 + 1DD70E297238703500000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29DF578D3100000000 + + isa + PBXFileReference + name + LiveLocationManager.swift + path + Sources/LiveLocationManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E293991010D00000000 + + isa + PBXFileReference + name + LiveLocationSummaryManager.swift + path + Sources/LiveLocationSummaryManager.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29DF578D3100000000 + 1DD70E293991010D00000000 + + + B401C979C9BC3B8C00000000 + + isa + PBXGroup + name + LiveLocationManager + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2989CD211A00000000 + + isa + PBXFileReference + name + libLiveLocationManager.a + path + libLiveLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2989CD211A00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C9BC3B8C00000000 + B401C979C806358400000000 + + + E7A30F04DF578D3100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF578D3100000000 + + E7A30F043991010D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293991010D00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04DF578D3100000000 + E7A30F043991010D00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29A70D73A900000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29FEA1C4D300000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E297238703500000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EC9BC3B8C00000000 + + isa + PBXNativeTarget + name + LiveLocationManager + productName + LiveLocationManager + productReference + 1DD70E2989CD211A00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793C9BC3B8C00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EC9BC3B8C00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793C9BC3B8C00000000 + + \ No newline at end of file diff --git a/submodules/LiveLocationManager/LiveLocationManager.xcodeproj/xcshareddata/xcschemes/LiveLocationManager.xcscheme b/submodules/LiveLocationManager/LiveLocationManager.xcodeproj/xcshareddata/xcschemes/LiveLocationManager.xcscheme new file mode 100644 index 0000000000..3ec04d8728 --- /dev/null +++ b/submodules/LiveLocationManager/LiveLocationManager.xcodeproj/xcshareddata/xcschemes/LiveLocationManager.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LiveLocationPositionNode/LiveLocationPositionNode.xcodeproj/project.pbxproj b/submodules/LiveLocationPositionNode/LiveLocationPositionNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..723bd209fd --- /dev/null +++ b/submodules/LiveLocationPositionNode/LiveLocationPositionNode.xcodeproj/project.pbxproj @@ -0,0 +1,641 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E293F9970E900000000 + + isa + PBXFileReference + name + LiveLocationPositionNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/LiveLocationPositionNode/LiveLocationPositionNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A423721300000000 + + isa + PBXFileReference + name + LiveLocationPositionNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/LiveLocationPositionNode/LiveLocationPositionNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2917BA1D7500000000 + + isa + PBXFileReference + name + LiveLocationPositionNode-Release.xcconfig + path + ../../buck-out/gen/submodules/LiveLocationPositionNode/LiveLocationPositionNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E293F9970E900000000 + 1DD70E29A423721300000000 + 1DD70E2917BA1D7500000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + 1DD70E29CD296A8300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29500D752000000000 + + isa + PBXFileReference + name + ChatMessageLiveLocationPositionNode.swift + path + Sources/ChatMessageLiveLocationPositionNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29500D752000000000 + 1DD70E291289FAA500000000 + + + B401C97946DD664C00000000 + + isa + PBXGroup + name + LiveLocationPositionNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E292995DF8400000000 + + isa + PBXFileReference + name + libLiveLocationPositionNode.a + path + libLiveLocationPositionNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E292995DF8400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C97946DD664C00000000 + B401C979C806358400000000 + + + E7A30F04500D752000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29500D752000000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04500D752000000000 + E7A30F041289FAA500000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F04D6F14E1000000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0484A59C1D00000000 + E7A30F04A54A195300000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E293F9970E900000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29A423721300000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2917BA1D7500000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E46DD664C00000000 + + isa + PBXNativeTarget + name + LiveLocationPositionNode + productName + LiveLocationPositionNode + productReference + 1DD70E292995DF8400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479346DD664C00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E46DD664C00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479346DD664C00000000 + + \ No newline at end of file diff --git a/submodules/LiveLocationPositionNode/LiveLocationPositionNode.xcodeproj/xcshareddata/xcschemes/LiveLocationPositionNode.xcscheme b/submodules/LiveLocationPositionNode/LiveLocationPositionNode.xcodeproj/xcshareddata/xcschemes/LiveLocationPositionNode.xcscheme new file mode 100644 index 0000000000..da939feaef --- /dev/null +++ b/submodules/LiveLocationPositionNode/LiveLocationPositionNode.xcodeproj/xcshareddata/xcschemes/LiveLocationPositionNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LiveLocationTimerNode/LiveLocationTimerNode.xcodeproj/project.pbxproj b/submodules/LiveLocationTimerNode/LiveLocationTimerNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..3781ba0ec9 --- /dev/null +++ b/submodules/LiveLocationTimerNode/LiveLocationTimerNode.xcodeproj/project.pbxproj @@ -0,0 +1,511 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29B9575CEF00000000 + + isa + PBXFileReference + name + LiveLocationTimerNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/LiveLocationTimerNode/LiveLocationTimerNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A616749900000000 + + isa + PBXFileReference + name + LiveLocationTimerNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/LiveLocationTimerNode/LiveLocationTimerNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2919AD1FFB00000000 + + isa + PBXFileReference + name + LiveLocationTimerNode-Release.xcconfig + path + ../../buck-out/gen/submodules/LiveLocationTimerNode/LiveLocationTimerNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29B9575CEF00000000 + 1DD70E29A616749900000000 + 1DD70E2919AD1FFB00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29F41ED65C00000000 + + isa + PBXFileReference + name + ChatMessageLiveLocationTimerNode.swift + path + Sources/ChatMessageLiveLocationTimerNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29F41ED65C00000000 + + + B401C9796B01AF0600000000 + + isa + PBXGroup + name + LiveLocationTimerNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E292969635400000000 + + isa + PBXFileReference + name + libLiveLocationTimerNode.a + path + libLiveLocationTimerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E292969635400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9796B01AF0600000000 + B401C979C806358400000000 + + + E7A30F04F41ED65C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F41ED65C00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04F41ED65C00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29B9575CEF00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29A616749900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2919AD1FFB00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E6B01AF0600000000 + + isa + PBXNativeTarget + name + LiveLocationTimerNode + productName + LiveLocationTimerNode + productReference + 1DD70E292969635400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847936B01AF0600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E6B01AF0600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847936B01AF0600000000 + + \ No newline at end of file diff --git a/submodules/LiveLocationTimerNode/LiveLocationTimerNode.xcodeproj/xcshareddata/xcschemes/LiveLocationTimerNode.xcscheme b/submodules/LiveLocationTimerNode/LiveLocationTimerNode.xcodeproj/xcshareddata/xcschemes/LiveLocationTimerNode.xcscheme new file mode 100644 index 0000000000..ba73246afb --- /dev/null +++ b/submodules/LiveLocationTimerNode/LiveLocationTimerNode.xcodeproj/xcshareddata/xcschemes/LiveLocationTimerNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LocalAuth/LocalAuth.xcodeproj/project.pbxproj b/submodules/LocalAuth/LocalAuth.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..78fee7634d --- /dev/null +++ b/submodules/LocalAuth/LocalAuth.xcodeproj/project.pbxproj @@ -0,0 +1,379 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2965761CC200000000 + + isa + PBXFileReference + name + LocalAuth-Debug.xcconfig + path + ../../buck-out/gen/submodules/LocalAuth/LocalAuth-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29C5848BAC00000000 + + isa + PBXFileReference + name + LocalAuth-Profile.xcconfig + path + ../../buck-out/gen/submodules/LocalAuth/LocalAuth-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29391B370E00000000 + + isa + PBXFileReference + name + LocalAuth-Release.xcconfig + path + ../../buck-out/gen/submodules/LocalAuth/LocalAuth-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2965761CC200000000 + 1DD70E29C5848BAC00000000 + 1DD70E29391B370E00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29D65BA68200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29424C93F800000000 + + isa + PBXFileReference + name + LocalAuth.swift + path + Sources/LocalAuth.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29424C93F800000000 + + + B401C9792F93A39300000000 + + isa + PBXGroup + name + LocalAuth + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29A889192100000000 + + isa + PBXFileReference + name + libLocalAuth.a + path + libLocalAuth.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29A889192100000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9792F93A39300000000 + B401C979C806358400000000 + + + E7A30F04424C93F800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29424C93F800000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04424C93F800000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2965761CC200000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29C5848BAC00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29391B370E00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E2F93A39300000000 + + isa + PBXNativeTarget + name + LocalAuth + productName + LocalAuth + productReference + 1DD70E29A889192100000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847932F93A39300000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E2F93A39300000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847932F93A39300000000 + + \ No newline at end of file diff --git a/submodules/LocalAuth/LocalAuth.xcodeproj/xcshareddata/xcschemes/LocalAuth.xcscheme b/submodules/LocalAuth/LocalAuth.xcodeproj/xcshareddata/xcschemes/LocalAuth.xcscheme new file mode 100644 index 0000000000..039036efb3 --- /dev/null +++ b/submodules/LocalAuth/LocalAuth.xcodeproj/xcshareddata/xcschemes/LocalAuth.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LocalMediaResources/LocalMediaResources.xcodeproj/project.pbxproj b/submodules/LocalMediaResources/LocalMediaResources.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..78fe7f3ae3 --- /dev/null +++ b/submodules/LocalMediaResources/LocalMediaResources.xcodeproj/project.pbxproj @@ -0,0 +1,465 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2968EC9C6900000000 + + isa + PBXFileReference + name + LocalMediaResources-Debug.xcconfig + path + ../../buck-out/gen/submodules/LocalMediaResources/LocalMediaResources-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29C559BD9300000000 + + isa + PBXFileReference + name + LocalMediaResources-Profile.xcconfig + path + ../../buck-out/gen/submodules/LocalMediaResources/LocalMediaResources-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2938F068F500000000 + + isa + PBXFileReference + name + LocalMediaResources-Release.xcconfig + path + ../../buck-out/gen/submodules/LocalMediaResources/LocalMediaResources-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2968EC9C6900000000 + 1DD70E29C559BD9300000000 + 1DD70E2938F068F500000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29C6E517A300000000 + + isa + PBXFileReference + name + libImageCompression.a + path + libImageCompression.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29C6E517A300000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29B5ED8F8B00000000 + + isa + PBXFileReference + name + FetchPhotoLibraryImageResource.swift + path + Sources/FetchPhotoLibraryImageResource.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C67E30A600000000 + + isa + PBXFileReference + name + MediaResources.swift + path + Sources/MediaResources.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29B5ED8F8B00000000 + 1DD70E29C67E30A600000000 + + + B401C9798A08AACC00000000 + + isa + PBXGroup + name + LocalMediaResources + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2968BAC05A00000000 + + isa + PBXFileReference + name + libLocalMediaResources.a + path + libLocalMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2968BAC05A00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9798A08AACC00000000 + B401C979C806358400000000 + + + E7A30F04B5ED8F8B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B5ED8F8B00000000 + + E7A30F04C67E30A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C67E30A600000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04B5ED8F8B00000000 + E7A30F04C67E30A600000000 + + + E7A30F04C6E517A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C6E517A300000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04C6E517A300000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2968EC9C6900000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29C559BD9300000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2938F068F500000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E8A08AACC00000000 + + isa + PBXNativeTarget + name + LocalMediaResources + productName + LocalMediaResources + productReference + 1DD70E2968BAC05A00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847938A08AACC00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E8A08AACC00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847938A08AACC00000000 + + \ No newline at end of file diff --git a/submodules/LocalMediaResources/LocalMediaResources.xcodeproj/xcshareddata/xcschemes/LocalMediaResources.xcscheme b/submodules/LocalMediaResources/LocalMediaResources.xcodeproj/xcshareddata/xcschemes/LocalMediaResources.xcscheme new file mode 100644 index 0000000000..f76d39888c --- /dev/null +++ b/submodules/LocalMediaResources/LocalMediaResources.xcodeproj/xcshareddata/xcschemes/LocalMediaResources.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LocalizedPeerData/LocalizedPeerData.xcodeproj/project.pbxproj b/submodules/LocalizedPeerData/LocalizedPeerData.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..bb662bce41 --- /dev/null +++ b/submodules/LocalizedPeerData/LocalizedPeerData.xcodeproj/project.pbxproj @@ -0,0 +1,511 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2925CD652E00000000 + + isa + PBXFileReference + name + LocalizedPeerData-Debug.xcconfig + path + ../../buck-out/gen/submodules/LocalizedPeerData/LocalizedPeerData-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29CD2B691800000000 + + isa + PBXFileReference + name + LocalizedPeerData-Profile.xcconfig + path + ../../buck-out/gen/submodules/LocalizedPeerData/LocalizedPeerData-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2940C2147A00000000 + + isa + PBXFileReference + name + LocalizedPeerData-Release.xcconfig + path + ../../buck-out/gen/submodules/LocalizedPeerData/LocalizedPeerData-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2925CD652E00000000 + 1DD70E29CD2B691800000000 + 1DD70E2940C2147A00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29FAEAC81B00000000 + + isa + PBXFileReference + name + PeerTitle.swift + path + Sources/PeerTitle.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29FAEAC81B00000000 + + + B401C979255A10A700000000 + + isa + PBXGroup + name + LocalizedPeerData + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29CE34063500000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979255A10A700000000 + B401C979C806358400000000 + + + E7A30F04FAEAC81B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FAEAC81B00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04FAEAC81B00000000 + + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04DB6520C800000000 + E7A30F04119CDA0700000000 + E7A30F04FF334B1F00000000 + E7A30F04D65BA68200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2925CD652E00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29CD2B691800000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2940C2147A00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E255A10A700000000 + + isa + PBXNativeTarget + name + LocalizedPeerData + productName + LocalizedPeerData + productReference + 1DD70E29CE34063500000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793255A10A700000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E255A10A700000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793255A10A700000000 + + \ No newline at end of file diff --git a/submodules/LocalizedPeerData/LocalizedPeerData.xcodeproj/xcshareddata/xcschemes/LocalizedPeerData.xcscheme b/submodules/LocalizedPeerData/LocalizedPeerData.xcodeproj/xcshareddata/xcschemes/LocalizedPeerData.xcscheme new file mode 100644 index 0000000000..6600b05621 --- /dev/null +++ b/submodules/LocalizedPeerData/LocalizedPeerData.xcodeproj/xcshareddata/xcschemes/LocalizedPeerData.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/LocationUI/BUCK b/submodules/LocationUI/BUCK new file mode 100644 index 0000000000..613577ee01 --- /dev/null +++ b/submodules/LocationUI/BUCK @@ -0,0 +1,26 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "LocationUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/ShareController:ShareController", + "//submodules/AccountContext:AccountContext", + "//submodules/OpenInExternalAppUI:OpenInExternalAppUI", + "//submodules/LegacyUI:LegacyUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/CoreLocation.framework", + ], +) diff --git a/submodules/LocationUI/LocationUI.xcodeproj/project.pbxproj b/submodules/LocationUI/LocationUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..ac70663b1f --- /dev/null +++ b/submodules/LocationUI/LocationUI.xcodeproj/project.pbxproj @@ -0,0 +1,1277 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29487E346C00000000 + + isa + PBXFileReference + name + LocationUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/LocationUI/LocationUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2906E560D600000000 + + isa + PBXFileReference + name + LocationUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/LocationUI/LocationUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E297A7C0C3800000000 + + isa + PBXFileReference + name + LocationUI-Release.xcconfig + path + ../../buck-out/gen/submodules/LocationUI/LocationUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29487E346C00000000 + 1DD70E2906E560D600000000 + 1DD70E297A7C0C3800000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2952137F3500000000 + + isa + PBXFileReference + name + libLegacyUI.a + path + libLegacyUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AF00DC4900000000 + + isa + PBXFileReference + name + libOpenInExternalAppUI.a + path + libOpenInExternalAppUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E297AB043C800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E2952137F3500000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29AF00DC4900000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E1165C1F00000000 + + isa + PBXFileReference + name + LegacyLocationController.swift + path + Sources/LegacyLocationController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FAFE229100000000 + + isa + PBXFileReference + name + LegacyLocationPicker.swift + path + Sources/LegacyLocationPicker.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E29E1165C1F00000000 + 1DD70E29FAFE229100000000 + + + B401C979D2B86D2900000000 + + isa + PBXGroup + name + LocationUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29E102CFE100000000 + + isa + PBXFileReference + name + libLocationUI.a + path + libLocationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29E102CFE100000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979D2B86D2900000000 + B401C979C806358400000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04E1165C1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E1165C1F00000000 + + E7A30F04FAFE229100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FAFE229100000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F04E1165C1F00000000 + E7A30F04FAFE229100000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F0452137F3500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2952137F3500000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F04AF00DC4900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AF00DC4900000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F042417E0B200000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F0452137F3500000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04490601EB00000000 + E7A30F04597BAFBB00000000 + E7A30F04AF00DC4900000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F041E16CC6C00000000 + E7A30F04BF0846EE00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F04AC43662400000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04D233F68C00000000 + E7A30F043E4DE92B00000000 + E7A30F041D58331200000000 + E7A30F0481AE180900000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29487E346C00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2906E560D600000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E297A7C0C3800000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04ED2B86D2900000000 + + isa + PBXNativeTarget + name + LocationUI + productName + LocationUI + productReference + 1DD70E29E102CFE100000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793D2B86D2900000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04ED2B86D2900000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793D2B86D2900000000 + + \ No newline at end of file diff --git a/submodules/LocationUI/LocationUI.xcodeproj/xcshareddata/xcschemes/LocationUI.xcscheme b/submodules/LocationUI/LocationUI.xcodeproj/xcshareddata/xcschemes/LocationUI.xcscheme new file mode 100644 index 0000000000..66fe010fb1 --- /dev/null +++ b/submodules/LocationUI/LocationUI.xcodeproj/xcshareddata/xcschemes/LocationUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/MapResourceToAvatarSizes/MapResourceToAvatarSizes.xcodeproj/project.pbxproj b/submodules/MapResourceToAvatarSizes/MapResourceToAvatarSizes.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..b93100c986 --- /dev/null +++ b/submodules/MapResourceToAvatarSizes/MapResourceToAvatarSizes.xcodeproj/project.pbxproj @@ -0,0 +1,445 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29C66EB24100000000 + + isa + PBXFileReference + name + MapResourceToAvatarSizes-Debug.xcconfig + path + ../../buck-out/gen/submodules/MapResourceToAvatarSizes/MapResourceToAvatarSizes-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29CAADBD6B00000000 + + isa + PBXFileReference + name + MapResourceToAvatarSizes-Profile.xcconfig + path + ../../buck-out/gen/submodules/MapResourceToAvatarSizes/MapResourceToAvatarSizes-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E293E4468CD00000000 + + isa + PBXFileReference + name + MapResourceToAvatarSizes-Release.xcconfig + path + ../../buck-out/gen/submodules/MapResourceToAvatarSizes/MapResourceToAvatarSizes-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29C66EB24100000000 + 1DD70E29CAADBD6B00000000 + 1DD70E293E4468CD00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E299811039900000000 + + isa + PBXFileReference + name + MapResourceToAvatarSizes.swift + path + Sources/MapResourceToAvatarSizes.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E299811039900000000 + + + B401C9790EC89FF400000000 + + isa + PBXGroup + name + MapResourceToAvatarSizes + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29A3994F2C00000000 + + isa + PBXFileReference + name + libMapResourceToAvatarSizes.a + path + libMapResourceToAvatarSizes.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29A3994F2C00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9790EC89FF400000000 + B401C979C806358400000000 + + + E7A30F049811039900000000 + + isa + PBXBuildFile + fileRef + 1DD70E299811039900000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F049811039900000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29C66EB24100000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29CAADBD6B00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E293E4468CD00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E0EC89FF400000000 + + isa + PBXNativeTarget + name + MapResourceToAvatarSizes + productName + MapResourceToAvatarSizes + productReference + 1DD70E29A3994F2C00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847930EC89FF400000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E0EC89FF400000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847930EC89FF400000000 + + \ No newline at end of file diff --git a/submodules/MapResourceToAvatarSizes/MapResourceToAvatarSizes.xcodeproj/xcshareddata/xcschemes/MapResourceToAvatarSizes.xcscheme b/submodules/MapResourceToAvatarSizes/MapResourceToAvatarSizes.xcodeproj/xcshareddata/xcschemes/MapResourceToAvatarSizes.xcscheme new file mode 100644 index 0000000000..866b2943ea --- /dev/null +++ b/submodules/MapResourceToAvatarSizes/MapResourceToAvatarSizes.xcodeproj/xcshareddata/xcschemes/MapResourceToAvatarSizes.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/MediaPlayer/MediaPlayer.xcodeproj/project.pbxproj b/submodules/MediaPlayer/MediaPlayer.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..f8ec931285 --- /dev/null +++ b/submodules/MediaPlayer/MediaPlayer.xcodeproj/project.pbxproj @@ -0,0 +1,923 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E294E5A60BB00000000 + + isa + PBXFileReference + name + UniversalMediaPlayer-Debug.xcconfig + path + ../../buck-out/gen/submodules/MediaPlayer/UniversalMediaPlayer-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E290667B56500000000 + + isa + PBXFileReference + name + UniversalMediaPlayer-Profile.xcconfig + path + ../../buck-out/gen/submodules/MediaPlayer/UniversalMediaPlayer-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2979FE60C700000000 + + isa + PBXFileReference + name + UniversalMediaPlayer-Release.xcconfig + path + ../../buck-out/gen/submodules/MediaPlayer/UniversalMediaPlayer-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E294E5A60BB00000000 + 1DD70E290667B56500000000 + 1DD70E2979FE60C700000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2959E87DCD00000000 + + isa + PBXFileReference + name + FFMpegAudioFrameDecoder.swift + path + Sources/FFMpegAudioFrameDecoder.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DBC325CE00000000 + + isa + PBXFileReference + name + FFMpegMediaFrameSource.swift + path + Sources/FFMpegMediaFrameSource.swift + sourceTree + SOURCE_ROOT + + 1DD70E29234025AB00000000 + + isa + PBXFileReference + name + FFMpegMediaFrameSourceContext.swift + path + Sources/FFMpegMediaFrameSourceContext.swift + sourceTree + SOURCE_ROOT + + 1DD70E296DDC3B8400000000 + + isa + PBXFileReference + name + FFMpegMediaFrameSourceContextHelpers.swift + path + Sources/FFMpegMediaFrameSourceContextHelpers.swift + sourceTree + SOURCE_ROOT + + 1DD70E293390840200000000 + + isa + PBXFileReference + name + FFMpegMediaPassthroughVideoFrameDecoder.swift + path + Sources/FFMpegMediaPassthroughVideoFrameDecoder.swift + sourceTree + SOURCE_ROOT + + 1DD70E295E7AB7D800000000 + + isa + PBXFileReference + name + FFMpegMediaVideoFrameDecoder.swift + path + Sources/FFMpegMediaVideoFrameDecoder.swift + sourceTree + SOURCE_ROOT + + 1DD70E29AC5ED52900000000 + + isa + PBXFileReference + name + MediaFrameSource.swift + path + Sources/MediaFrameSource.swift + sourceTree + SOURCE_ROOT + + 1DD70E29342E922E00000000 + + isa + PBXFileReference + name + MediaPlaybackData.swift + path + Sources/MediaPlaybackData.swift + sourceTree + SOURCE_ROOT + + 1DD70E291A8AA6AA00000000 + + isa + PBXFileReference + name + MediaPlayer.swift + path + Sources/MediaPlayer.swift + sourceTree + SOURCE_ROOT + + 1DD70E297562429900000000 + + isa + PBXFileReference + name + MediaPlayerAudioRenderer.swift + path + Sources/MediaPlayerAudioRenderer.swift + sourceTree + SOURCE_ROOT + + 1DD70E29278A70A500000000 + + isa + PBXFileReference + name + MediaPlayerFramePreview.swift + path + Sources/MediaPlayerFramePreview.swift + sourceTree + SOURCE_ROOT + + 1DD70E29418A9CCC00000000 + + isa + PBXFileReference + name + MediaPlayerNode.swift + path + Sources/MediaPlayerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2954B5877100000000 + + isa + PBXFileReference + name + MediaPlayerScrubbingNode.swift + path + Sources/MediaPlayerScrubbingNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E297C2C290600000000 + + isa + PBXFileReference + name + MediaPlayerTimeTextNode.swift + path + Sources/MediaPlayerTimeTextNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D44508E800000000 + + isa + PBXFileReference + name + MediaTrackDecodableFrame.swift + path + Sources/MediaTrackDecodableFrame.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E00F93EB00000000 + + isa + PBXFileReference + name + MediaTrackFrame.swift + path + Sources/MediaTrackFrame.swift + sourceTree + SOURCE_ROOT + + 1DD70E296D87BFCB00000000 + + isa + PBXFileReference + name + MediaTrackFrameBuffer.swift + path + Sources/MediaTrackFrameBuffer.swift + sourceTree + SOURCE_ROOT + + 1DD70E2939C67FC300000000 + + isa + PBXFileReference + name + MediaTrackFrameDecoder.swift + path + Sources/MediaTrackFrameDecoder.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D0ED7CAA00000000 + + isa + PBXFileReference + name + RingBuffer.h + path + Sources/RingBuffer.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29D0ED7CAF00000000 + + isa + PBXFileReference + name + RingBuffer.m + path + Sources/RingBuffer.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29DA837A7D00000000 + + isa + PBXFileReference + name + RingByteBuffer.swift + path + Sources/RingByteBuffer.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C0373B9400000000 + + isa + PBXFileReference + name + SoftwareVideoSource.swift + path + Sources/SoftwareVideoSource.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F48CD3C900000000 + + isa + PBXFileReference + name + UniversalSoftwareVideoSource.swift + path + Sources/UniversalSoftwareVideoSource.swift + sourceTree + SOURCE_ROOT + + 1DD70E298B010DD700000000 + + isa + PBXFileReference + name + VideoPlayerProxy.swift + path + Sources/VideoPlayerProxy.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2959E87DCD00000000 + 1DD70E29DBC325CE00000000 + 1DD70E29234025AB00000000 + 1DD70E296DDC3B8400000000 + 1DD70E293390840200000000 + 1DD70E295E7AB7D800000000 + 1DD70E29AC5ED52900000000 + 1DD70E29342E922E00000000 + 1DD70E291A8AA6AA00000000 + 1DD70E297562429900000000 + 1DD70E29278A70A500000000 + 1DD70E29418A9CCC00000000 + 1DD70E2954B5877100000000 + 1DD70E297C2C290600000000 + 1DD70E29D44508E800000000 + 1DD70E29E00F93EB00000000 + 1DD70E296D87BFCB00000000 + 1DD70E2939C67FC300000000 + 1DD70E29D0ED7CAA00000000 + 1DD70E29D0ED7CAF00000000 + 1DD70E29DA837A7D00000000 + 1DD70E29C0373B9400000000 + 1DD70E29F48CD3C900000000 + 1DD70E298B010DD700000000 + + + B401C97977490CBA00000000 + + isa + PBXGroup + name + UniversalMediaPlayer + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C97977490CBA00000000 + + + E7A30F0459E87DCD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2959E87DCD00000000 + + E7A30F04DBC325CE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DBC325CE00000000 + + E7A30F04234025AB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29234025AB00000000 + + E7A30F046DDC3B8400000000 + + isa + PBXBuildFile + fileRef + 1DD70E296DDC3B8400000000 + + E7A30F043390840200000000 + + isa + PBXBuildFile + fileRef + 1DD70E293390840200000000 + + E7A30F045E7AB7D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E295E7AB7D800000000 + + E7A30F04AC5ED52900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC5ED52900000000 + + E7A30F04342E922E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29342E922E00000000 + + E7A30F041A8AA6AA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291A8AA6AA00000000 + + E7A30F047562429900000000 + + isa + PBXBuildFile + fileRef + 1DD70E297562429900000000 + + E7A30F04278A70A500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29278A70A500000000 + + E7A30F04418A9CCC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29418A9CCC00000000 + + E7A30F0454B5877100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2954B5877100000000 + + E7A30F047C2C290600000000 + + isa + PBXBuildFile + fileRef + 1DD70E297C2C290600000000 + + E7A30F04D44508E800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D44508E800000000 + + E7A30F04E00F93EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E00F93EB00000000 + + E7A30F046D87BFCB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296D87BFCB00000000 + + E7A30F0439C67FC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2939C67FC300000000 + + E7A30F04D0ED7CAF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D0ED7CAF00000000 + + E7A30F04DA837A7D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DA837A7D00000000 + + E7A30F04C0373B9400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C0373B9400000000 + + E7A30F04F48CD3C900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F48CD3C900000000 + + E7A30F048B010DD700000000 + + isa + PBXBuildFile + fileRef + 1DD70E298B010DD700000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0459E87DCD00000000 + E7A30F04DBC325CE00000000 + E7A30F04234025AB00000000 + E7A30F046DDC3B8400000000 + E7A30F043390840200000000 + E7A30F045E7AB7D800000000 + E7A30F04AC5ED52900000000 + E7A30F04342E922E00000000 + E7A30F041A8AA6AA00000000 + E7A30F047562429900000000 + E7A30F04278A70A500000000 + E7A30F04418A9CCC00000000 + E7A30F0454B5877100000000 + E7A30F047C2C290600000000 + E7A30F04D44508E800000000 + E7A30F04E00F93EB00000000 + E7A30F046D87BFCB00000000 + E7A30F0439C67FC300000000 + E7A30F04D0ED7CAF00000000 + E7A30F04DA837A7D00000000 + E7A30F04C0373B9400000000 + E7A30F04F48CD3C900000000 + E7A30F048B010DD700000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E294E5A60BB00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E290667B56500000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2979FE60C700000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E77490CBA00000000 + + isa + PBXNativeTarget + name + UniversalMediaPlayer + productName + UniversalMediaPlayer + productReference + 1DD70E2951398CF200000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479349BA23C500000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E77490CBA00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479349BA23C500000000 + + \ No newline at end of file diff --git a/submodules/MediaPlayer/MediaPlayer.xcodeproj/xcshareddata/xcschemes/MediaPlayer.xcscheme b/submodules/MediaPlayer/MediaPlayer.xcodeproj/xcshareddata/xcschemes/MediaPlayer.xcscheme new file mode 100644 index 0000000000..f5c9f1eae6 --- /dev/null +++ b/submodules/MediaPlayer/MediaPlayer.xcodeproj/xcshareddata/xcschemes/MediaPlayer.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/MediaResources/MediaResources.xcodeproj/project.pbxproj b/submodules/MediaResources/MediaResources.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..3e84c1439d --- /dev/null +++ b/submodules/MediaResources/MediaResources.xcodeproj/project.pbxproj @@ -0,0 +1,443 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29D33EE3D400000000 + + isa + PBXFileReference + name + MediaResources-Debug.xcconfig + path + ../../buck-out/gen/submodules/MediaResources/MediaResources-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29E437D63E00000000 + + isa + PBXFileReference + name + MediaResources-Profile.xcconfig + path + ../../buck-out/gen/submodules/MediaResources/MediaResources-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2957CE81A000000000 + + isa + PBXFileReference + name + MediaResources-Release.xcconfig + path + ../../buck-out/gen/submodules/MediaResources/MediaResources-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29D33EE3D400000000 + 1DD70E29E437D63E00000000 + 1DD70E2957CE81A000000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E290A9641DB00000000 + + isa + PBXFileReference + name + CachedResourceRepresentations.swift + path + Sources/CachedResourceRepresentations.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FFB9E42E00000000 + + isa + PBXFileReference + name + MapResources.swift + path + Sources/MapResources.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E290A9641DB00000000 + 1DD70E29FFB9E42E00000000 + + + B401C979ADABDAC100000000 + + isa + PBXGroup + name + MediaResources + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2936DE2CF900000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979ADABDAC100000000 + B401C979C806358400000000 + + + E7A30F040A9641DB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290A9641DB00000000 + + E7A30F04FFB9E42E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FFB9E42E00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F040A9641DB00000000 + E7A30F04FFB9E42E00000000 + + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29D33EE3D400000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29E437D63E00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2957CE81A000000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EADABDAC100000000 + + isa + PBXNativeTarget + name + MediaResources + productName + MediaResources + productReference + 1DD70E2936DE2CF900000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793ADABDAC100000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EADABDAC100000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793ADABDAC100000000 + + \ No newline at end of file diff --git a/submodules/MediaResources/MediaResources.xcodeproj/xcshareddata/xcschemes/MediaResources.xcscheme b/submodules/MediaResources/MediaResources.xcodeproj/xcshareddata/xcschemes/MediaResources.xcscheme new file mode 100644 index 0000000000..527c0360f2 --- /dev/null +++ b/submodules/MediaResources/MediaResources.xcodeproj/xcshareddata/xcschemes/MediaResources.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/MergeLists/MergeLists.xcodeproj/project.pbxproj b/submodules/MergeLists/MergeLists.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..7666ec892c --- /dev/null +++ b/submodules/MergeLists/MergeLists.xcodeproj/project.pbxproj @@ -0,0 +1,347 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2945B904B800000000 + + isa + PBXFileReference + name + MergeLists-Debug.xcconfig + path + ../../buck-out/gen/submodules/MergeLists/MergeLists-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A0AD4E2200000000 + + isa + PBXFileReference + name + MergeLists-Profile.xcconfig + path + ../../buck-out/gen/submodules/MergeLists/MergeLists-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E291443F98400000000 + + isa + PBXFileReference + name + MergeLists-Release.xcconfig + path + ../../buck-out/gen/submodules/MergeLists/MergeLists-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2945B904B800000000 + 1DD70E29A0AD4E2200000000 + 1DD70E291443F98400000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29D280749B00000000 + + isa + PBXFileReference + name + Identifiable.swift + path + Sources/Identifiable.swift + sourceTree + SOURCE_ROOT + + 1DD70E290C44BF4200000000 + + isa + PBXFileReference + name + MergeLists.swift + path + Sources/MergeLists.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29D280749B00000000 + 1DD70E290C44BF4200000000 + + + B401C97934B88E5D00000000 + + isa + PBXGroup + name + MergeLists + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29C37F741500000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97934B88E5D00000000 + B401C979C806358400000000 + + + E7A30F04D280749B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D280749B00000000 + + E7A30F040C44BF4200000000 + + isa + PBXBuildFile + fileRef + 1DD70E290C44BF4200000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04D280749B00000000 + E7A30F040C44BF4200000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2945B904B800000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29A0AD4E2200000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E291443F98400000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E34B88E5D00000000 + + isa + PBXNativeTarget + name + MergeLists + productName + MergeLists + productReference + 1DD70E29C37F741500000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479334B88E5D00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E34B88E5D00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479334B88E5D00000000 + + \ No newline at end of file diff --git a/submodules/MergeLists/MergeLists.xcodeproj/xcshareddata/xcschemes/MergeLists.xcscheme b/submodules/MergeLists/MergeLists.xcodeproj/xcshareddata/xcschemes/MergeLists.xcscheme new file mode 100644 index 0000000000..723b2c0134 --- /dev/null +++ b/submodules/MergeLists/MergeLists.xcodeproj/xcshareddata/xcschemes/MergeLists.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/MimeTypes/MimeTypes.xcodeproj/project.pbxproj b/submodules/MimeTypes/MimeTypes.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..615b7564ac --- /dev/null +++ b/submodules/MimeTypes/MimeTypes.xcodeproj/project.pbxproj @@ -0,0 +1,343 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E297E7B999000000000 + + isa + PBXFileReference + name + MimeTypes-Debug.xcconfig + path + ../../buck-out/gen/submodules/MimeTypes/MimeTypes-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B31E0CFA00000000 + + isa + PBXFileReference + name + MimeTypes-Profile.xcconfig + path + ../../buck-out/gen/submodules/MimeTypes/MimeTypes-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2926B4B85C00000000 + + isa + PBXFileReference + name + MimeTypes-Release.xcconfig + path + ../../buck-out/gen/submodules/MimeTypes/MimeTypes-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E297E7B999000000000 + 1DD70E29B31E0CFA00000000 + 1DD70E2926B4B85C00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29618227B500000000 + + isa + PBXFileReference + name + TGMimeTypeMap.h + path + Sources/TGMimeTypeMap.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29618227BA00000000 + + isa + PBXFileReference + name + TGMimeTypeMap.m + path + Sources/TGMimeTypeMap.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29618227B500000000 + 1DD70E29618227BA00000000 + + + B401C9796B29E48500000000 + + isa + PBXGroup + name + MimeTypes + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E295792E59300000000 + + isa + PBXFileReference + name + libMimeTypes.a + path + libMimeTypes.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E295792E59300000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C9796B29E48500000000 + B401C979C806358400000000 + + + E7A30F04618227BA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29618227BA00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04618227BA00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E297E7B999000000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29B31E0CFA00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2926B4B85C00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E6B29E48500000000 + + isa + PBXNativeTarget + name + MimeTypes + productName + MimeTypes + productReference + 1DD70E295792E59300000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847936B29E48500000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E6B29E48500000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847936B29E48500000000 + + \ No newline at end of file diff --git a/submodules/MimeTypes/MimeTypes.xcodeproj/xcshareddata/xcschemes/MimeTypes.xcscheme b/submodules/MimeTypes/MimeTypes.xcodeproj/xcshareddata/xcschemes/MimeTypes.xcscheme new file mode 100644 index 0000000000..4585b98ce4 --- /dev/null +++ b/submodules/MimeTypes/MimeTypes.xcodeproj/xcshareddata/xcschemes/MimeTypes.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/MosaicLayout/MosaicLayout.xcodeproj/project.pbxproj b/submodules/MosaicLayout/MosaicLayout.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..0f5c085c0e --- /dev/null +++ b/submodules/MosaicLayout/MosaicLayout.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E290996E9C100000000 + + isa + PBXFileReference + name + MosaicLayout-Debug.xcconfig + path + ../../buck-out/gen/submodules/MosaicLayout/MosaicLayout-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29E4A614EB00000000 + + isa + PBXFileReference + name + MosaicLayout-Profile.xcconfig + path + ../../buck-out/gen/submodules/MosaicLayout/MosaicLayout-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29583CC04D00000000 + + isa + PBXFileReference + name + MosaicLayout-Release.xcconfig + path + ../../buck-out/gen/submodules/MosaicLayout/MosaicLayout-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E290996E9C100000000 + 1DD70E29E4A614EB00000000 + 1DD70E29583CC04D00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29B195C63400000000 + + isa + PBXFileReference + name + ChatMessageBubbleMosaicLayout.swift + path + Sources/ChatMessageBubbleMosaicLayout.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29B195C63400000000 + + + B401C9796228587400000000 + + isa + PBXGroup + name + MosaicLayout + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E296BF0672C00000000 + + isa + PBXFileReference + name + libMosaicLayout.a + path + libMosaicLayout.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E296BF0672C00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C9796228587400000000 + B401C979C806358400000000 + + + E7A30F04B195C63400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B195C63400000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04B195C63400000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E290996E9C100000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29E4A614EB00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29583CC04D00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E6228587400000000 + + isa + PBXNativeTarget + name + MosaicLayout + productName + MosaicLayout + productReference + 1DD70E296BF0672C00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847936228587400000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E6228587400000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847936228587400000000 + + \ No newline at end of file diff --git a/submodules/MosaicLayout/MosaicLayout.xcodeproj/xcshareddata/xcschemes/MosaicLayout.xcscheme b/submodules/MosaicLayout/MosaicLayout.xcodeproj/xcshareddata/xcschemes/MosaicLayout.xcscheme new file mode 100644 index 0000000000..a65f5b00f5 --- /dev/null +++ b/submodules/MosaicLayout/MosaicLayout.xcodeproj/xcshareddata/xcschemes/MosaicLayout.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/MusicAlbumArtResources/MusicAlbumArtResources.xcodeproj/project.pbxproj b/submodules/MusicAlbumArtResources/MusicAlbumArtResources.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..5269186735 --- /dev/null +++ b/submodules/MusicAlbumArtResources/MusicAlbumArtResources.xcodeproj/project.pbxproj @@ -0,0 +1,445 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E297B283BA900000000 + + isa + PBXFileReference + name + MusicAlbumArtResources-Debug.xcconfig + path + ../../buck-out/gen/submodules/MusicAlbumArtResources/MusicAlbumArtResources-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29372A8CD300000000 + + isa + PBXFileReference + name + MusicAlbumArtResources-Profile.xcconfig + path + ../../buck-out/gen/submodules/MusicAlbumArtResources/MusicAlbumArtResources-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AAC1383500000000 + + isa + PBXFileReference + name + MusicAlbumArtResources-Release.xcconfig + path + ../../buck-out/gen/submodules/MusicAlbumArtResources/MusicAlbumArtResources-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E297B283BA900000000 + 1DD70E29372A8CD300000000 + 1DD70E29AAC1383500000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E29597BAFBB00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29D845CE9C00000000 + + isa + PBXFileReference + name + ExternalMusicAlbumArtResources.swift + path + Sources/ExternalMusicAlbumArtResources.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29D845CE9C00000000 + + + B401C9796C6A738C00000000 + + isa + PBXGroup + name + MusicAlbumArtResources + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29866F6A0400000000 + + isa + PBXFileReference + name + libMusicAlbumArtResources.a + path + libMusicAlbumArtResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29866F6A0400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9796C6A738C00000000 + B401C979C806358400000000 + + + E7A30F04D845CE9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D845CE9C00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04D845CE9C00000000 + + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F04597BAFBB00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E297B283BA900000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29372A8CD300000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29AAC1383500000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E6C6A738C00000000 + + isa + PBXNativeTarget + name + MusicAlbumArtResources + productName + MusicAlbumArtResources + productReference + 1DD70E29866F6A0400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847936C6A738C00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E6C6A738C00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847936C6A738C00000000 + + \ No newline at end of file diff --git a/submodules/MusicAlbumArtResources/MusicAlbumArtResources.xcodeproj/xcshareddata/xcschemes/MusicAlbumArtResources.xcscheme b/submodules/MusicAlbumArtResources/MusicAlbumArtResources.xcodeproj/xcshareddata/xcschemes/MusicAlbumArtResources.xcscheme new file mode 100644 index 0000000000..47b0631ea7 --- /dev/null +++ b/submodules/MusicAlbumArtResources/MusicAlbumArtResources.xcodeproj/xcshareddata/xcschemes/MusicAlbumArtResources.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/NotificationMuteSettingsUI/BUCK b/submodules/NotificationMuteSettingsUI/BUCK new file mode 100644 index 0000000000..d6fbaed0d6 --- /dev/null +++ b/submodules/NotificationMuteSettingsUI/BUCK @@ -0,0 +1,19 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "NotificationMuteSettingsUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/NotificationMuteSettingsUI/NotificationMuteSettingsUI.xcodeproj/project.pbxproj b/submodules/NotificationMuteSettingsUI/NotificationMuteSettingsUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..ca4acff5f5 --- /dev/null +++ b/submodules/NotificationMuteSettingsUI/NotificationMuteSettingsUI.xcodeproj/project.pbxproj @@ -0,0 +1,599 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29D88DE07A00000000 + + isa + PBXFileReference + name + NotificationMuteSettingsUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/NotificationMuteSettingsUI/NotificationMuteSettingsUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D1BA416400000000 + + isa + PBXFileReference + name + NotificationMuteSettingsUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/NotificationMuteSettingsUI/NotificationMuteSettingsUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E294550ECC600000000 + + isa + PBXFileReference + name + NotificationMuteSettingsUI-Release.xcconfig + path + ../../buck-out/gen/submodules/NotificationMuteSettingsUI/NotificationMuteSettingsUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29D88DE07A00000000 + 1DD70E29D1BA416400000000 + 1DD70E294550ECC600000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29F0C15F9C00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E299001016800000000 + + isa + PBXFileReference + name + NotificationMuteSettingsController.swift + path + Sources/NotificationMuteSettingsController.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E299001016800000000 + + + B401C979FA93E6DB00000000 + + isa + PBXGroup + name + NotificationMuteSettingsUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E298ED1FB1300000000 + + isa + PBXFileReference + name + libNotificationMuteSettingsUI.a + path + libNotificationMuteSettingsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E298ED1FB1300000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979FA93E6DB00000000 + B401C979C806358400000000 + + + E7A30F049001016800000000 + + isa + PBXBuildFile + fileRef + 1DD70E299001016800000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F049001016800000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04119CDA0700000000 + E7A30F04D65BA68200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29D88DE07A00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29D1BA416400000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E294550ECC600000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EFA93E6DB00000000 + + isa + PBXNativeTarget + name + NotificationMuteSettingsUI + productName + NotificationMuteSettingsUI + productReference + 1DD70E298ED1FB1300000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793FA93E6DB00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EFA93E6DB00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793FA93E6DB00000000 + + \ No newline at end of file diff --git a/submodules/NotificationMuteSettingsUI/NotificationMuteSettingsUI.xcodeproj/xcshareddata/xcschemes/NotificationMuteSettingsUI.xcscheme b/submodules/NotificationMuteSettingsUI/NotificationMuteSettingsUI.xcodeproj/xcshareddata/xcschemes/NotificationMuteSettingsUI.xcscheme new file mode 100644 index 0000000000..0a89a6cc7e --- /dev/null +++ b/submodules/NotificationMuteSettingsUI/NotificationMuteSettingsUI.xcodeproj/xcshareddata/xcschemes/NotificationMuteSettingsUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/NotificationSoundSelectionUI/BUCK b/submodules/NotificationSoundSelectionUI/BUCK new file mode 100644 index 0000000000..8f391af75a --- /dev/null +++ b/submodules/NotificationSoundSelectionUI/BUCK @@ -0,0 +1,23 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "NotificationSoundSelectionUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/ItemListUI:ItemListUI", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/AVFoundation.framework", + ], +) diff --git a/submodules/NotificationSoundSelectionUI/NotificationSoundSelectionUI.xcodeproj/project.pbxproj b/submodules/NotificationSoundSelectionUI/NotificationSoundSelectionUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..5ca0d0bd9f --- /dev/null +++ b/submodules/NotificationSoundSelectionUI/NotificationSoundSelectionUI.xcodeproj/project.pbxproj @@ -0,0 +1,929 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2934BD657900000000 + + isa + PBXFileReference + name + NotificationSoundSelectionUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/NotificationSoundSelectionUI/NotificationSoundSelectionUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29E01C82A300000000 + + isa + PBXFileReference + name + NotificationSoundSelectionUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/NotificationSoundSelectionUI/NotificationSoundSelectionUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2953B32E0500000000 + + isa + PBXFileReference + name + NotificationSoundSelectionUI-Release.xcconfig + path + ../../buck-out/gen/submodules/NotificationSoundSelectionUI/NotificationSoundSelectionUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2934BD657900000000 + 1DD70E29E01C82A300000000 + 1DD70E2953B32E0500000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E2997B4D6D800000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2969AB2FCD00000000 + + isa + PBXFileReference + name + NotificationSoundSelection.swift + path + Sources/NotificationSoundSelection.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2969AB2FCD00000000 + + + B401C9796080E3BC00000000 + + isa + PBXGroup + name + NotificationSoundSelectionUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E2937C1167400000000 + + isa + PBXFileReference + name + libNotificationSoundSelectionUI.a + path + libNotificationSoundSelectionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2937C1167400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9796080E3BC00000000 + B401C979C806358400000000 + + + E7A30F0469AB2FCD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2969AB2FCD00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0469AB2FCD00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2934BD657900000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29E01C82A300000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2953B32E0500000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E6080E3BC00000000 + + isa + PBXNativeTarget + name + NotificationSoundSelectionUI + productName + NotificationSoundSelectionUI + productReference + 1DD70E2937C1167400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847936080E3BC00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E6080E3BC00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847936080E3BC00000000 + + \ No newline at end of file diff --git a/submodules/NotificationSoundSelectionUI/NotificationSoundSelectionUI.xcodeproj/xcshareddata/xcschemes/NotificationSoundSelectionUI.xcscheme b/submodules/NotificationSoundSelectionUI/NotificationSoundSelectionUI.xcodeproj/xcshareddata/xcschemes/NotificationSoundSelectionUI.xcscheme new file mode 100644 index 0000000000..8056c746fa --- /dev/null +++ b/submodules/NotificationSoundSelectionUI/NotificationSoundSelectionUI.xcodeproj/xcshareddata/xcschemes/NotificationSoundSelectionUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/OpenInExternalAppUI/BUCK b/submodules/OpenInExternalAppUI/BUCK new file mode 100644 index 0000000000..2915332ff7 --- /dev/null +++ b/submodules/OpenInExternalAppUI/BUCK @@ -0,0 +1,25 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "OpenInExternalAppUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/PhotoResources:PhotoResources", + "//submodules/UrlEscaping:UrlEscaping", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/CoreLocation.framework", + "$SDKROOT/System/Library/Frameworks/MapKit.framework", + ], +) diff --git a/submodules/OpenInExternalAppUI/OpenInExternalAppUI.xcodeproj/project.pbxproj b/submodules/OpenInExternalAppUI/OpenInExternalAppUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..fbfbbc0033 --- /dev/null +++ b/submodules/OpenInExternalAppUI/OpenInExternalAppUI.xcodeproj/project.pbxproj @@ -0,0 +1,901 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2946B99CDA00000000 + + isa + PBXFileReference + name + OpenInExternalAppUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/OpenInExternalAppUI/OpenInExternalAppUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2963E865C400000000 + + isa + PBXFileReference + name + OpenInExternalAppUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/OpenInExternalAppUI/OpenInExternalAppUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D77F112600000000 + + isa + PBXFileReference + name + OpenInExternalAppUI-Release.xcconfig + path + ../../buck-out/gen/submodules/OpenInExternalAppUI/OpenInExternalAppUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2946B99CDA00000000 + 1DD70E2963E865C400000000 + 1DD70E29D77F112600000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BC094D7B00000000 + + isa + PBXFileReference + name + OpenInActionSheetController.swift + path + Sources/OpenInActionSheetController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DAE6437F00000000 + + isa + PBXFileReference + name + OpenInAppIconResources.swift + path + Sources/OpenInAppIconResources.swift + sourceTree + SOURCE_ROOT + + 1DD70E298AC3E5D400000000 + + isa + PBXFileReference + name + OpenInOptions.swift + path + Sources/OpenInOptions.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E29BC094D7B00000000 + 1DD70E29DAE6437F00000000 + 1DD70E298AC3E5D400000000 + + + B401C97911B2F67B00000000 + + isa + PBXGroup + name + OpenInExternalAppUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29AF00DC4900000000 + + isa + PBXFileReference + name + libOpenInExternalAppUI.a + path + libOpenInExternalAppUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29AF00DC4900000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C97911B2F67B00000000 + B401C979C806358400000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04BC094D7B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BC094D7B00000000 + + E7A30F04DAE6437F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DAE6437F00000000 + + E7A30F048AC3E5D400000000 + + isa + PBXBuildFile + fileRef + 1DD70E298AC3E5D400000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F04BC094D7B00000000 + E7A30F04DAE6437F00000000 + E7A30F048AC3E5D400000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04CD296A8300000000 + E7A30F04490601EB00000000 + E7A30F04597BAFBB00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2946B99CDA00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2963E865C400000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29D77F112600000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E11B2F67B00000000 + + isa + PBXNativeTarget + name + OpenInExternalAppUI + productName + OpenInExternalAppUI + productReference + 1DD70E29AF00DC4900000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479311B2F67B00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E11B2F67B00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479311B2F67B00000000 + + \ No newline at end of file diff --git a/submodules/OpenInExternalAppUI/OpenInExternalAppUI.xcodeproj/xcshareddata/xcschemes/OpenInExternalAppUI.xcscheme b/submodules/OpenInExternalAppUI/OpenInExternalAppUI.xcodeproj/xcshareddata/xcschemes/OpenInExternalAppUI.xcscheme new file mode 100644 index 0000000000..1f900b3f79 --- /dev/null +++ b/submodules/OpenInExternalAppUI/OpenInExternalAppUI.xcodeproj/xcshareddata/xcschemes/OpenInExternalAppUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/Opus/Opus.xcodeproj/project.pbxproj b/submodules/Opus/Opus.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..e212539253 --- /dev/null +++ b/submodules/Opus/Opus.xcodeproj/project.pbxproj @@ -0,0 +1,701 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29053E2A9600000000 + + isa + PBXFileReference + name + opus-Debug.xcconfig + path + ../../buck-out/gen/submodules/Opus/opus-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E299380748000000000 + + isa + PBXFileReference + name + opus-Profile.xcconfig + path + ../../buck-out/gen/submodules/Opus/opus-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2907171FE200000000 + + isa + PBXFileReference + name + opus-Release.xcconfig + path + ../../buck-out/gen/submodules/Opus/opus-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292B48FB9000000000 + + isa + PBXFileReference + name + opus_lib-Debug.xcconfig + path + ../../buck-out/gen/submodules/Opus/opus_lib-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29621AEEFA00000000 + + isa + PBXFileReference + name + opus_lib-Profile.xcconfig + path + ../../buck-out/gen/submodules/Opus/opus_lib-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D5B19A5C00000000 + + isa + PBXFileReference + name + opus_lib-Release.xcconfig + path + ../../buck-out/gen/submodules/Opus/opus_lib-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29053E2A9600000000 + 1DD70E299380748000000000 + 1DD70E2907171FE200000000 + 1DD70E292B48FB9000000000 + 1DD70E29621AEEFA00000000 + 1DD70E29D5B19A5C00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E292C28053700000000 + + isa + PBXFileReference + name + libopus.a + path + Sources/opus/lib/libopus.a + sourceTree + SOURCE_ROOT + explicitFileType + archive.ar + + B401C9790001A28500000000 + + isa + PBXGroup + name + lib + sourceTree + ]]> + children + + 1DD70E292C28053700000000 + + + B401C9790034283F00000000 + + isa + PBXGroup + name + opus + sourceTree + ]]> + children + + B401C9790001A28500000000 + + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C9790034283F00000000 + + + B401C979048F8EF000000000 + + isa + PBXGroup + name + Other + sourceTree + ]]> + children + + B401C979EAB5339800000000 + + + 1DD70E292C28053700000001 + + isa + PBXFileReference + name + libopus.a + path + libopus.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29760E3B7D00000000 + + isa + PBXFileReference + name + libopus_lib.a + path + libopus_lib.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E292C28053700000001 + 1DD70E29760E3B7D00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29C3CB1A7900000000 + + isa + PBXFileReference + name + opus.h + path + Sources/opus/opus.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C9790034283F00000002 + + isa + PBXGroup + name + opus + path + Sources/opus + sourceTree + SOURCE_ROOT + children + + 1DD70E29C3CB1A7900000000 + + + 1DD70E290A635E1200000000 + + isa + PBXFileReference + name + opus_defines.h + path + Sources/opus_defines.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E299AA921B300000000 + + isa + PBXFileReference + name + opus_multistream.h + path + Sources/opus_multistream.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29EC8C588900000000 + + isa + PBXFileReference + name + opus_projection.h + path + Sources/opus_projection.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29141A443300000000 + + isa + PBXFileReference + name + opus_types.h + path + Sources/opus_types.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979EAB5339800000001 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C9790034283F00000002 + 1DD70E290A635E1200000000 + 1DD70E299AA921B300000000 + 1DD70E29EC8C588900000000 + 1DD70E29141A443300000000 + + + B401C9790034283F00000001 + + isa + PBXGroup + name + opus + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000001 + + + 1DD70E29001F47FB00000001 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29C3CB1A7900000001 + + isa + PBXFileReference + name + opus.h + path + Sources/opus/opus.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C9790034283F00000003 + + isa + PBXGroup + name + opus + path + Sources/opus + sourceTree + SOURCE_ROOT + children + + 1DD70E29C3CB1A7900000001 + + + 1DD70E290A635E1200000001 + + isa + PBXFileReference + name + opus_defines.h + path + Sources/opus_defines.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E299AA921B300000001 + + isa + PBXFileReference + name + opus_multistream.h + path + Sources/opus_multistream.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29EC8C588900000001 + + isa + PBXFileReference + name + opus_projection.h + path + Sources/opus_projection.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29141A443300000001 + + isa + PBXFileReference + name + opus_types.h + path + Sources/opus_types.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979EAB5339800000002 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C9790034283F00000003 + 1DD70E290A635E1200000001 + 1DD70E299AA921B300000001 + 1DD70E29EC8C588900000001 + 1DD70E29141A443300000001 + + + B401C979FD84C28500000000 + + isa + PBXGroup + name + opus_lib + sourceTree + ]]> + children + + 1DD70E29001F47FB00000001 + B401C979EAB5339800000002 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979048F8EF000000000 + B401C979C806358400000000 + B401C9790034283F00000001 + B401C979FD84C28500000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29053E2A9600000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E299380748000000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2907171FE200000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E0034283F00000000 + + isa + PBXNativeTarget + name + opus + productName + opus + productReference + 1DD70E292C28053700000001 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E292B48FB9000000000 + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29621AEEFA00000000 + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29D5B19A5C00000000 + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + E66DC04EFD84C28500000000 + + isa + PBXNativeTarget + name + opus_lib + productName + opus_lib + productReference + 1DD70E29760E3B7D00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + + buildConfigurationList + 218C37090000000000000001 + + 4952437303EDA63300000002 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000002 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000002 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000002 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000002 + 4952437350C7218900000002 + 49524373A439BFE700000002 + + defaultConfigurationIsVisible + + + 96C8479300259C5F00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E0034283F00000000 + E66DC04EFD84C28500000000 + + buildConfigurationList + 218C37090000000000000002 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479300259C5F00000000 + + \ No newline at end of file diff --git a/submodules/Opus/Opus.xcodeproj/xcshareddata/xcschemes/Opus.xcscheme b/submodules/Opus/Opus.xcodeproj/xcshareddata/xcschemes/Opus.xcscheme new file mode 100644 index 0000000000..c14453adb6 --- /dev/null +++ b/submodules/Opus/Opus.xcodeproj/xcshareddata/xcschemes/Opus.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/OpusBinding/OpusBinding.xcodeproj/project.pbxproj b/submodules/OpusBinding/OpusBinding.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..df52e5b2cc --- /dev/null +++ b/submodules/OpusBinding/OpusBinding.xcodeproj/project.pbxproj @@ -0,0 +1,792 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E295064B6CF00000000 + + isa + PBXFileReference + name + OpusBinding-Debug.xcconfig + path + ../../buck-out/gen/submodules/OpusBinding/OpusBinding-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AF34D67900000000 + + isa + PBXFileReference + name + OpusBinding-Profile.xcconfig + path + ../../buck-out/gen/submodules/OpusBinding/OpusBinding-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2922CB81DB00000000 + + isa + PBXFileReference + name + OpusBinding-Release.xcconfig + path + ../../buck-out/gen/submodules/OpusBinding/OpusBinding-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E295064B6CF00000000 + 1DD70E29AF34D67900000000 + 1DD70E2922CB81DB00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2926EEDCE600000000 + + isa + PBXFileReference + name + bitwise.c + path + Sources/ogg/bitwise.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E2920C2125F00000000 + + isa + PBXFileReference + name + framing.c + path + Sources/ogg/framing.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E29064C8BC900000000 + + isa + PBXFileReference + name + ogg.h + path + Sources/ogg/ogg.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E04CB4D800000000 + + isa + PBXFileReference + name + os_types.h + path + Sources/ogg/os_types.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C9790001AD8F00000000 + + isa + PBXGroup + name + ogg + path + Sources/ogg + sourceTree + SOURCE_ROOT + children + + 1DD70E2926EEDCE600000000 + 1DD70E2920C2125F00000000 + 1DD70E29064C8BC900000000 + 1DD70E29E04CB4D800000000 + + + 1DD70E291168FB1E00000000 + + isa + PBXFileReference + name + diag_range.c + path + Sources/opusenc/diag_range.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E291168FB2300000000 + + isa + PBXFileReference + name + diag_range.h + path + Sources/opusenc/diag_range.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2954F7594200000000 + + isa + PBXFileReference + name + opus_header.c + path + Sources/opusenc/opus_header.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E2954F7594700000000 + + isa + PBXFileReference + name + opus_header.h + path + Sources/opusenc/opus_header.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29B368E77A00000000 + + isa + PBXFileReference + name + opusenc.m + path + Sources/opusenc/opusenc.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29BAED1B7300000000 + + isa + PBXFileReference + name + picture.c + path + Sources/opusenc/picture.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E29BAED1B7800000000 + + isa + PBXFileReference + name + picture.h + path + Sources/opusenc/picture.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2923B0430E00000000 + + isa + PBXFileReference + name + wav_io.c + path + Sources/opusenc/wav_io.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E2923B0431300000000 + + isa + PBXFileReference + name + wav_io.h + path + Sources/opusenc/wav_io.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979B599043B00000000 + + isa + PBXGroup + name + opusenc + path + Sources/opusenc + sourceTree + SOURCE_ROOT + children + + 1DD70E291168FB1E00000000 + 1DD70E291168FB2300000000 + 1DD70E2954F7594200000000 + 1DD70E2954F7594700000000 + 1DD70E29B368E77A00000000 + 1DD70E29BAED1B7300000000 + 1DD70E29BAED1B7800000000 + 1DD70E2923B0430E00000000 + 1DD70E2923B0431300000000 + + + 1DD70E29B96AF72300000000 + + isa + PBXFileReference + name + info.c + path + Sources/opusfile/info.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E29A129117200000000 + + isa + PBXFileReference + name + internal.c + path + Sources/opusfile/internal.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E29A129117700000000 + + isa + PBXFileReference + name + internal.h + path + Sources/opusfile/internal.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29BB27497000000000 + + isa + PBXFileReference + name + opusfile.c + path + Sources/opusfile/opusfile.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E29BB27497500000000 + + isa + PBXFileReference + name + opusfile.h + path + Sources/opusfile/opusfile.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296ABF757500000000 + + isa + PBXFileReference + name + stream.c + path + Sources/opusfile/stream.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + B401C979FD87E63B00000000 + + isa + PBXGroup + name + opusfile + path + Sources/opusfile + sourceTree + SOURCE_ROOT + children + + 1DD70E29B96AF72300000000 + 1DD70E29A129117200000000 + 1DD70E29A129117700000000 + 1DD70E29BB27497000000000 + 1DD70E29BB27497500000000 + 1DD70E296ABF757500000000 + + + 1DD70E292604F26B00000000 + + isa + PBXFileReference + name + OggOpusReader.h + path + Sources/OggOpusReader.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E292604F27000000000 + + isa + PBXFileReference + name + OggOpusReader.m + path + Sources/OggOpusReader.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E298390AF6A00000000 + + isa + PBXFileReference + name + TGDataItem.h + path + Sources/TGDataItem.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E298390AF6F00000000 + + isa + PBXFileReference + name + TGDataItem.m + path + Sources/TGDataItem.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29F2D5734800000000 + + isa + PBXFileReference + name + TGOggOpusWriter.h + path + Sources/TGOggOpusWriter.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C9790001AD8F00000000 + B401C979B599043B00000000 + B401C979FD87E63B00000000 + 1DD70E292604F26B00000000 + 1DD70E292604F27000000000 + 1DD70E298390AF6A00000000 + 1DD70E298390AF6F00000000 + 1DD70E29F2D5734800000000 + + + B401C9799CE7D12600000000 + + isa + PBXGroup + name + OpusBinding + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E297DA7833400000000 + + isa + PBXFileReference + name + libOpusBinding.a + path + libOpusBinding.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E297DA7833400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C9799CE7D12600000000 + B401C979C806358400000000 + + + E7A30F0426EEDCE600000000 + + isa + PBXBuildFile + fileRef + 1DD70E2926EEDCE600000000 + + E7A30F0420C2125F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2920C2125F00000000 + + E7A30F041168FB1E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291168FB1E00000000 + + E7A30F0454F7594200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2954F7594200000000 + + E7A30F04B368E77A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B368E77A00000000 + + E7A30F04BAED1B7300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BAED1B7300000000 + + E7A30F0423B0430E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2923B0430E00000000 + + E7A30F04B96AF72300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B96AF72300000000 + + E7A30F04A129117200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A129117200000000 + + E7A30F04BB27497000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BB27497000000000 + + E7A30F046ABF757500000000 + + isa + PBXBuildFile + fileRef + 1DD70E296ABF757500000000 + + E7A30F042604F27000000000 + + isa + PBXBuildFile + fileRef + 1DD70E292604F27000000000 + + E7A30F048390AF6F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E298390AF6F00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0426EEDCE600000000 + E7A30F0420C2125F00000000 + E7A30F041168FB1E00000000 + E7A30F0454F7594200000000 + E7A30F04B368E77A00000000 + E7A30F04BAED1B7300000000 + E7A30F0423B0430E00000000 + E7A30F04B96AF72300000000 + E7A30F04A129117200000000 + E7A30F04BB27497000000000 + E7A30F046ABF757500000000 + E7A30F042604F27000000000 + E7A30F048390AF6F00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E295064B6CF00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29AF34D67900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2922CB81DB00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E9CE7D12600000000 + + isa + PBXNativeTarget + name + OpusBinding + productName + OpusBinding + productReference + 1DD70E297DA7833400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847939CE7D12600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E9CE7D12600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847939CE7D12600000000 + + \ No newline at end of file diff --git a/submodules/OpusBinding/OpusBinding.xcodeproj/xcshareddata/xcschemes/OpusBinding.xcscheme b/submodules/OpusBinding/OpusBinding.xcodeproj/xcshareddata/xcschemes/OpusBinding.xcscheme new file mode 100644 index 0000000000..3a22fc3c86 --- /dev/null +++ b/submodules/OpusBinding/OpusBinding.xcodeproj/xcshareddata/xcschemes/OpusBinding.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/OverlayStatusController/BUCK b/submodules/OverlayStatusController/BUCK new file mode 100644 index 0000000000..ee77bca12b --- /dev/null +++ b/submodules/OverlayStatusController/BUCK @@ -0,0 +1,17 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "OverlayStatusController", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/Display:Display#shared", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/TelegramPresentationData:TelegramPresentationData", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/OverlayStatusController/OverlayStatusController.xcodeproj/project.pbxproj b/submodules/OverlayStatusController/OverlayStatusController.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..245dc2eb77 --- /dev/null +++ b/submodules/OverlayStatusController/OverlayStatusController.xcodeproj/project.pbxproj @@ -0,0 +1,511 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29D6EEC37700000000 + + isa + PBXFileReference + name + OverlayStatusController-Debug.xcconfig + path + ../../buck-out/gen/submodules/OverlayStatusController/OverlayStatusController-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29BB6E592100000000 + + isa + PBXFileReference + name + OverlayStatusController-Profile.xcconfig + path + ../../buck-out/gen/submodules/OverlayStatusController/OverlayStatusController-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292F05048300000000 + + isa + PBXFileReference + name + OverlayStatusController-Release.xcconfig + path + ../../buck-out/gen/submodules/OverlayStatusController/OverlayStatusController-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29D6EEC37700000000 + 1DD70E29BB6E592100000000 + 1DD70E292F05048300000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2974DC9DA300000000 + + isa + PBXFileReference + name + OverlayStatusController.swift + path + Sources/OverlayStatusController.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2974DC9DA300000000 + + + B401C979EAAB097E00000000 + + isa + PBXGroup + name + OverlayStatusController + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29BBAF750C00000000 + + isa + PBXFileReference + name + libOverlayStatusController.a + path + libOverlayStatusController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29BBAF750C00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979EAAB097E00000000 + B401C979C806358400000000 + + + E7A30F0474DC9DA300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2974DC9DA300000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0474DC9DA300000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29D6EEC37700000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29BB6E592100000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E292F05048300000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EEAAB097E00000000 + + isa + PBXNativeTarget + name + OverlayStatusController + productName + OverlayStatusController + productReference + 1DD70E29BBAF750C00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793EAAB097E00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EEAAB097E00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793EAAB097E00000000 + + \ No newline at end of file diff --git a/submodules/OverlayStatusController/OverlayStatusController.xcodeproj/xcshareddata/xcschemes/OverlayStatusController.xcscheme b/submodules/OverlayStatusController/OverlayStatusController.xcodeproj/xcshareddata/xcschemes/OverlayStatusController.xcscheme new file mode 100644 index 0000000000..78df0202e3 --- /dev/null +++ b/submodules/OverlayStatusController/OverlayStatusController.xcodeproj/xcshareddata/xcschemes/OverlayStatusController.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PasscodeUI/BUCK b/submodules/PasscodeUI/BUCK new file mode 100644 index 0000000000..56dc1ce5af --- /dev/null +++ b/submodules/PasscodeUI/BUCK @@ -0,0 +1,26 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "PasscodeUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/AccountContext:AccountContext", + "//submodules/LocalAuth:LocalAuth", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/ImageBlur:ImageBlur", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/PasscodeUI/PasscodeUI.xcodeproj/project.pbxproj b/submodules/PasscodeUI/PasscodeUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..877b968393 --- /dev/null +++ b/submodules/PasscodeUI/PasscodeUI.xcodeproj/project.pbxproj @@ -0,0 +1,953 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2981D9DDC300000000 + + isa + PBXFileReference + name + PasscodeUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/PasscodeUI/PasscodeUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2957FC106D00000000 + + isa + PBXFileReference + name + PasscodeUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/PasscodeUI/PasscodeUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29CB92BBCF00000000 + + isa + PBXFileReference + name + PasscodeUI-Release.xcconfig + path + ../../buck-out/gen/submodules/PasscodeUI/PasscodeUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2981D9DDC300000000 + 1DD70E2957FC106D00000000 + 1DD70E29CB92BBCF00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A889192100000000 + + isa + PBXFileReference + name + libLocalAuth.a + path + libLocalAuth.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29A889192100000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E2944FAB31100000000 + + isa + PBXFileReference + name + PasscodeBackground.swift + path + Sources/PasscodeBackground.swift + sourceTree + SOURCE_ROOT + + 1DD70E298C702AD500000000 + + isa + PBXFileReference + name + PasscodeEntryController.swift + path + Sources/PasscodeEntryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E297F6C137700000000 + + isa + PBXFileReference + name + PasscodeEntryControllerNode.swift + path + Sources/PasscodeEntryControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E293E85462B00000000 + + isa + PBXFileReference + name + PasscodeEntryInputFieldNode.swift + path + Sources/PasscodeEntryInputFieldNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E293E99570200000000 + + isa + PBXFileReference + name + PasscodeEntryKeyboardNode.swift + path + Sources/PasscodeEntryKeyboardNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A75DC52700000000 + + isa + PBXFileReference + name + PasscodeEntryLabelNode.swift + path + Sources/PasscodeEntryLabelNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E299AE87B0D00000000 + + isa + PBXFileReference + name + PasscodeLayout.swift + path + Sources/PasscodeLayout.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E2D8E4C900000000 + + isa + PBXFileReference + name + PasscodeLockIconNode.swift + path + Sources/PasscodeLockIconNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E298FD9E6E000000000 + + isa + PBXFileReference + name + PasscodeSetupController.swift + path + Sources/PasscodeSetupController.swift + sourceTree + SOURCE_ROOT + + 1DD70E290032D20200000000 + + isa + PBXFileReference + name + PasscodeSetupControllerNode.swift + path + Sources/PasscodeSetupControllerNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E2944FAB31100000000 + 1DD70E298C702AD500000000 + 1DD70E297F6C137700000000 + 1DD70E293E85462B00000000 + 1DD70E293E99570200000000 + 1DD70E29A75DC52700000000 + 1DD70E299AE87B0D00000000 + 1DD70E29E2D8E4C900000000 + 1DD70E298FD9E6E000000000 + 1DD70E290032D20200000000 + + + B401C979A1B020B200000000 + + isa + PBXGroup + name + PasscodeUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29D0DBC52A00000000 + + isa + PBXFileReference + name + libPasscodeUI.a + path + libPasscodeUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29D0DBC52A00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979A1B020B200000000 + B401C979C806358400000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F0444FAB31100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2944FAB31100000000 + + E7A30F048C702AD500000000 + + isa + PBXBuildFile + fileRef + 1DD70E298C702AD500000000 + + E7A30F047F6C137700000000 + + isa + PBXBuildFile + fileRef + 1DD70E297F6C137700000000 + + E7A30F043E85462B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E85462B00000000 + + E7A30F043E99570200000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E99570200000000 + + E7A30F04A75DC52700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A75DC52700000000 + + E7A30F049AE87B0D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299AE87B0D00000000 + + E7A30F04E2D8E4C900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E2D8E4C900000000 + + E7A30F048FD9E6E000000000 + + isa + PBXBuildFile + fileRef + 1DD70E298FD9E6E000000000 + + E7A30F040032D20200000000 + + isa + PBXBuildFile + fileRef + 1DD70E290032D20200000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F0444FAB31100000000 + E7A30F048C702AD500000000 + E7A30F047F6C137700000000 + E7A30F043E85462B00000000 + E7A30F043E99570200000000 + E7A30F04A75DC52700000000 + E7A30F049AE87B0D00000000 + E7A30F04E2D8E4C900000000 + E7A30F048FD9E6E000000000 + E7A30F040032D20200000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04A889192100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A889192100000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04A889192100000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2981D9DDC300000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2957FC106D00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29CB92BBCF00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EA1B020B200000000 + + isa + PBXNativeTarget + name + PasscodeUI + productName + PasscodeUI + productReference + 1DD70E29D0DBC52A00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793A1B020B200000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EA1B020B200000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793A1B020B200000000 + + \ No newline at end of file diff --git a/submodules/PasscodeUI/PasscodeUI.xcodeproj/xcshareddata/xcschemes/PasscodeUI.xcscheme b/submodules/PasscodeUI/PasscodeUI.xcodeproj/xcshareddata/xcschemes/PasscodeUI.xcscheme new file mode 100644 index 0000000000..c87d5db2d9 --- /dev/null +++ b/submodules/PasscodeUI/PasscodeUI.xcodeproj/xcshareddata/xcschemes/PasscodeUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PassportUI/BUCK b/submodules/PassportUI/BUCK new file mode 100644 index 0000000000..a852478a96 --- /dev/null +++ b/submodules/PassportUI/BUCK @@ -0,0 +1,29 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "PassportUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/PhoneInputNode:PhoneInputNode", + "//submodules/CountrySelectionUI:CountrySelectionUI", + "//submodules/GalleryUI:GalleryUI", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/OverlayStatusController:OverlayStatusController", + "//submodules/LegacyUI:LegacyUI", + "//submodules/ImageCompression:ImageCompression", + "//submodules/DateSelectionUI:DateSelectionUI", + "//submodules/PasswordSetupUI:PasswordSetupUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/PassportUI/PassportUI.xcodeproj/project.pbxproj b/submodules/PassportUI/PassportUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..69e01318db --- /dev/null +++ b/submodules/PassportUI/PassportUI.xcodeproj/project.pbxproj @@ -0,0 +1,2426 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29E97BEDAF00000000 + + isa + PBXFileReference + name + PassportUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/PassportUI/PassportUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E295F59D55900000000 + + isa + PBXFileReference + name + PassportUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/PassportUI/PassportUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D2F080BB00000000 + + isa + PBXFileReference + name + PassportUI-Release.xcconfig + path + ../../buck-out/gen/submodules/PassportUI/PassportUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29E97BEDAF00000000 + 1DD70E295F59D55900000000 + 1DD70E29D2F080BB00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29016F454200000000 + + isa + PBXFileReference + name + libCountrySelectionUI.a + path + libCountrySelectionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2979E58A0000000000 + + isa + PBXFileReference + name + libDateSelectionUI.a + path + libDateSelectionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F29DEA1400000000 + + isa + PBXFileReference + name + libGalleryUI.a + path + libGalleryUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C6E517A300000000 + + isa + PBXFileReference + name + libImageCompression.a + path + libImageCompression.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2952137F3500000000 + + isa + PBXFileReference + name + libLegacyUI.a + path + libLegacyUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AF00DC4900000000 + + isa + PBXFileReference + name + libOpenInExternalAppUI.a + path + libOpenInExternalAppUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BBAF750C00000000 + + isa + PBXFileReference + name + libOverlayStatusController.a + path + libOverlayStatusController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299856EB2400000000 + + isa + PBXFileReference + name + libPasswordSetupUI.a + path + libPasswordSetupUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29005B963600000000 + + isa + PBXFileReference + name + libPhoneInputNode.a + path + libPhoneInputNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CF967D4300000000 + + isa + PBXFileReference + name + libScreenCaptureDetection.a + path + libScreenCaptureDetection.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E296A346AC200000000 + + isa + PBXFileReference + name + libSwipeToDismissGesture.a + path + libSwipeToDismissGesture.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C7E0F39600000000 + + isa + PBXFileReference + name + libTelegramUniversalVideoContent.a + path + libTelegramUniversalVideoContent.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A6BAE8A300000000 + + isa + PBXFileReference + name + libWebsiteType.a + path + libWebsiteType.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E297AB043C800000000 + 1DD70E2997B4D6D800000000 + 1DD70E29016F454200000000 + 1DD70E2979E58A0000000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29F29DEA1400000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29C6E517A300000000 + 1DD70E29247D9AC100000000 + 1DD70E295A26607D00000000 + 1DD70E2952137F3500000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29AF00DC4900000000 + 1DD70E29BBAF750C00000000 + 1DD70E299856EB2400000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E29005B963600000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29CF967D4300000000 + 1DD70E29EA9CBB5B00000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E296A346AC200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29C7E0F39600000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + 1DD70E29A6BAE8A300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29FAC5F50300000000 + + isa + PBXFileReference + name + FormBlockItemNode.swift + path + Sources/Form/FormBlockItemNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FBEEE64500000000 + + isa + PBXFileReference + name + FormController.swift + path + Sources/Form/FormController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F5EE520E00000000 + + isa + PBXFileReference + name + FormControllerActionItem.swift + path + Sources/Form/FormControllerActionItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E296FC31C7F00000000 + + isa + PBXFileReference + name + FormControllerDetailActionItem.swift + path + Sources/Form/FormControllerDetailActionItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E296F3F75A500000000 + + isa + PBXFileReference + name + FormControllerHeaderItem.swift + path + Sources/Form/FormControllerHeaderItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E298039933800000000 + + isa + PBXFileReference + name + FormControllerItem.swift + path + Sources/Form/FormControllerItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29513F96E700000000 + + isa + PBXFileReference + name + FormControllerNode.swift + path + Sources/Form/FormControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2947C4A6C100000000 + + isa + PBXFileReference + name + FormControllerScrollerNode.swift + path + Sources/Form/FormControllerScrollerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CEF00E3500000000 + + isa + PBXFileReference + name + FormControllerTextInputItem.swift + path + Sources/Form/FormControllerTextInputItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B3F9004500000000 + + isa + PBXFileReference + name + FormControllerTextItem.swift + path + Sources/Form/FormControllerTextItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F5ED8FFF00000000 + + isa + PBXFileReference + name + FormEditableBlockItemNode.swift + path + Sources/Form/FormEditableBlockItemNode.swift + sourceTree + SOURCE_ROOT + + B401C979002180E400000000 + + isa + PBXGroup + name + Form + path + Sources/Form + sourceTree + SOURCE_ROOT + children + + 1DD70E29FAC5F50300000000 + 1DD70E29FBEEE64500000000 + 1DD70E29F5EE520E00000000 + 1DD70E296FC31C7F00000000 + 1DD70E296F3F75A500000000 + 1DD70E298039933800000000 + 1DD70E29513F96E700000000 + 1DD70E2947C4A6C100000000 + 1DD70E29CEF00E3500000000 + 1DD70E29B3F9004500000000 + 1DD70E29F5ED8FFF00000000 + + + 1DD70E29D4C9F26B00000000 + + isa + PBXFileReference + name + FindSecureIdValue.swift + path + Sources/FindSecureIdValue.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E296E38F8E200000000 + + isa + PBXFileReference + name + LegacySecureIdAttachmentMenu.swift + path + Sources/LegacySecureIdAttachmentMenu.swift + sourceTree + SOURCE_ROOT + + 1DD70E2942DAF07900000000 + + isa + PBXFileReference + name + LegacySecureIdScanController.swift + path + Sources/LegacySecureIdScanController.swift + sourceTree + SOURCE_ROOT + + 1DD70E290BAD464900000000 + + isa + PBXFileReference + name + SecureIdAuthAcceptNode.swift + path + Sources/SecureIdAuthAcceptNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C3D7CBC600000000 + + isa + PBXFileReference + name + SecureIdAuthContentNode.swift + path + Sources/SecureIdAuthContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D59AF93B00000000 + + isa + PBXFileReference + name + SecureIdAuthController.swift + path + Sources/SecureIdAuthController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29801D3EDD00000000 + + isa + PBXFileReference + name + SecureIdAuthControllerNode.swift + path + Sources/SecureIdAuthControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29725C058000000000 + + isa + PBXFileReference + name + SecureIdAuthControllerState.swift + path + Sources/SecureIdAuthControllerState.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CFC18C6200000000 + + isa + PBXFileReference + name + SecureIdAuthFormContentNode.swift + path + Sources/SecureIdAuthFormContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E293F6E9C2300000000 + + isa + PBXFileReference + name + SecureIdAuthFormFieldNode.swift + path + Sources/SecureIdAuthFormFieldNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B9B7118E00000000 + + isa + PBXFileReference + name + SecureIdAuthHeaderNode.swift + path + Sources/SecureIdAuthHeaderNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DB33D7C800000000 + + isa + PBXFileReference + name + SecureIdAuthListContentNode.swift + path + Sources/SecureIdAuthListContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F1A8890900000000 + + isa + PBXFileReference + name + SecureIdAuthListFieldNode.swift + path + Sources/SecureIdAuthListFieldNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E296353083600000000 + + isa + PBXFileReference + name + SecureIdAuthPasswordOptionContentNode.swift + path + Sources/SecureIdAuthPasswordOptionContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E290B25CE7800000000 + + isa + PBXFileReference + name + SecureIdAuthPasswordSetupContentNode.swift + path + Sources/SecureIdAuthPasswordSetupContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A864881200000000 + + isa + PBXFileReference + name + SecureIdDocumentFormController.swift + path + Sources/SecureIdDocumentFormController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A3458A3400000000 + + isa + PBXFileReference + name + SecureIdDocumentFormControllerNode.swift + path + Sources/SecureIdDocumentFormControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29473007A600000000 + + isa + PBXFileReference + name + SecureIdDocumentGalleryController.swift + path + Sources/SecureIdDocumentGalleryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B5B3C62000000000 + + isa + PBXFileReference + name + SecureIdDocumentGalleryFooterContentNode.swift + path + Sources/SecureIdDocumentGalleryFooterContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CF8AC6FC00000000 + + isa + PBXFileReference + name + SecureIdDocumentImageGalleryItem.swift + path + Sources/SecureIdDocumentImageGalleryItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D86D918600000000 + + isa + PBXFileReference + name + SecureIdDocumentTypeSelectionController.swift + path + Sources/SecureIdDocumentTypeSelectionController.swift + sourceTree + SOURCE_ROOT + + 1DD70E292A27B40C00000000 + + isa + PBXFileReference + name + SecureIdLocalResource.swift + path + Sources/SecureIdLocalResource.swift + sourceTree + SOURCE_ROOT + + 1DD70E29EE9688CA00000000 + + isa + PBXFileReference + name + SecureIdPlaintextFormController.swift + path + Sources/SecureIdPlaintextFormController.swift + sourceTree + SOURCE_ROOT + + 1DD70E298A986EEC00000000 + + isa + PBXFileReference + name + SecureIdPlaintextFormControllerNode.swift + path + Sources/SecureIdPlaintextFormControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2960A393D700000000 + + isa + PBXFileReference + name + SecureIdValueFormFileItem.swift + path + Sources/SecureIdValueFormFileItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A5AA0A2300000000 + + isa + PBXFileReference + name + SecureIdValueFormPhoneItem.swift + path + Sources/SecureIdValueFormPhoneItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E298096F67900000000 + + isa + PBXFileReference + name + SecureIdValues.swift + path + Sources/SecureIdValues.swift + sourceTree + SOURCE_ROOT + + 1DD70E29800CA32D00000000 + + isa + PBXFileReference + name + SecureIdVerificationDocument.swift + path + Sources/SecureIdVerificationDocument.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D4CE53E900000000 + + isa + PBXFileReference + name + SecureIdVerificationDocumentsContext.swift + path + Sources/SecureIdVerificationDocumentsContext.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C979002180E400000000 + 1DD70E29D4C9F26B00000000 + 1DD70E291289FAA500000000 + 1DD70E296E38F8E200000000 + 1DD70E2942DAF07900000000 + 1DD70E290BAD464900000000 + 1DD70E29C3D7CBC600000000 + 1DD70E29D59AF93B00000000 + 1DD70E29801D3EDD00000000 + 1DD70E29725C058000000000 + 1DD70E29CFC18C6200000000 + 1DD70E293F6E9C2300000000 + 1DD70E29B9B7118E00000000 + 1DD70E29DB33D7C800000000 + 1DD70E29F1A8890900000000 + 1DD70E296353083600000000 + 1DD70E290B25CE7800000000 + 1DD70E29A864881200000000 + 1DD70E29A3458A3400000000 + 1DD70E29473007A600000000 + 1DD70E29B5B3C62000000000 + 1DD70E29CF8AC6FC00000000 + 1DD70E29D86D918600000000 + 1DD70E292A27B40C00000000 + 1DD70E29EE9688CA00000000 + 1DD70E298A986EEC00000000 + 1DD70E2960A393D700000000 + 1DD70E29A5AA0A2300000000 + 1DD70E298096F67900000000 + 1DD70E29800CA32D00000000 + 1DD70E29D4CE53E900000000 + + + B401C979B7E5B64600000000 + + isa + PBXGroup + name + PassportUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29300245BE00000000 + + isa + PBXFileReference + name + libPassportUI.a + path + libPassportUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29300245BE00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979B7E5B64600000000 + B401C979C806358400000000 + + + E7A30F04FAC5F50300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FAC5F50300000000 + + E7A30F04FBEEE64500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FBEEE64500000000 + + E7A30F04F5EE520E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F5EE520E00000000 + + E7A30F046FC31C7F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296FC31C7F00000000 + + E7A30F046F3F75A500000000 + + isa + PBXBuildFile + fileRef + 1DD70E296F3F75A500000000 + + E7A30F048039933800000000 + + isa + PBXBuildFile + fileRef + 1DD70E298039933800000000 + + E7A30F04513F96E700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29513F96E700000000 + + E7A30F0447C4A6C100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2947C4A6C100000000 + + E7A30F04CEF00E3500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CEF00E3500000000 + + E7A30F04B3F9004500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B3F9004500000000 + + E7A30F04F5ED8FFF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F5ED8FFF00000000 + + E7A30F04D4C9F26B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D4C9F26B00000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F046E38F8E200000000 + + isa + PBXBuildFile + fileRef + 1DD70E296E38F8E200000000 + + E7A30F0442DAF07900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2942DAF07900000000 + + E7A30F040BAD464900000000 + + isa + PBXBuildFile + fileRef + 1DD70E290BAD464900000000 + + E7A30F04C3D7CBC600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C3D7CBC600000000 + + E7A30F04D59AF93B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D59AF93B00000000 + + E7A30F04801D3EDD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29801D3EDD00000000 + + E7A30F04725C058000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29725C058000000000 + + E7A30F04CFC18C6200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CFC18C6200000000 + + E7A30F043F6E9C2300000000 + + isa + PBXBuildFile + fileRef + 1DD70E293F6E9C2300000000 + + E7A30F04B9B7118E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B9B7118E00000000 + + E7A30F04DB33D7C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB33D7C800000000 + + E7A30F04F1A8890900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F1A8890900000000 + + E7A30F046353083600000000 + + isa + PBXBuildFile + fileRef + 1DD70E296353083600000000 + + E7A30F040B25CE7800000000 + + isa + PBXBuildFile + fileRef + 1DD70E290B25CE7800000000 + + E7A30F04A864881200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A864881200000000 + + E7A30F04A3458A3400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A3458A3400000000 + + E7A30F04473007A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29473007A600000000 + + E7A30F04B5B3C62000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B5B3C62000000000 + + E7A30F04CF8AC6FC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CF8AC6FC00000000 + + E7A30F04D86D918600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D86D918600000000 + + E7A30F042A27B40C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292A27B40C00000000 + + E7A30F04EE9688CA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EE9688CA00000000 + + E7A30F048A986EEC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E298A986EEC00000000 + + E7A30F0460A393D700000000 + + isa + PBXBuildFile + fileRef + 1DD70E2960A393D700000000 + + E7A30F04A5AA0A2300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A5AA0A2300000000 + + E7A30F048096F67900000000 + + isa + PBXBuildFile + fileRef + 1DD70E298096F67900000000 + + E7A30F04800CA32D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29800CA32D00000000 + + E7A30F04D4CE53E900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D4CE53E900000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04FAC5F50300000000 + E7A30F04FBEEE64500000000 + E7A30F04F5EE520E00000000 + E7A30F046FC31C7F00000000 + E7A30F046F3F75A500000000 + E7A30F048039933800000000 + E7A30F04513F96E700000000 + E7A30F0447C4A6C100000000 + E7A30F04CEF00E3500000000 + E7A30F04B3F9004500000000 + E7A30F04F5ED8FFF00000000 + E7A30F04D4C9F26B00000000 + E7A30F041289FAA500000000 + E7A30F046E38F8E200000000 + E7A30F0442DAF07900000000 + E7A30F040BAD464900000000 + E7A30F04C3D7CBC600000000 + E7A30F04D59AF93B00000000 + E7A30F04801D3EDD00000000 + E7A30F04725C058000000000 + E7A30F04CFC18C6200000000 + E7A30F043F6E9C2300000000 + E7A30F04B9B7118E00000000 + E7A30F04DB33D7C800000000 + E7A30F04F1A8890900000000 + E7A30F046353083600000000 + E7A30F040B25CE7800000000 + E7A30F04A864881200000000 + E7A30F04A3458A3400000000 + E7A30F04473007A600000000 + E7A30F04B5B3C62000000000 + E7A30F04CF8AC6FC00000000 + E7A30F04D86D918600000000 + E7A30F042A27B40C00000000 + E7A30F04EE9688CA00000000 + E7A30F048A986EEC00000000 + E7A30F0460A393D700000000 + E7A30F04A5AA0A2300000000 + E7A30F048096F67900000000 + E7A30F04800CA32D00000000 + E7A30F04D4CE53E900000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04EA9CBB5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA9CBB5B00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04016F454200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29016F454200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F0479E58A0000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2979E58A0000000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F04AF00DC4900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AF00DC4900000000 + + E7A30F04CF967D4300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CF967D4300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + E7A30F046A346AC200000000 + + isa + PBXBuildFile + fileRef + 1DD70E296A346AC200000000 + + E7A30F04C7E0F39600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7E0F39600000000 + + E7A30F04A6BAE8A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A6BAE8A300000000 + + E7A30F04F29DEA1400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F29DEA1400000000 + + E7A30F04C6E517A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C6E517A300000000 + + E7A30F0452137F3500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2952137F3500000000 + + E7A30F04BBAF750C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BBAF750C00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F049856EB2400000000 + + isa + PBXBuildFile + fileRef + 1DD70E299856EB2400000000 + + E7A30F04005B963600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29005B963600000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04D65BA68200000000 + E7A30F04DB6520C800000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04BF0846EE00000000 + E7A30F04EA9CBB5B00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04016F454200000000 + E7A30F045915423000000000 + E7A30F04F33FDAC300000000 + E7A30F0451398CF200000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F0479E58A0000000000 + E7A30F0497B4D6D800000000 + E7A30F04D6F14E1000000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04CD296A8300000000 + E7A30F04490601EB00000000 + E7A30F04597BAFBB00000000 + E7A30F04AF00DC4900000000 + E7A30F04CF967D4300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F041E16CC6C00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F04AC43662400000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04D233F68C00000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F0481AE180900000000 + E7A30F046A346AC200000000 + E7A30F04C7E0F39600000000 + E7A30F04A6BAE8A300000000 + E7A30F04F29DEA1400000000 + E7A30F04C6E517A300000000 + E7A30F0452137F3500000000 + E7A30F04BBAF750C00000000 + E7A30F04F523B9DE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F049856EB2400000000 + E7A30F04005B963600000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29E97BEDAF00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E295F59D55900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29D2F080BB00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EB7E5B64600000000 + + isa + PBXNativeTarget + name + PassportUI + productName + PassportUI + productReference + 1DD70E29300245BE00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793B7E5B64600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EB7E5B64600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793B7E5B64600000000 + + \ No newline at end of file diff --git a/submodules/PassportUI/PassportUI.xcodeproj/xcshareddata/xcschemes/PassportUI.xcscheme b/submodules/PassportUI/PassportUI.xcodeproj/xcshareddata/xcschemes/PassportUI.xcscheme new file mode 100644 index 0000000000..8916c86087 --- /dev/null +++ b/submodules/PassportUI/PassportUI.xcodeproj/xcshareddata/xcschemes/PassportUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PasswordSetupUI/BUCK b/submodules/PasswordSetupUI/BUCK new file mode 100644 index 0000000000..16010b0356 --- /dev/null +++ b/submodules/PasswordSetupUI/BUCK @@ -0,0 +1,27 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "PasswordSetupUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/ProgressNavigationButtonNode:ProgressNavigationButtonNode", + "//submodules/ActivityIndicator:ActivityIndicator", + "//submodules/AlertUI:AlertUI", + "//submodules/ItemListUI:ItemListUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/CoreLocation.framework", + "$SDKROOT/System/Library/Frameworks/MapKit.framework", + ], +) diff --git a/submodules/PasswordSetupUI/PasswordSetupUI.xcodeproj/project.pbxproj b/submodules/PasswordSetupUI/PasswordSetupUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..abff3f17f0 --- /dev/null +++ b/submodules/PasswordSetupUI/PasswordSetupUI.xcodeproj/project.pbxproj @@ -0,0 +1,1011 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2976B05F5F00000000 + + isa + PBXFileReference + name + PasswordSetupUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/PasswordSetupUI/PasswordSetupUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2971389B0900000000 + + isa + PBXFileReference + name + PasswordSetupUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/PasswordSetupUI/PasswordSetupUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29E4CF466B00000000 + + isa + PBXFileReference + name + PasswordSetupUI-Release.xcconfig + path + ../../buck-out/gen/submodules/PasswordSetupUI/PasswordSetupUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2976B05F5F00000000 + 1DD70E2971389B0900000000 + 1DD70E29E4CF466B00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E2997B4D6D800000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E290E1B464B00000000 + + isa + PBXFileReference + name + ResetPasswordController.swift + path + Sources/ResetPasswordController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29185F974A00000000 + + isa + PBXFileReference + name + SetupTwoStepVerificationContentNode.swift + path + Sources/SetupTwoStepVerificationContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E292AE9AD3700000000 + + isa + PBXFileReference + name + SetupTwoStepVerificationController.swift + path + Sources/SetupTwoStepVerificationController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2966B994D900000000 + + isa + PBXFileReference + name + SetupTwoStepVerificationControllerNode.swift + path + Sources/SetupTwoStepVerificationControllerNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E290E1B464B00000000 + 1DD70E29185F974A00000000 + 1DD70E292AE9AD3700000000 + 1DD70E2966B994D900000000 + + + B401C979D9721A9600000000 + + isa + PBXGroup + name + PasswordSetupUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E299856EB2400000000 + + isa + PBXFileReference + name + libPasswordSetupUI.a + path + libPasswordSetupUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E299856EB2400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979D9721A9600000000 + B401C979C806358400000000 + + + E7A30F040E1B464B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290E1B464B00000000 + + E7A30F04185F974A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29185F974A00000000 + + E7A30F042AE9AD3700000000 + + isa + PBXBuildFile + fileRef + 1DD70E292AE9AD3700000000 + + E7A30F0466B994D900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2966B994D900000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F040E1B464B00000000 + E7A30F04185F974A00000000 + E7A30F042AE9AD3700000000 + E7A30F0466B994D900000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04BF0846EE00000000 + E7A30F04F523B9DE00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2976B05F5F00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2971389B0900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29E4CF466B00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04ED9721A9600000000 + + isa + PBXNativeTarget + name + PasswordSetupUI + productName + PasswordSetupUI + productReference + 1DD70E299856EB2400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793D9721A9600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04ED9721A9600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793D9721A9600000000 + + \ No newline at end of file diff --git a/submodules/PasswordSetupUI/PasswordSetupUI.xcodeproj/xcshareddata/xcschemes/PasswordSetupUI.xcscheme b/submodules/PasswordSetupUI/PasswordSetupUI.xcodeproj/xcshareddata/xcschemes/PasswordSetupUI.xcscheme new file mode 100644 index 0000000000..f14f74f81f --- /dev/null +++ b/submodules/PasswordSetupUI/PasswordSetupUI.xcodeproj/xcshareddata/xcschemes/PasswordSetupUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/Pdf/Pdf.xcodeproj/project.pbxproj b/submodules/Pdf/Pdf.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..1af995eb5d --- /dev/null +++ b/submodules/Pdf/Pdf.xcodeproj/project.pbxproj @@ -0,0 +1,379 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29767181A300000000 + + isa + PBXFileReference + name + Pdf-Debug.xcconfig + path + ../../buck-out/gen/submodules/Pdf/Pdf-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29853A3C4D00000000 + + isa + PBXFileReference + name + Pdf-Profile.xcconfig + path + ../../buck-out/gen/submodules/Pdf/Pdf-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29F8D0E7AF00000000 + + isa + PBXFileReference + name + Pdf-Release.xcconfig + path + ../../buck-out/gen/submodules/Pdf/Pdf-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29767181A300000000 + 1DD70E29853A3C4D00000000 + 1DD70E29F8D0E7AF00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29B931F9F700000000 + + isa + PBXFileReference + name + PDF.swift + path + Sources/PDF.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29B931F9F700000000 + + + B401C979000138D200000000 + + isa + PBXGroup + name + Pdf + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29313E7AE000000000 + + isa + PBXFileReference + name + libPdf.a + path + libPdf.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29313E7AE000000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979000138D200000000 + B401C979C806358400000000 + + + E7A30F04B931F9F700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B931F9F700000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04B931F9F700000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29767181A300000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29853A3C4D00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29F8D0E7AF00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E000138D200000000 + + isa + PBXNativeTarget + name + Pdf + productName + Pdf + productReference + 1DD70E29313E7AE000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793000138D200000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E000138D200000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793000138D200000000 + + \ No newline at end of file diff --git a/submodules/Pdf/Pdf.xcodeproj/xcshareddata/xcschemes/Pdf.xcscheme b/submodules/Pdf/Pdf.xcodeproj/xcshareddata/xcschemes/Pdf.xcscheme new file mode 100644 index 0000000000..6d4db1af6b --- /dev/null +++ b/submodules/Pdf/Pdf.xcodeproj/xcshareddata/xcschemes/Pdf.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PeerAvatarGalleryUI/BUCK b/submodules/PeerAvatarGalleryUI/BUCK new file mode 100644 index 0000000000..e188cb44d5 --- /dev/null +++ b/submodules/PeerAvatarGalleryUI/BUCK @@ -0,0 +1,29 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "PeerAvatarGalleryUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/GalleryUI:GalleryUI", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/PhotoResources:PhotoResources", + "//submodules/RadialStatusNode:RadialStatusNode", + "//submodules/ShareController:ShareController", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/QuickLook.framework", + "$SDKROOT/System/Library/Frameworks/Photos.framework", + ], +) diff --git a/submodules/PeerAvatarGalleryUI/PeerAvatarGalleryUI.xcodeproj/project.pbxproj b/submodules/PeerAvatarGalleryUI/PeerAvatarGalleryUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..a45f8c89e4 --- /dev/null +++ b/submodules/PeerAvatarGalleryUI/PeerAvatarGalleryUI.xcodeproj/project.pbxproj @@ -0,0 +1,1407 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E297F6B972A00000000 + + isa + PBXFileReference + name + PeerAvatarGalleryUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/PeerAvatarGalleryUI/PeerAvatarGalleryUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2938050C1400000000 + + isa + PBXFileReference + name + PeerAvatarGalleryUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/PeerAvatarGalleryUI/PeerAvatarGalleryUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AB9BB77600000000 + + isa + PBXFileReference + name + PeerAvatarGalleryUI-Release.xcconfig + path + ../../buck-out/gen/submodules/PeerAvatarGalleryUI/PeerAvatarGalleryUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E297F6B972A00000000 + 1DD70E2938050C1400000000 + 1DD70E29AB9BB77600000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F29DEA1400000000 + + isa + PBXFileReference + name + libGalleryUI.a + path + libGalleryUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AF00DC4900000000 + + isa + PBXFileReference + name + libOpenInExternalAppUI.a + path + libOpenInExternalAppUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CF967D4300000000 + + isa + PBXFileReference + name + libScreenCaptureDetection.a + path + libScreenCaptureDetection.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E296A346AC200000000 + + isa + PBXFileReference + name + libSwipeToDismissGesture.a + path + libSwipeToDismissGesture.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C7E0F39600000000 + + isa + PBXFileReference + name + libTelegramUniversalVideoContent.a + path + libTelegramUniversalVideoContent.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A6BAE8A300000000 + + isa + PBXFileReference + name + libWebsiteType.a + path + libWebsiteType.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E297AB043C800000000 + 1DD70E2997B4D6D800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29F29DEA1400000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29AF00DC4900000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29CF967D4300000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E296A346AC200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29C7E0F39600000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + 1DD70E29A6BAE8A300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29550A52FA00000000 + + isa + PBXFileReference + name + AvatarGalleryController.swift + path + Sources/AvatarGalleryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E296334003900000000 + + isa + PBXFileReference + name + AvatarGalleryItemFooterContentNode.swift + path + Sources/AvatarGalleryItemFooterContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E2992EE2FAA00000000 + + isa + PBXFileReference + name + PeerAvatarImageGalleryItem.swift + path + Sources/PeerAvatarImageGalleryItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29550A52FA00000000 + 1DD70E296334003900000000 + 1DD70E291289FAA500000000 + 1DD70E2992EE2FAA00000000 + + + B401C9799FB5A62B00000000 + + isa + PBXGroup + name + PeerAvatarGalleryUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29C7165FF900000000 + + isa + PBXFileReference + name + libPeerAvatarGalleryUI.a + path + libPeerAvatarGalleryUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29C7165FF900000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9799FB5A62B00000000 + B401C979C806358400000000 + + + E7A30F04550A52FA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29550A52FA00000000 + + E7A30F046334003900000000 + + isa + PBXBuildFile + fileRef + 1DD70E296334003900000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F0492EE2FAA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2992EE2FAA00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04550A52FA00000000 + E7A30F046334003900000000 + E7A30F041289FAA500000000 + E7A30F0492EE2FAA00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F04AF00DC4900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AF00DC4900000000 + + E7A30F04CF967D4300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CF967D4300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + E7A30F046A346AC200000000 + + isa + PBXBuildFile + fileRef + 1DD70E296A346AC200000000 + + E7A30F04C7E0F39600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7E0F39600000000 + + E7A30F04A6BAE8A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A6BAE8A300000000 + + E7A30F04F29DEA1400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F29DEA1400000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F0497B4D6D800000000 + E7A30F04D6F14E1000000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04CD296A8300000000 + E7A30F04490601EB00000000 + E7A30F04597BAFBB00000000 + E7A30F04AF00DC4900000000 + E7A30F04CF967D4300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F041E16CC6C00000000 + E7A30F04BF0846EE00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F04AC43662400000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04D233F68C00000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F0481AE180900000000 + E7A30F046A346AC200000000 + E7A30F04C7E0F39600000000 + E7A30F04A6BAE8A300000000 + E7A30F04F29DEA1400000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E297F6B972A00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2938050C1400000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29AB9BB77600000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E9FB5A62B00000000 + + isa + PBXNativeTarget + name + PeerAvatarGalleryUI + productName + PeerAvatarGalleryUI + productReference + 1DD70E29C7165FF900000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847939FB5A62B00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E9FB5A62B00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847939FB5A62B00000000 + + \ No newline at end of file diff --git a/submodules/PeerAvatarGalleryUI/PeerAvatarGalleryUI.xcodeproj/xcshareddata/xcschemes/PeerAvatarGalleryUI.xcscheme b/submodules/PeerAvatarGalleryUI/PeerAvatarGalleryUI.xcodeproj/xcshareddata/xcschemes/PeerAvatarGalleryUI.xcscheme new file mode 100644 index 0000000000..d6194b114c --- /dev/null +++ b/submodules/PeerAvatarGalleryUI/PeerAvatarGalleryUI.xcodeproj/xcshareddata/xcschemes/PeerAvatarGalleryUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PeerInfoUI/BUCK b/submodules/PeerInfoUI/BUCK new file mode 100644 index 0000000000..466c451fa6 --- /dev/null +++ b/submodules/PeerInfoUI/BUCK @@ -0,0 +1,66 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "PeerInfoUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/ItemListUI:ItemListUI", + "//submodules/AlertUI:AlertUI", + "//submodules/ItemListAvatarAndNameInfoItem:ItemListAvatarAndNameInfoItem", + "//submodules/UndoUI:UndoUI", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/TemporaryCachedPeerDataManager:TemporaryCachedPeerDataManager", + "//submodules/ItemListPeerItem:ItemListPeerItem", + "//submodules/ItemListPeerActionItem:ItemListPeerActionItem", + "//submodules/OverlayStatusController:OverlayStatusController", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/SearchUI:SearchUI", + "//submodules/MergeLists:MergeLists", + "//submodules/TextFormat:TextFormat", + "//submodules/LegacyUI:LegacyUI", + "//submodules/GalleryUI:GalleryUI", + "//submodules/ShareController:ShareController", + "//submodules/WebSearchUI:WebSearchUI", + "//submodules/SearchBarNode:SearchBarNode", + "//submodules/ContactsPeerItem:ContactsPeerItem", + "//submodules/PasswordSetupUI:PasswordSetupUI", + "//submodules/ActivityIndicator:ActivityIndicator", + "//submodules/TelegramPermissionsUI:TelegramPermissionsUI", + "//submodules/ProgressNavigationButtonNode:ProgressNavigationButtonNode", + "//submodules/TelegramNotices:TelegramNotices", + "//submodules/PhotoResources:PhotoResources", + "//submodules/MediaResources:MediaResources", + "//submodules/Geocoding:Geocoding", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/LocationUI:LocationUI", + "//submodules/StickerResources:StickerResources", + "//submodules/StickerPackPreviewUI:StickerPackPreviewUI", + "//submodules/PeerAvatarGalleryUI:PeerAvatarGalleryUI", + "//submodules/Emoji:Emoji", + "//submodules/ItemListStickerPackItem:ItemListStickerPackItem", + "//submodules/NotificationMuteSettingsUI:NotificationMuteSettingsUI", + "//submodules/SinglePhoneInputNode:SinglePhoneInputNode", + "//submodules/MapResourceToAvatarSizes:MapResourceToAvatarSizes", + "//submodules/NotificationSoundSelectionUI:NotificationSoundSelectionUI", + "//submodules/EncryptionKeyVisualization:EncryptionKeyVisualization", + "//submodules/ItemListAddressItem:ItemListAddressItem", + "//submodules/ContactListUI:ContactListUI", + "//submodules/ContextUI:ContextUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/MessageUI.framework", + "$SDKROOT/System/Library/Frameworks/WebKit.framework", + "$SDKROOT/System/Library/Frameworks/SafariServices.framework", + ], +) diff --git a/submodules/PeerInfoUI/PeerInfoUI.xcodeproj/project.pbxproj b/submodules/PeerInfoUI/PeerInfoUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..00b1ea568e --- /dev/null +++ b/submodules/PeerInfoUI/PeerInfoUI.xcodeproj/project.pbxproj @@ -0,0 +1,3027 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29F680D05100000000 + + isa + PBXFileReference + name + PeerInfoUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/PeerInfoUI/PeerInfoUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E293EB0977B00000000 + + isa + PBXFileReference + name + PeerInfoUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/PeerInfoUI/PeerInfoUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B24742DD00000000 + + isa + PBXFileReference + name + PeerInfoUI-Release.xcconfig + path + ../../buck-out/gen/submodules/PeerInfoUI/PeerInfoUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29F680D05100000000 + 1DD70E293EB0977B00000000 + 1DD70E29B24742DD00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FD72F45600000000 + + isa + PBXFileReference + name + libChatListSearchItemHeader.a + path + libChatListSearchItemHeader.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2907DC840B00000000 + + isa + PBXFileReference + name + libChatListSearchItemNode.a + path + libChatListSearchItemNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292F91702000000000 + + isa + PBXFileReference + name + libContactListUI.a + path + libContactListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2931752C6000000000 + + isa + PBXFileReference + name + libContactsPeerItem.a + path + libContactsPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E296C9831F100000000 + + isa + PBXFileReference + name + libContextUI.a + path + libContextUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29A59C927400000000 + + isa + PBXFileReference + name + libEmoji.a + path + libEmoji.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AE190FC000000000 + + isa + PBXFileReference + name + libEncryptionKeyVisualization.a + path + libEncryptionKeyVisualization.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F29DEA1400000000 + + isa + PBXFileReference + name + libGalleryUI.a + path + libGalleryUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D1EB356900000000 + + isa + PBXFileReference + name + libGeocoding.a + path + libGeocoding.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C6E517A300000000 + + isa + PBXFileReference + name + libImageCompression.a + path + libImageCompression.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C137890400000000 + + isa + PBXFileReference + name + libItemListAddressItem.a + path + libItemListAddressItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F2CA340700000000 + + isa + PBXFileReference + name + libItemListAvatarAndNameInfoItem.a + path + libItemListAvatarAndNameInfoItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2905A95CB400000000 + + isa + PBXFileReference + name + libItemListPeerActionItem.a + path + libItemListPeerActionItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299A24C4DE00000000 + + isa + PBXFileReference + name + libItemListPeerItem.a + path + libItemListPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295C00B78600000000 + + isa + PBXFileReference + name + libItemListStickerPackItem.a + path + libItemListStickerPackItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E296C39078B00000000 + + isa + PBXFileReference + name + libLegacyMediaPickerUI.a + path + libLegacyMediaPickerUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2952137F3500000000 + + isa + PBXFileReference + name + libLegacyUI.a + path + libLegacyUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2968BAC05A00000000 + + isa + PBXFileReference + name + libLocalMediaResources.a + path + libLocalMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29E102CFE100000000 + + isa + PBXFileReference + name + libLocationUI.a + path + libLocationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A3994F2C00000000 + + isa + PBXFileReference + name + libMapResourceToAvatarSizes.a + path + libMapResourceToAvatarSizes.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E298ED1FB1300000000 + + isa + PBXFileReference + name + libNotificationMuteSettingsUI.a + path + libNotificationMuteSettingsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2937C1167400000000 + + isa + PBXFileReference + name + libNotificationSoundSelectionUI.a + path + libNotificationSoundSelectionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AF00DC4900000000 + + isa + PBXFileReference + name + libOpenInExternalAppUI.a + path + libOpenInExternalAppUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BBAF750C00000000 + + isa + PBXFileReference + name + libOverlayStatusController.a + path + libOverlayStatusController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299856EB2400000000 + + isa + PBXFileReference + name + libPasswordSetupUI.a + path + libPasswordSetupUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C7165FF900000000 + + isa + PBXFileReference + name + libPeerAvatarGalleryUI.a + path + libPeerAvatarGalleryUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291631B91900000000 + + isa + PBXFileReference + name + libPeersNearbyIconNode.a + path + libPeersNearbyIconNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CF967D4300000000 + + isa + PBXFileReference + name + libScreenCaptureDetection.a + path + libScreenCaptureDetection.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291328E99400000000 + + isa + PBXFileReference + name + libSearchUI.a + path + libSearchUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29135DFEDE00000000 + + isa + PBXFileReference + name + libSinglePhoneInputNode.a + path + libSinglePhoneInputNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29524F478E00000000 + + isa + PBXFileReference + name + libSolidRoundedButtonNode.a + path + libSolidRoundedButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2907DC815E00000000 + + isa + PBXFileReference + name + libStickerPackPreviewUI.a + path + libStickerPackPreviewUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E296A346AC200000000 + + isa + PBXFileReference + name + libSwipeToDismissGesture.a + path + libSwipeToDismissGesture.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2988BAAFC800000000 + + isa + PBXFileReference + name + libTelegramNotices.a + path + libTelegramNotices.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DF758A8500000000 + + isa + PBXFileReference + name + libTelegramPermissionsUI.a + path + libTelegramPermissionsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C7E0F39600000000 + + isa + PBXFileReference + name + libTelegramUniversalVideoContent.a + path + libTelegramUniversalVideoContent.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F40A586F00000000 + + isa + PBXFileReference + name + libTextSelectionNode.a + path + libTextSelectionNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AE67341000000000 + + isa + PBXFileReference + name + libUndoUI.a + path + libUndoUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DF12291E00000000 + + isa + PBXFileReference + name + libWebSearchUI.a + path + libWebSearchUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A6BAE8A300000000 + + isa + PBXFileReference + name + libWebsiteType.a + path + libWebsiteType.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E29FD72F45600000000 + 1DD70E2907DC840B00000000 + 1DD70E297AB043C800000000 + 1DD70E2997B4D6D800000000 + 1DD70E292F91702000000000 + 1DD70E2931752C6000000000 + 1DD70E296C9831F100000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29A59C927400000000 + 1DD70E29AE190FC000000000 + 1DD70E29F29DEA1400000000 + 1DD70E29D1EB356900000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29C6E517A300000000 + 1DD70E29247D9AC100000000 + 1DD70E29C137890400000000 + 1DD70E29F2CA340700000000 + 1DD70E2905A95CB400000000 + 1DD70E299A24C4DE00000000 + 1DD70E295C00B78600000000 + 1DD70E295A26607D00000000 + 1DD70E296C39078B00000000 + 1DD70E2952137F3500000000 + 1DD70E29AC43662400000000 + 1DD70E2968BAC05A00000000 + 1DD70E29CE34063500000000 + 1DD70E29E102CFE100000000 + 1DD70E29A3994F2C00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E298ED1FB1300000000 + 1DD70E2937C1167400000000 + 1DD70E29AF00DC4900000000 + 1DD70E29BBAF750C00000000 + 1DD70E299856EB2400000000 + 1DD70E29C7165FF900000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E291631B91900000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29CF967D4300000000 + 1DD70E29EA9CBB5B00000000 + 1DD70E291328E99400000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E29135DFEDE00000000 + 1DD70E29524F478E00000000 + 1DD70E2907DC815E00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E296A346AC200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2988BAAFC800000000 + 1DD70E290DD17C7100000000 + 1DD70E29DF758A8500000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29C7E0F39600000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29F40A586F00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E29AE67341000000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + 1DD70E29DF12291E00000000 + 1DD70E29A6BAE8A300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E293E55698D00000000 + + isa + PBXFileReference + name + ChannelAdminController.swift + path + Sources/ChannelAdminController.swift + sourceTree + SOURCE_ROOT + + 1DD70E290738312800000000 + + isa + PBXFileReference + name + ChannelAdminsController.swift + path + Sources/ChannelAdminsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29491B6B3C00000000 + + isa + PBXFileReference + name + ChannelBannedMemberController.swift + path + Sources/ChannelBannedMemberController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2954297CDB00000000 + + isa + PBXFileReference + name + ChannelBlacklistController.swift + path + Sources/ChannelBlacklistController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F85B15AD00000000 + + isa + PBXFileReference + name + ChannelDiscussionGroupActionSheetItem.swift + path + Sources/ChannelDiscussionGroupActionSheetItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BFDE8A4C00000000 + + isa + PBXFileReference + name + ChannelDiscussionGroupSearchContainerNode.swift + path + Sources/ChannelDiscussionGroupSearchContainerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29AF34026A00000000 + + isa + PBXFileReference + name + ChannelDiscussionGroupSetupController.swift + path + Sources/ChannelDiscussionGroupSetupController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C24A170E00000000 + + isa + PBXFileReference + name + ChannelDiscussionGroupSetupHeaderItem.swift + path + Sources/ChannelDiscussionGroupSetupHeaderItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E299E66B46900000000 + + isa + PBXFileReference + name + ChannelDiscussionGroupSetupSearchItem.swift + path + Sources/ChannelDiscussionGroupSetupSearchItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B3BAEF9200000000 + + isa + PBXFileReference + name + ChannelInfoController.swift + path + Sources/ChannelInfoController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29068B181700000000 + + isa + PBXFileReference + name + ChannelMembersController.swift + path + Sources/ChannelMembersController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D4919DAA00000000 + + isa + PBXFileReference + name + ChannelMembersSearchContainerNode.swift + path + Sources/ChannelMembersSearchContainerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E290ED4795F00000000 + + isa + PBXFileReference + name + ChannelMembersSearchController.swift + path + Sources/ChannelMembersSearchController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2982920D0100000000 + + isa + PBXFileReference + name + ChannelMembersSearchControllerNode.swift + path + Sources/ChannelMembersSearchControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E291CD8C53800000000 + + isa + PBXFileReference + name + ChannelOwnershipTransferController.swift + path + Sources/ChannelOwnershipTransferController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B04BF70200000000 + + isa + PBXFileReference + name + ChannelPermissionsController.swift + path + Sources/ChannelPermissionsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FCCD8ADD00000000 + + isa + PBXFileReference + name + ChannelStatsController.swift + path + Sources/ChannelStatsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C28A2F7F00000000 + + isa + PBXFileReference + name + ChannelStatsControllerNode.swift + path + Sources/ChannelStatsControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E296B5037B600000000 + + isa + PBXFileReference + name + ChannelVisibilityController.swift + path + Sources/ChannelVisibilityController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A3981B5400000000 + + isa + PBXFileReference + name + ChatSlowmodeItem.swift + path + Sources/ChatSlowmodeItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F670175300000000 + + isa + PBXFileReference + name + ConvertToSupergroupController.swift + path + Sources/ConvertToSupergroupController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29013401F900000000 + + isa + PBXFileReference + name + DeviceContactInfoController.swift + path + Sources/DeviceContactInfoController.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E295B494B0E00000000 + + isa + PBXFileReference + name + GroupInfoController.swift + path + Sources/GroupInfoController.swift + sourceTree + SOURCE_ROOT + + 1DD70E294A7BFD0D00000000 + + isa + PBXFileReference + name + GroupInfoSearchItem.swift + path + Sources/GroupInfoSearchItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E295DDA07D700000000 + + isa + PBXFileReference + name + GroupInfoSearchNavigationContentNode.swift + path + Sources/GroupInfoSearchNavigationContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29035D478E00000000 + + isa + PBXFileReference + name + GroupPreHistorySetupController.swift + path + Sources/GroupPreHistorySetupController.swift + sourceTree + SOURCE_ROOT + + 1DD70E292F4F197A00000000 + + isa + PBXFileReference + name + GroupStickerPackCurrentItem.swift + path + Sources/GroupStickerPackCurrentItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DF75C90700000000 + + isa + PBXFileReference + name + GroupStickerPackSetupController.swift + path + Sources/GroupStickerPackSetupController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2979370EE500000000 + + isa + PBXFileReference + name + GroupsInCommonController.swift + path + Sources/GroupsInCommonController.swift + sourceTree + SOURCE_ROOT + + 1DD70E295B75190500000000 + + isa + PBXFileReference + name + ItemListCallListItem.swift + path + Sources/ItemListCallListItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29EBEA743E00000000 + + isa + PBXFileReference + name + ItemListSecretChatKeyItem.swift + path + Sources/ItemListSecretChatKeyItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29512F16D500000000 + + isa + PBXFileReference + name + PeerBanTimeoutController.swift + path + Sources/PeerBanTimeoutController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2904953AB100000000 + + isa + PBXFileReference + name + PeerInfoController.swift + path + Sources/PeerInfoController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2971FBBEB700000000 + + isa + PBXFileReference + name + PeerReportController.swift + path + Sources/PeerReportController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E9F8C3A700000000 + + isa + PBXFileReference + name + PhoneLabelController.swift + path + Sources/PhoneLabelController.swift + sourceTree + SOURCE_ROOT + + 1DD70E290F22265800000000 + + isa + PBXFileReference + name + SecretChatKeyController.swift + path + Sources/SecretChatKeyController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2919DE957A00000000 + + isa + PBXFileReference + name + SecretChatKeyControllerNode.swift + path + Sources/SecretChatKeyControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FF53669A00000000 + + isa + PBXFileReference + name + UserInfoController.swift + path + Sources/UserInfoController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F76048FD00000000 + + isa + PBXFileReference + name + UserInfoEditingPhoneActionItem.swift + path + Sources/UserInfoEditingPhoneActionItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A06F296700000000 + + isa + PBXFileReference + name + UserInfoEditingPhoneItem.swift + path + Sources/UserInfoEditingPhoneItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E293E55698D00000000 + 1DD70E290738312800000000 + 1DD70E29491B6B3C00000000 + 1DD70E2954297CDB00000000 + 1DD70E29F85B15AD00000000 + 1DD70E29BFDE8A4C00000000 + 1DD70E29AF34026A00000000 + 1DD70E29C24A170E00000000 + 1DD70E299E66B46900000000 + 1DD70E29B3BAEF9200000000 + 1DD70E29068B181700000000 + 1DD70E29D4919DAA00000000 + 1DD70E290ED4795F00000000 + 1DD70E2982920D0100000000 + 1DD70E291CD8C53800000000 + 1DD70E29B04BF70200000000 + 1DD70E29FCCD8ADD00000000 + 1DD70E29C28A2F7F00000000 + 1DD70E296B5037B600000000 + 1DD70E29A3981B5400000000 + 1DD70E29F670175300000000 + 1DD70E29013401F900000000 + 1DD70E291289FAA500000000 + 1DD70E295B494B0E00000000 + 1DD70E294A7BFD0D00000000 + 1DD70E295DDA07D700000000 + 1DD70E29035D478E00000000 + 1DD70E292F4F197A00000000 + 1DD70E29DF75C90700000000 + 1DD70E2979370EE500000000 + 1DD70E295B75190500000000 + 1DD70E29EBEA743E00000000 + 1DD70E29512F16D500000000 + 1DD70E2904953AB100000000 + 1DD70E2971FBBEB700000000 + 1DD70E29E9F8C3A700000000 + 1DD70E290F22265800000000 + 1DD70E2919DE957A00000000 + 1DD70E29FF53669A00000000 + 1DD70E29F76048FD00000000 + 1DD70E29A06F296700000000 + + + B401C979E32023E400000000 + + isa + PBXGroup + name + PeerInfoUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E297657C3DC00000000 + + isa + PBXFileReference + name + libPeerInfoUI.a + path + libPeerInfoUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E297657C3DC00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979E32023E400000000 + B401C979C806358400000000 + + + E7A30F043E55698D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E55698D00000000 + + E7A30F040738312800000000 + + isa + PBXBuildFile + fileRef + 1DD70E290738312800000000 + + E7A30F04491B6B3C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29491B6B3C00000000 + + E7A30F0454297CDB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2954297CDB00000000 + + E7A30F04F85B15AD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F85B15AD00000000 + + E7A30F04BFDE8A4C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BFDE8A4C00000000 + + E7A30F04AF34026A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AF34026A00000000 + + E7A30F04C24A170E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C24A170E00000000 + + E7A30F049E66B46900000000 + + isa + PBXBuildFile + fileRef + 1DD70E299E66B46900000000 + + E7A30F04B3BAEF9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B3BAEF9200000000 + + E7A30F04068B181700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29068B181700000000 + + E7A30F04D4919DAA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D4919DAA00000000 + + E7A30F040ED4795F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290ED4795F00000000 + + E7A30F0482920D0100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2982920D0100000000 + + E7A30F041CD8C53800000000 + + isa + PBXBuildFile + fileRef + 1DD70E291CD8C53800000000 + + E7A30F04B04BF70200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B04BF70200000000 + + E7A30F04FCCD8ADD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FCCD8ADD00000000 + + E7A30F04C28A2F7F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C28A2F7F00000000 + + E7A30F046B5037B600000000 + + isa + PBXBuildFile + fileRef + 1DD70E296B5037B600000000 + + E7A30F04A3981B5400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A3981B5400000000 + + E7A30F04F670175300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F670175300000000 + + E7A30F04013401F900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29013401F900000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F045B494B0E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295B494B0E00000000 + + E7A30F044A7BFD0D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E294A7BFD0D00000000 + + E7A30F045DDA07D700000000 + + isa + PBXBuildFile + fileRef + 1DD70E295DDA07D700000000 + + E7A30F04035D478E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29035D478E00000000 + + E7A30F042F4F197A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292F4F197A00000000 + + E7A30F04DF75C90700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF75C90700000000 + + E7A30F0479370EE500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2979370EE500000000 + + E7A30F045B75190500000000 + + isa + PBXBuildFile + fileRef + 1DD70E295B75190500000000 + + E7A30F04EBEA743E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EBEA743E00000000 + + E7A30F04512F16D500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29512F16D500000000 + + E7A30F0404953AB100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2904953AB100000000 + + E7A30F0471FBBEB700000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971FBBEB700000000 + + E7A30F04E9F8C3A700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E9F8C3A700000000 + + E7A30F040F22265800000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F22265800000000 + + E7A30F0419DE957A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2919DE957A00000000 + + E7A30F04FF53669A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF53669A00000000 + + E7A30F04F76048FD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F76048FD00000000 + + E7A30F04A06F296700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A06F296700000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F043E55698D00000000 + E7A30F040738312800000000 + E7A30F04491B6B3C00000000 + E7A30F0454297CDB00000000 + E7A30F04F85B15AD00000000 + E7A30F04BFDE8A4C00000000 + E7A30F04AF34026A00000000 + E7A30F04C24A170E00000000 + E7A30F049E66B46900000000 + E7A30F04B3BAEF9200000000 + E7A30F04068B181700000000 + E7A30F04D4919DAA00000000 + E7A30F040ED4795F00000000 + E7A30F0482920D0100000000 + E7A30F041CD8C53800000000 + E7A30F04B04BF70200000000 + E7A30F04FCCD8ADD00000000 + E7A30F04C28A2F7F00000000 + E7A30F046B5037B600000000 + E7A30F04A3981B5400000000 + E7A30F04F670175300000000 + E7A30F04013401F900000000 + E7A30F041289FAA500000000 + E7A30F045B494B0E00000000 + E7A30F044A7BFD0D00000000 + E7A30F045DDA07D700000000 + E7A30F04035D478E00000000 + E7A30F042F4F197A00000000 + E7A30F04DF75C90700000000 + E7A30F0479370EE500000000 + E7A30F045B75190500000000 + E7A30F04EBEA743E00000000 + E7A30F04512F16D500000000 + E7A30F0404953AB100000000 + E7A30F0471FBBEB700000000 + E7A30F04E9F8C3A700000000 + E7A30F040F22265800000000 + E7A30F0419DE957A00000000 + E7A30F04FF53669A00000000 + E7A30F04F76048FD00000000 + E7A30F04A06F296700000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04FD72F45600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FD72F45600000000 + + E7A30F04EA9CBB5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA9CBB5B00000000 + + E7A30F0407DC840B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2907DC840B00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F049A24C4DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299A24C4DE00000000 + + E7A30F0431752C6000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2931752C6000000000 + + E7A30F041328E99400000000 + + isa + PBXBuildFile + fileRef + 1DD70E291328E99400000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + E7A30F0488BAAFC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2988BAAFC800000000 + + E7A30F041631B91900000000 + + isa + PBXBuildFile + fileRef + 1DD70E291631B91900000000 + + E7A30F04524F478E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29524F478E00000000 + + E7A30F04DF758A8500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF758A8500000000 + + E7A30F042F91702000000000 + + isa + PBXBuildFile + fileRef + 1DD70E292F91702000000000 + + E7A30F04F40A586F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F40A586F00000000 + + E7A30F046C9831F100000000 + + isa + PBXBuildFile + fileRef + 1DD70E296C9831F100000000 + + E7A30F04A59C927400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A59C927400000000 + + E7A30F04AE190FC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AE190FC000000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F04AF00DC4900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AF00DC4900000000 + + E7A30F04CF967D4300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CF967D4300000000 + + E7A30F046A346AC200000000 + + isa + PBXBuildFile + fileRef + 1DD70E296A346AC200000000 + + E7A30F04C7E0F39600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7E0F39600000000 + + E7A30F04A6BAE8A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A6BAE8A300000000 + + E7A30F04F29DEA1400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F29DEA1400000000 + + E7A30F04D1EB356900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D1EB356900000000 + + E7A30F04C137890400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C137890400000000 + + E7A30F04F2CA340700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F2CA340700000000 + + E7A30F0405A95CB400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2905A95CB400000000 + + E7A30F045C00B78600000000 + + isa + PBXBuildFile + fileRef + 1DD70E295C00B78600000000 + + E7A30F0452137F3500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2952137F3500000000 + + E7A30F04E102CFE100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E102CFE100000000 + + E7A30F04A3994F2C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A3994F2C00000000 + + E7A30F048ED1FB1300000000 + + isa + PBXBuildFile + fileRef + 1DD70E298ED1FB1300000000 + + E7A30F0437C1167400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2937C1167400000000 + + E7A30F04BBAF750C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BBAF750C00000000 + + E7A30F049856EB2400000000 + + isa + PBXBuildFile + fileRef + 1DD70E299856EB2400000000 + + E7A30F04C7165FF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7165FF900000000 + + E7A30F04135DFEDE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29135DFEDE00000000 + + E7A30F0407DC815E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2907DC815E00000000 + + E7A30F04AE67341000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AE67341000000000 + + E7A30F04C6E517A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C6E517A300000000 + + E7A30F0468BAC05A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2968BAC05A00000000 + + E7A30F046C39078B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296C39078B00000000 + + E7A30F04DF12291E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF12291E00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04BF0846EE00000000 + E7A30F04F523B9DE00000000 + E7A30F04AC43662400000000 + E7A30F04FD72F45600000000 + E7A30F04EA9CBB5B00000000 + E7A30F0407DC840B00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F04D233F68C00000000 + E7A30F049A24C4DE00000000 + E7A30F0431752C6000000000 + E7A30F041328E99400000000 + E7A30F041E16CC6C00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F047AB043C800000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F04597BAFBB00000000 + E7A30F0481AE180900000000 + E7A30F040DD17C7100000000 + E7A30F0488BAAFC800000000 + E7A30F041631B91900000000 + E7A30F04524F478E00000000 + E7A30F04DF758A8500000000 + E7A30F042F91702000000000 + E7A30F04F40A586F00000000 + E7A30F046C9831F100000000 + E7A30F04A59C927400000000 + E7A30F04AE190FC000000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04490601EB00000000 + E7A30F04AF00DC4900000000 + E7A30F04CF967D4300000000 + E7A30F046A346AC200000000 + E7A30F04C7E0F39600000000 + E7A30F04A6BAE8A300000000 + E7A30F04F29DEA1400000000 + E7A30F04D1EB356900000000 + E7A30F04C137890400000000 + E7A30F04F2CA340700000000 + E7A30F0405A95CB400000000 + E7A30F045C00B78600000000 + E7A30F0452137F3500000000 + E7A30F04E102CFE100000000 + E7A30F04A3994F2C00000000 + E7A30F048ED1FB1300000000 + E7A30F0437C1167400000000 + E7A30F04BBAF750C00000000 + E7A30F049856EB2400000000 + E7A30F04C7165FF900000000 + E7A30F04135DFEDE00000000 + E7A30F0407DC815E00000000 + E7A30F04AE67341000000000 + E7A30F04C6E517A300000000 + E7A30F0468BAC05A00000000 + E7A30F046C39078B00000000 + E7A30F04DF12291E00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29F680D05100000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E293EB0977B00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29B24742DD00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EE32023E400000000 + + isa + PBXNativeTarget + name + PeerInfoUI + productName + PeerInfoUI + productReference + 1DD70E297657C3DC00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793E32023E400000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EE32023E400000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793E32023E400000000 + + \ No newline at end of file diff --git a/submodules/PeerInfoUI/PeerInfoUI.xcodeproj/xcshareddata/xcschemes/PeerInfoUI.xcscheme b/submodules/PeerInfoUI/PeerInfoUI.xcodeproj/xcshareddata/xcschemes/PeerInfoUI.xcscheme new file mode 100644 index 0000000000..9885e7667d --- /dev/null +++ b/submodules/PeerInfoUI/PeerInfoUI.xcodeproj/xcshareddata/xcschemes/PeerInfoUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PeerOnlineMarkerNode/BUCK b/submodules/PeerOnlineMarkerNode/BUCK new file mode 100644 index 0000000000..b66a884732 --- /dev/null +++ b/submodules/PeerOnlineMarkerNode/BUCK @@ -0,0 +1,16 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "PeerOnlineMarkerNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/PeerOnlineMarkerNode/PeerOnlineMarkerNode.xcodeproj/project.pbxproj b/submodules/PeerOnlineMarkerNode/PeerOnlineMarkerNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..386e3a449e --- /dev/null +++ b/submodules/PeerOnlineMarkerNode/PeerOnlineMarkerNode.xcodeproj/project.pbxproj @@ -0,0 +1,379 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2987E08AE400000000 + + isa + PBXFileReference + name + PeerOnlineMarkerNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/PeerOnlineMarkerNode/PeerOnlineMarkerNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29F70BF94E00000000 + + isa + PBXFileReference + name + PeerOnlineMarkerNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/PeerOnlineMarkerNode/PeerOnlineMarkerNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E296AA2A4B000000000 + + isa + PBXFileReference + name + PeerOnlineMarkerNode-Release.xcconfig + path + ../../buck-out/gen/submodules/PeerOnlineMarkerNode/PeerOnlineMarkerNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2987E08AE400000000 + 1DD70E29F70BF94E00000000 + 1DD70E296AA2A4B000000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E297CE1579600000000 + + isa + PBXFileReference + name + PeerOnlineMarkerNode.swift + path + Sources/PeerOnlineMarkerNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E297CE1579600000000 + + + B401C9791B72F5B100000000 + + isa + PBXGroup + name + PeerOnlineMarkerNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29928D142900000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9791B72F5B100000000 + B401C979C806358400000000 + + + E7A30F047CE1579600000000 + + isa + PBXBuildFile + fileRef + 1DD70E297CE1579600000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F047CE1579600000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2987E08AE400000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29F70BF94E00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E296AA2A4B000000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E1B72F5B100000000 + + isa + PBXNativeTarget + name + PeerOnlineMarkerNode + productName + PeerOnlineMarkerNode + productReference + 1DD70E29928D142900000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847931B72F5B100000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E1B72F5B100000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847931B72F5B100000000 + + \ No newline at end of file diff --git a/submodules/PeerOnlineMarkerNode/PeerOnlineMarkerNode.xcodeproj/xcshareddata/xcschemes/PeerOnlineMarkerNode.xcscheme b/submodules/PeerOnlineMarkerNode/PeerOnlineMarkerNode.xcodeproj/xcshareddata/xcschemes/PeerOnlineMarkerNode.xcscheme new file mode 100644 index 0000000000..2d103ac476 --- /dev/null +++ b/submodules/PeerOnlineMarkerNode/PeerOnlineMarkerNode.xcodeproj/xcshareddata/xcschemes/PeerOnlineMarkerNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PeerPresenceStatusManager/PeerPresenceStatusManager.xcodeproj/project.pbxproj b/submodules/PeerPresenceStatusManager/PeerPresenceStatusManager.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..6972af2829 --- /dev/null +++ b/submodules/PeerPresenceStatusManager/PeerPresenceStatusManager.xcodeproj/project.pbxproj @@ -0,0 +1,423 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2994334F3700000000 + + isa + PBXFileReference + name + PeerPresenceStatusManager-Debug.xcconfig + path + ../../buck-out/gen/submodules/PeerPresenceStatusManager/PeerPresenceStatusManager-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2939BEF4E100000000 + + isa + PBXFileReference + name + PeerPresenceStatusManager-Profile.xcconfig + path + ../../buck-out/gen/submodules/PeerPresenceStatusManager/PeerPresenceStatusManager-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AD55A04300000000 + + isa + PBXFileReference + name + PeerPresenceStatusManager-Release.xcconfig + path + ../../buck-out/gen/submodules/PeerPresenceStatusManager/PeerPresenceStatusManager-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2994334F3700000000 + 1DD70E2939BEF4E100000000 + 1DD70E29AD55A04300000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E298AD7D9E300000000 + + isa + PBXFileReference + name + PeerPresenceStatusManager.swift + path + Sources/PeerPresenceStatusManager.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E298AD7D9E300000000 + + + B401C979FBD875BE00000000 + + isa + PBXGroup + name + PeerPresenceStatusManager + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29D233F68C00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979FBD875BE00000000 + B401C979C806358400000000 + + + E7A30F048AD7D9E300000000 + + isa + PBXBuildFile + fileRef + 1DD70E298AD7D9E300000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F048AD7D9E300000000 + + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2994334F3700000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2939BEF4E100000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29AD55A04300000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EFBD875BE00000000 + + isa + PBXNativeTarget + name + PeerPresenceStatusManager + productName + PeerPresenceStatusManager + productReference + 1DD70E29D233F68C00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793FBD875BE00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EFBD875BE00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793FBD875BE00000000 + + \ No newline at end of file diff --git a/submodules/PeerPresenceStatusManager/PeerPresenceStatusManager.xcodeproj/xcshareddata/xcschemes/PeerPresenceStatusManager.xcscheme b/submodules/PeerPresenceStatusManager/PeerPresenceStatusManager.xcodeproj/xcshareddata/xcschemes/PeerPresenceStatusManager.xcscheme new file mode 100644 index 0000000000..cf4baed0dd --- /dev/null +++ b/submodules/PeerPresenceStatusManager/PeerPresenceStatusManager.xcodeproj/xcshareddata/xcschemes/PeerPresenceStatusManager.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PeersNearbyIconNode/BUCK b/submodules/PeersNearbyIconNode/BUCK new file mode 100644 index 0000000000..fc85af9a70 --- /dev/null +++ b/submodules/PeersNearbyIconNode/BUCK @@ -0,0 +1,18 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "PeersNearbyIconNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/LegacyComponents:LegacyComponents", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/PeersNearbyIconNode/PeersNearbyIconNode.xcodeproj/project.pbxproj b/submodules/PeersNearbyIconNode/PeersNearbyIconNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..0f48b0b4f5 --- /dev/null +++ b/submodules/PeersNearbyIconNode/PeersNearbyIconNode.xcodeproj/project.pbxproj @@ -0,0 +1,511 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E292B02120A00000000 + + isa + PBXFileReference + name + PeersNearbyIconNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/PeersNearbyIconNode/PeersNearbyIconNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2957E84EF400000000 + + isa + PBXFileReference + name + PeersNearbyIconNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/PeersNearbyIconNode/PeersNearbyIconNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29CB7EFA5600000000 + + isa + PBXFileReference + name + PeersNearbyIconNode-Release.xcconfig + path + ../../buck-out/gen/submodules/PeersNearbyIconNode/PeersNearbyIconNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E292B02120A00000000 + 1DD70E2957E84EF400000000 + 1DD70E29CB7EFA5600000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29F7A20DB000000000 + + isa + PBXFileReference + name + PeersNearbyIconNode.swift + path + Sources/PeersNearbyIconNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29F7A20DB000000000 + + + B401C9790A14C74B00000000 + + isa + PBXGroup + name + PeersNearbyIconNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E291631B91900000000 + + isa + PBXFileReference + name + libPeersNearbyIconNode.a + path + libPeersNearbyIconNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E291631B91900000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9790A14C74B00000000 + B401C979C806358400000000 + + + E7A30F04F7A20DB000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F7A20DB000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04F7A20DB000000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E292B02120A00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2957E84EF400000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29CB7EFA5600000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E0A14C74B00000000 + + isa + PBXNativeTarget + name + PeersNearbyIconNode + productName + PeersNearbyIconNode + productReference + 1DD70E291631B91900000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847930A14C74B00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E0A14C74B00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847930A14C74B00000000 + + \ No newline at end of file diff --git a/submodules/PeersNearbyIconNode/PeersNearbyIconNode.xcodeproj/xcshareddata/xcschemes/PeersNearbyIconNode.xcscheme b/submodules/PeersNearbyIconNode/PeersNearbyIconNode.xcodeproj/xcshareddata/xcschemes/PeersNearbyIconNode.xcscheme new file mode 100644 index 0000000000..0511813105 --- /dev/null +++ b/submodules/PeersNearbyIconNode/PeersNearbyIconNode.xcodeproj/xcshareddata/xcschemes/PeersNearbyIconNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PeersNearbyUI/BUCK b/submodules/PeersNearbyUI/BUCK new file mode 100644 index 0000000000..db334b0278 --- /dev/null +++ b/submodules/PeersNearbyUI/BUCK @@ -0,0 +1,32 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "PeersNearbyUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/ItemListUI:ItemListUI", + "//submodules/OverlayStatusController:OverlayStatusController", + "//submodules/DeviceLocationManager:DeviceLocationManager", + "//submodules/AlertUI:AlertUI", + "//submodules/ItemListPeerItem:ItemListPeerItem", + "//submodules/TelegramPermissionsUI:TelegramPermissionsUI", + "//submodules/ItemListPeerActionItem:ItemListPeerActionItem", + "//submodules/PeersNearbyIconNode:PeersNearbyIconNode", + "//submodules/Geocoding:Geocoding", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/MapKit.framework", + ], +) diff --git a/submodules/PeersNearbyUI/PeersNearbyUI.xcodeproj/project.pbxproj b/submodules/PeersNearbyUI/PeersNearbyUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..7c93e8edb1 --- /dev/null +++ b/submodules/PeersNearbyUI/PeersNearbyUI.xcodeproj/project.pbxproj @@ -0,0 +1,1233 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29AAB4FC9100000000 + + isa + PBXFileReference + name + PeersNearbyUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/PeersNearbyUI/PeersNearbyUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B68AB3BB00000000 + + isa + PBXFileReference + name + PeersNearbyUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/PeersNearbyUI/PeersNearbyUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292A215F1D00000000 + + isa + PBXFileReference + name + PeersNearbyUI-Release.xcconfig + path + ../../buck-out/gen/submodules/PeersNearbyUI/PeersNearbyUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29AAB4FC9100000000 + 1DD70E29B68AB3BB00000000 + 1DD70E292A215F1D00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D1EB356900000000 + + isa + PBXFileReference + name + libGeocoding.a + path + libGeocoding.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2905A95CB400000000 + + isa + PBXFileReference + name + libItemListPeerActionItem.a + path + libItemListPeerActionItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299A24C4DE00000000 + + isa + PBXFileReference + name + libItemListPeerItem.a + path + libItemListPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BBAF750C00000000 + + isa + PBXFileReference + name + libOverlayStatusController.a + path + libOverlayStatusController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291631B91900000000 + + isa + PBXFileReference + name + libPeersNearbyIconNode.a + path + libPeersNearbyIconNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29524F478E00000000 + + isa + PBXFileReference + name + libSolidRoundedButtonNode.a + path + libSolidRoundedButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DF758A8500000000 + + isa + PBXFileReference + name + libTelegramPermissionsUI.a + path + libTelegramPermissionsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E2997B4D6D800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D1EB356900000000 + 1DD70E29D6F14E1000000000 + 1DD70E2905A95CB400000000 + 1DD70E299A24C4DE00000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29BBAF750C00000000 + 1DD70E29D233F68C00000000 + 1DD70E291631B91900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E29524F478E00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E290DD17C7100000000 + 1DD70E29DF758A8500000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E299F0A867100000000 + + isa + PBXFileReference + name + PeersNearbyController.swift + path + Sources/PeersNearbyController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B2209B1500000000 + + isa + PBXFileReference + name + PeersNearbyHeaderItem.swift + path + Sources/PeersNearbyHeaderItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E299F0A867100000000 + 1DD70E29B2209B1500000000 + + + B401C979E520FFA400000000 + + isa + PBXGroup + name + PeersNearbyUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E297DEE0F7200000000 + + isa + PBXFileReference + name + libPeersNearbyUI.a + path + libPeersNearbyUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E297DEE0F7200000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979E520FFA400000000 + B401C979C806358400000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F049F0A867100000000 + + isa + PBXBuildFile + fileRef + 1DD70E299F0A867100000000 + + E7A30F04B2209B1500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B2209B1500000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F049F0A867100000000 + E7A30F04B2209B1500000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04D1EB356900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D1EB356900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F0405A95CB400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2905A95CB400000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F049A24C4DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299A24C4DE00000000 + + E7A30F04BBAF750C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BBAF750C00000000 + + E7A30F041631B91900000000 + + isa + PBXBuildFile + fileRef + 1DD70E291631B91900000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F04524F478E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29524F478E00000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + E7A30F04DF758A8500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF758A8500000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04F523B9DE00000000 + E7A30F04D1EB356900000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F0405A95CB400000000 + E7A30F04A54A195300000000 + E7A30F04D233F68C00000000 + E7A30F049A24C4DE00000000 + E7A30F04BBAF750C00000000 + E7A30F041631B91900000000 + E7A30F042417E0B200000000 + E7A30F04524F478E00000000 + E7A30F040DD17C7100000000 + E7A30F04DF758A8500000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29AAB4FC9100000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29B68AB3BB00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E292A215F1D00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EE520FFA400000000 + + isa + PBXNativeTarget + name + PeersNearbyUI + productName + PeersNearbyUI + productReference + 1DD70E297DEE0F7200000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793E520FFA400000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EE520FFA400000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793E520FFA400000000 + + \ No newline at end of file diff --git a/submodules/PeersNearbyUI/PeersNearbyUI.xcodeproj/xcshareddata/xcschemes/PeersNearbyUI.xcscheme b/submodules/PeersNearbyUI/PeersNearbyUI.xcodeproj/xcshareddata/xcschemes/PeersNearbyUI.xcscheme new file mode 100644 index 0000000000..2d0a02d5e8 --- /dev/null +++ b/submodules/PeersNearbyUI/PeersNearbyUI.xcodeproj/xcshareddata/xcschemes/PeersNearbyUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PersistentStringHash/PersistentStringHash.xcodeproj/project.pbxproj b/submodules/PersistentStringHash/PersistentStringHash.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..8e5c89692b --- /dev/null +++ b/submodules/PersistentStringHash/PersistentStringHash.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2944513F1F00000000 + + isa + PBXFileReference + name + PersistentStringHash-Debug.xcconfig + path + ../../buck-out/gen/submodules/PersistentStringHash/PersistentStringHash-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E295A208AC900000000 + + isa + PBXFileReference + name + PersistentStringHash-Profile.xcconfig + path + ../../buck-out/gen/submodules/PersistentStringHash/PersistentStringHash-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29CDB7362B00000000 + + isa + PBXFileReference + name + PersistentStringHash-Release.xcconfig + path + ../../buck-out/gen/submodules/PersistentStringHash/PersistentStringHash-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2944513F1F00000000 + 1DD70E295A208AC900000000 + 1DD70E29CDB7362B00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29D7E1C84400000000 + + isa + PBXFileReference + name + StringHash.swift + path + Sources/StringHash.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29D7E1C84400000000 + + + B401C9797FA5B2D600000000 + + isa + PBXGroup + name + PersistentStringHash + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29B5051C0E00000000 + + isa + PBXFileReference + name + libPersistentStringHash.a + path + libPersistentStringHash.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29B5051C0E00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C9797FA5B2D600000000 + B401C979C806358400000000 + + + E7A30F04D7E1C84400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D7E1C84400000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04D7E1C84400000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2944513F1F00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E295A208AC900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29CDB7362B00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E7FA5B2D600000000 + + isa + PBXNativeTarget + name + PersistentStringHash + productName + PersistentStringHash + productReference + 1DD70E29B5051C0E00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847937FA5B2D600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E7FA5B2D600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847937FA5B2D600000000 + + \ No newline at end of file diff --git a/submodules/PersistentStringHash/PersistentStringHash.xcodeproj/xcshareddata/xcschemes/PersistentStringHash.xcscheme b/submodules/PersistentStringHash/PersistentStringHash.xcodeproj/xcshareddata/xcschemes/PersistentStringHash.xcscheme new file mode 100644 index 0000000000..f87ef73e91 --- /dev/null +++ b/submodules/PersistentStringHash/PersistentStringHash.xcodeproj/xcshareddata/xcschemes/PersistentStringHash.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PhoneInputNode/BUCK b/submodules/PhoneInputNode/BUCK new file mode 100644 index 0000000000..a7833621ea --- /dev/null +++ b/submodules/PhoneInputNode/BUCK @@ -0,0 +1,17 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "PhoneInputNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/PhoneInputNode/PhoneInputNode.xcodeproj/project.pbxproj b/submodules/PhoneInputNode/PhoneInputNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..2ebeee2d25 --- /dev/null +++ b/submodules/PhoneInputNode/PhoneInputNode.xcodeproj/project.pbxproj @@ -0,0 +1,511 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29E66D25B700000000 + + isa + PBXFileReference + name + PhoneInputNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/PhoneInputNode/PhoneInputNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29E4DD2B6100000000 + + isa + PBXFileReference + name + PhoneInputNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/PhoneInputNode/PhoneInputNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E295873D6C300000000 + + isa + PBXFileReference + name + PhoneInputNode-Release.xcconfig + path + ../../buck-out/gen/submodules/PhoneInputNode/PhoneInputNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29E66D25B700000000 + 1DD70E29E4DD2B6100000000 + 1DD70E295873D6C300000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29547AB36300000000 + + isa + PBXFileReference + name + PhoneInputNode.swift + path + Sources/PhoneInputNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29547AB36300000000 + + + B401C97908FC6F3E00000000 + + isa + PBXGroup + name + PhoneInputNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29005B963600000000 + + isa + PBXFileReference + name + libPhoneInputNode.a + path + libPhoneInputNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29005B963600000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C97908FC6F3E00000000 + B401C979C806358400000000 + + + E7A30F04547AB36300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29547AB36300000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04547AB36300000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29E66D25B700000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29E4DD2B6100000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E295873D6C300000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E08FC6F3E00000000 + + isa + PBXNativeTarget + name + PhoneInputNode + productName + PhoneInputNode + productReference + 1DD70E29005B963600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479308FC6F3E00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E08FC6F3E00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479308FC6F3E00000000 + + \ No newline at end of file diff --git a/submodules/PhoneInputNode/PhoneInputNode.xcodeproj/xcshareddata/xcschemes/PhoneInputNode.xcscheme b/submodules/PhoneInputNode/PhoneInputNode.xcodeproj/xcshareddata/xcschemes/PhoneInputNode.xcscheme new file mode 100644 index 0000000000..a39d3b7476 --- /dev/null +++ b/submodules/PhoneInputNode/PhoneInputNode.xcodeproj/xcshareddata/xcschemes/PhoneInputNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PhotoResources/BUCK b/submodules/PhotoResources/BUCK index 2829be9f45..20e31302f8 100644 --- a/submodules/PhotoResources/BUCK +++ b/submodules/PhotoResources/BUCK @@ -17,7 +17,7 @@ static_library( "//submodules/AccountContext:AccountContext", "//submodules/MediaResources:MediaResources", "//submodules/TelegramUIPreferences:TelegramUIPreferences", - "//submodules/WebP:WebP", + "//submodules/WebP:WebPImage", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/PhotoResources/PhotoResources.xcodeproj/project.pbxproj b/submodules/PhotoResources/PhotoResources.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..0a74e40a11 --- /dev/null +++ b/submodules/PhotoResources/PhotoResources.xcodeproj/project.pbxproj @@ -0,0 +1,817 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29E718282200000000 + + isa + PBXFileReference + name + PhotoResources-Debug.xcconfig + path + ../../buck-out/gen/submodules/PhotoResources/PhotoResources-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2966D13F0C00000000 + + isa + PBXFileReference + name + PhotoResources-Profile.xcconfig + path + ../../buck-out/gen/submodules/PhotoResources/PhotoResources-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29DA67EA6E00000000 + + isa + PBXFileReference + name + PhotoResources-Release.xcconfig + path + ../../buck-out/gen/submodules/PhotoResources/PhotoResources-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29E718282200000000 + 1DD70E2966D13F0C00000000 + 1DD70E29DA67EA6E00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E2925EE3C9800000000 + + isa + PBXFileReference + name + PhotoResources.swift + path + Sources/PhotoResources.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E2925EE3C9800000000 + + + B401C9793548443300000000 + + isa + PBXGroup + name + PhotoResources + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29490601EB00000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C9793548443300000000 + B401C979C806358400000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F0425EE3C9800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925EE3C9800000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F0425EE3C9800000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04CD296A8300000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29E718282200000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2966D13F0C00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29DA67EA6E00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E3548443300000000 + + isa + PBXNativeTarget + name + PhotoResources + productName + PhotoResources + productReference + 1DD70E29490601EB00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847933548443300000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E3548443300000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847933548443300000000 + + \ No newline at end of file diff --git a/submodules/PhotoResources/PhotoResources.xcodeproj/xcshareddata/xcschemes/PhotoResources.xcscheme b/submodules/PhotoResources/PhotoResources.xcodeproj/xcshareddata/xcschemes/PhotoResources.xcscheme new file mode 100644 index 0000000000..f2d52e7db1 --- /dev/null +++ b/submodules/PhotoResources/PhotoResources.xcodeproj/xcshareddata/xcschemes/PhotoResources.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/PhotoResources/Sources/PhotoResources.swift b/submodules/PhotoResources/Sources/PhotoResources.swift index c382937a40..5fb4f32511 100644 --- a/submodules/PhotoResources/Sources/PhotoResources.swift +++ b/submodules/PhotoResources/Sources/PhotoResources.swift @@ -6,7 +6,11 @@ import Display import AVFoundation import ImageIO import TelegramCore +#if BUCK +import WebPImage +#else import WebP +#endif import TelegramUIPreferences import MediaResources import AccountContext diff --git a/submodules/PlatformRestrictionMatching/PlatformRestrictionMatching.xcodeproj/project.pbxproj b/submodules/PlatformRestrictionMatching/PlatformRestrictionMatching.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..e4b02ee07b --- /dev/null +++ b/submodules/PlatformRestrictionMatching/PlatformRestrictionMatching.xcodeproj/project.pbxproj @@ -0,0 +1,379 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29FB1F959F00000000 + + isa + PBXFileReference + name + PlatformRestrictionMatching-Debug.xcconfig + path + ../../buck-out/gen/submodules/PlatformRestrictionMatching/PlatformRestrictionMatching-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2996B3414900000000 + + isa + PBXFileReference + name + PlatformRestrictionMatching-Profile.xcconfig + path + ../../buck-out/gen/submodules/PlatformRestrictionMatching/PlatformRestrictionMatching-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E290A49ECAB00000000 + + isa + PBXFileReference + name + PlatformRestrictionMatching-Release.xcconfig + path + ../../buck-out/gen/submodules/PlatformRestrictionMatching/PlatformRestrictionMatching-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29FB1F959F00000000 + 1DD70E2996B3414900000000 + 1DD70E290A49ECAB00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29119CDA0700000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29A6973E7B00000000 + + isa + PBXFileReference + name + PlatformRestrictionMatching.swift + path + Sources/PlatformRestrictionMatching.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29A6973E7B00000000 + + + B401C97921C52C5600000000 + + isa + PBXGroup + name + PlatformRestrictionMatching + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E290F1A3C6400000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C97921C52C5600000000 + B401C979C806358400000000 + + + E7A30F04A6973E7B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A6973E7B00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04A6973E7B00000000 + + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04119CDA0700000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29FB1F959F00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2996B3414900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E290A49ECAB00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E21C52C5600000000 + + isa + PBXNativeTarget + name + PlatformRestrictionMatching + productName + PlatformRestrictionMatching + productReference + 1DD70E290F1A3C6400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479321C52C5600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E21C52C5600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479321C52C5600000000 + + \ No newline at end of file diff --git a/submodules/PlatformRestrictionMatching/PlatformRestrictionMatching.xcodeproj/xcshareddata/xcschemes/PlatformRestrictionMatching.xcscheme b/submodules/PlatformRestrictionMatching/PlatformRestrictionMatching.xcodeproj/xcshareddata/xcschemes/PlatformRestrictionMatching.xcscheme new file mode 100644 index 0000000000..c628c25a67 --- /dev/null +++ b/submodules/PlatformRestrictionMatching/PlatformRestrictionMatching.xcodeproj/xcshareddata/xcschemes/PlatformRestrictionMatching.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ProgressNavigationButtonNode/BUCK b/submodules/ProgressNavigationButtonNode/BUCK new file mode 100644 index 0000000000..2adf870e3a --- /dev/null +++ b/submodules/ProgressNavigationButtonNode/BUCK @@ -0,0 +1,18 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ProgressNavigationButtonNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/ActivityIndicator:ActivityIndicator", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ProgressNavigationButtonNode/ProgressNavigationButtonNode.xcodeproj/project.pbxproj b/submodules/ProgressNavigationButtonNode/ProgressNavigationButtonNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..8f6dba0bc9 --- /dev/null +++ b/submodules/ProgressNavigationButtonNode/ProgressNavigationButtonNode.xcodeproj/project.pbxproj @@ -0,0 +1,533 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29F43B50A000000000 + + isa + PBXFileReference + name + ProgressNavigationButtonNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/ProgressNavigationButtonNode/ProgressNavigationButtonNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B7CC400A00000000 + + isa + PBXFileReference + name + ProgressNavigationButtonNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/ProgressNavigationButtonNode/ProgressNavigationButtonNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292B62EB6C00000000 + + isa + PBXFileReference + name + ProgressNavigationButtonNode-Release.xcconfig + path + ../../buck-out/gen/submodules/ProgressNavigationButtonNode/ProgressNavigationButtonNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29F43B50A000000000 + 1DD70E29B7CC400A00000000 + 1DD70E292B62EB6C00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29BF0846EE00000000 + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29CBE117ED00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29EE09EE5A00000000 + + isa + PBXFileReference + name + ProgressNavigationButtonNode.swift + path + Sources/ProgressNavigationButtonNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29EE09EE5A00000000 + + + B401C9796174EF7500000000 + + isa + PBXGroup + name + ProgressNavigationButtonNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9796174EF7500000000 + + + E7A30F04EE09EE5A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EE09EE5A00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04EE09EE5A00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04BF0846EE00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29F43B50A000000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29B7CC400A00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E292B62EB6C00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E6174EF7500000000 + + isa + PBXNativeTarget + name + ProgressNavigationButtonNode + productName + ProgressNavigationButtonNode + productReference + 1DD70E29CBE117ED00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847936174EF7500000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E6174EF7500000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847936174EF7500000000 + + \ No newline at end of file diff --git a/submodules/ProgressNavigationButtonNode/ProgressNavigationButtonNode.xcodeproj/xcshareddata/xcschemes/ProgressNavigationButtonNode.xcscheme b/submodules/ProgressNavigationButtonNode/ProgressNavigationButtonNode.xcodeproj/xcshareddata/xcschemes/ProgressNavigationButtonNode.xcscheme new file mode 100644 index 0000000000..c0c78021a0 --- /dev/null +++ b/submodules/ProgressNavigationButtonNode/ProgressNavigationButtonNode.xcodeproj/xcshareddata/xcschemes/ProgressNavigationButtonNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/QrCode/QrCode.xcodeproj/project.pbxproj b/submodules/QrCode/QrCode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..6c5e1c3c2f --- /dev/null +++ b/submodules/QrCode/QrCode.xcodeproj/project.pbxproj @@ -0,0 +1,401 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E295898BF2700000000 + + isa + PBXFileReference + name + QrCode-Debug.xcconfig + path + ../../buck-out/gen/submodules/QrCode/QrCode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E297A8828D100000000 + + isa + PBXFileReference + name + QrCode-Profile.xcconfig + path + ../../buck-out/gen/submodules/QrCode/QrCode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29EE1ED43300000000 + + isa + PBXFileReference + name + QrCode-Release.xcconfig + path + ../../buck-out/gen/submodules/QrCode/QrCode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E295898BF2700000000 + 1DD70E297A8828D100000000 + 1DD70E29EE1ED43300000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29D65BA68200000000 + + + 1DD70E29AA32BBC600000000 + + isa + PBXFileReference + name + libQrCode.a + path + libQrCode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29AA32BBC600000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29213163D300000000 + + isa + PBXFileReference + name + QRCode.swift + path + Sources/QRCode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29213163D300000000 + + + B401C979909F23CE00000000 + + isa + PBXGroup + name + QrCode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979909F23CE00000000 + + + E7A30F04213163D300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29213163D300000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04213163D300000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04D65BA68200000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E295898BF2700000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E297A8828D100000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29EE1ED43300000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E909F23CE00000000 + + isa + PBXNativeTarget + name + QrCode + productName + QrCode + productReference + 1DD70E29AA32BBC600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793909F23CE00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E909F23CE00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793909F23CE00000000 + + \ No newline at end of file diff --git a/submodules/QrCode/QrCode.xcodeproj/xcshareddata/xcschemes/QrCode.xcscheme b/submodules/QrCode/QrCode.xcodeproj/xcshareddata/xcschemes/QrCode.xcscheme new file mode 100644 index 0000000000..9365080e82 --- /dev/null +++ b/submodules/QrCode/QrCode.xcodeproj/xcshareddata/xcschemes/QrCode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/RLottie/RLottie.xcodeproj/project.pbxproj b/submodules/RLottie/RLottie.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..1312fed162 --- /dev/null +++ b/submodules/RLottie/RLottie.xcodeproj/project.pbxproj @@ -0,0 +1,2314 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E294153AE0400000000 + + isa + PBXFileReference + name + RLottie-Debug.xcconfig + path + ../../buck-out/gen/submodules/RLottie/RLottie-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292042D46E00000000 + + isa + PBXFileReference + name + RLottie-Profile.xcconfig + path + ../../buck-out/gen/submodules/RLottie/RLottie-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2993D97FD000000000 + + isa + PBXFileReference + name + RLottie-Release.xcconfig + path + ../../buck-out/gen/submodules/RLottie/RLottie-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E294153AE0400000000 + 1DD70E292042D46E00000000 + 1DD70E2993D97FD000000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29E5FAFF5F00000000 + + isa + PBXFileReference + name + libRLottie.a + path + libRLottie.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29E5FAFF5F00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2995D2184B00000000 + + isa + PBXFileReference + name + rlottie.h + path + Sources/rlottie/inc/rlottie.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29CECCDC7F00000000 + + isa + PBXFileReference + name + rlottie_capi.h + path + Sources/rlottie/inc/rlottie_capi.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E293971B2B600000000 + + isa + PBXFileReference + name + rlottiecommon.h + path + Sources/rlottie/inc/rlottiecommon.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979000197DE00000000 + + isa + PBXGroup + name + inc + path + Sources/rlottie/inc + sourceTree + SOURCE_ROOT + children + + 1DD70E2995D2184B00000000 + 1DD70E29CECCDC7F00000000 + 1DD70E293971B2B600000000 + + + 1DD70E298FDF724600000000 + + isa + PBXFileReference + name + lottieanimation_capi.cpp + path + Sources/rlottie/src/binding/c/lottieanimation_capi.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + B401C9790000006300000000 + + isa + PBXGroup + name + c + path + Sources/rlottie/src/binding/c + sourceTree + SOURCE_ROOT + children + + 1DD70E298FDF724600000000 + + + B401C979F98CAE8500000000 + + isa + PBXGroup + name + binding + path + Sources/rlottie/src/binding + sourceTree + SOURCE_ROOT + children + + B401C9790000006300000000 + + + 1DD70E29002F8C6300000000 + + isa + PBXFileReference + name + en.h + path + Sources/rlottie/src/lottie/rapidjson/error/en.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29A7D8760200000000 + + isa + PBXFileReference + name + error.h + path + Sources/rlottie/src/lottie/rapidjson/error/error.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C97905C4D20800000000 + + isa + PBXGroup + name + error + path + Sources/rlottie/src/lottie/rapidjson/error + sourceTree + SOURCE_ROOT + children + + 1DD70E29002F8C6300000000 + 1DD70E29A7D8760200000000 + + + 1DD70E296AB552B800000000 + + isa + PBXFileReference + name + biginteger.h + path + Sources/rlottie/src/lottie/rapidjson/internal/biginteger.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2963F522D800000000 + + isa + PBXFileReference + name + diyfp.h + path + Sources/rlottie/src/lottie/rapidjson/internal/diyfp.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29B13B2BDC00000000 + + isa + PBXFileReference + name + dtoa.h + path + Sources/rlottie/src/lottie/rapidjson/internal/dtoa.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E295A37005400000000 + + isa + PBXFileReference + name + ieee754.h + path + Sources/rlottie/src/lottie/rapidjson/internal/ieee754.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29B9C366F700000000 + + isa + PBXFileReference + name + itoa.h + path + Sources/rlottie/src/lottie/rapidjson/internal/itoa.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29BFC5AEBF00000000 + + isa + PBXFileReference + name + meta.h + path + Sources/rlottie/src/lottie/rapidjson/internal/meta.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E8C7C6B100000000 + + isa + PBXFileReference + name + pow10.h + path + Sources/rlottie/src/lottie/rapidjson/internal/pow10.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2940BB008100000000 + + isa + PBXFileReference + name + regex.h + path + Sources/rlottie/src/lottie/rapidjson/internal/regex.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E298EE4468200000000 + + isa + PBXFileReference + name + stack.h + path + Sources/rlottie/src/lottie/rapidjson/internal/stack.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29EFFF1D2F00000000 + + isa + PBXFileReference + name + strfunc.h + path + Sources/rlottie/src/lottie/rapidjson/internal/strfunc.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296B99117200000000 + + isa + PBXFileReference + name + strtod.h + path + Sources/rlottie/src/lottie/rapidjson/internal/strtod.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29CAF7FECD00000000 + + isa + PBXFileReference + name + swap.h + path + Sources/rlottie/src/lottie/rapidjson/internal/swap.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C97921FFC6BD00000000 + + isa + PBXGroup + name + internal + path + Sources/rlottie/src/lottie/rapidjson/internal + sourceTree + SOURCE_ROOT + children + + 1DD70E296AB552B800000000 + 1DD70E2963F522D800000000 + 1DD70E29B13B2BDC00000000 + 1DD70E295A37005400000000 + 1DD70E29B9C366F700000000 + 1DD70E29BFC5AEBF00000000 + 1DD70E29E8C7C6B100000000 + 1DD70E2940BB008100000000 + 1DD70E298EE4468200000000 + 1DD70E29EFFF1D2F00000000 + 1DD70E296B99117200000000 + 1DD70E29CAF7FECD00000000 + + + 1DD70E2917079BC200000000 + + isa + PBXFileReference + name + allocators.h + path + Sources/rlottie/src/lottie/rapidjson/allocators.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296E58E83700000000 + + isa + PBXFileReference + name + cursorstreamwrapper.h + path + Sources/rlottie/src/lottie/rapidjson/cursorstreamwrapper.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29CF6CFC5500000000 + + isa + PBXFileReference + name + document.h + path + Sources/rlottie/src/lottie/rapidjson/document.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29F35A0C8800000000 + + isa + PBXFileReference + name + encodedstream.h + path + Sources/rlottie/src/lottie/rapidjson/encodedstream.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E297A3D237A00000000 + + isa + PBXFileReference + name + encodings.h + path + Sources/rlottie/src/lottie/rapidjson/encodings.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E292F04748C00000000 + + isa + PBXFileReference + name + filereadstream.h + path + Sources/rlottie/src/lottie/rapidjson/filereadstream.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29A66B525D00000000 + + isa + PBXFileReference + name + filewritestream.h + path + Sources/rlottie/src/lottie/rapidjson/filewritestream.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2905D4F2ED00000000 + + isa + PBXFileReference + name + fwd.h + path + Sources/rlottie/src/lottie/rapidjson/fwd.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E70AD2C400000000 + + isa + PBXFileReference + name + istreamwrapper.h + path + Sources/rlottie/src/lottie/rapidjson/istreamwrapper.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E299D41B63B00000000 + + isa + PBXFileReference + name + memorybuffer.h + path + Sources/rlottie/src/lottie/rapidjson/memorybuffer.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2962B9A17B00000000 + + isa + PBXFileReference + name + memorystream.h + path + Sources/rlottie/src/lottie/rapidjson/memorystream.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29307605FE00000000 + + isa + PBXFileReference + name + ostreamwrapper.h + path + Sources/rlottie/src/lottie/rapidjson/ostreamwrapper.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E295D48A8F700000000 + + isa + PBXFileReference + name + pointer.h + path + Sources/rlottie/src/lottie/rapidjson/pointer.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29DFA96C2300000000 + + isa + PBXFileReference + name + prettywriter.h + path + Sources/rlottie/src/lottie/rapidjson/prettywriter.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29BC50ECDE00000000 + + isa + PBXFileReference + name + rapidjson.h + path + Sources/rlottie/src/lottie/rapidjson/rapidjson.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29CC5239FD00000000 + + isa + PBXFileReference + name + reader.h + path + Sources/rlottie/src/lottie/rapidjson/reader.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29D66A575B00000000 + + isa + PBXFileReference + name + schema.h + path + Sources/rlottie/src/lottie/rapidjson/schema.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296ABF757A00000000 + + isa + PBXFileReference + name + stream.h + path + Sources/rlottie/src/lottie/rapidjson/stream.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E294D48494B00000000 + + isa + PBXFileReference + name + stringbuffer.h + path + Sources/rlottie/src/lottie/rapidjson/stringbuffer.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2991F159AD00000000 + + isa + PBXFileReference + name + writer.h + path + Sources/rlottie/src/lottie/rapidjson/writer.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C97940654FE400000000 + + isa + PBXGroup + name + rapidjson + path + Sources/rlottie/src/lottie/rapidjson + sourceTree + SOURCE_ROOT + children + + B401C97905C4D20800000000 + B401C97921FFC6BD00000000 + 1DD70E2917079BC200000000 + 1DD70E296E58E83700000000 + 1DD70E29CF6CFC5500000000 + 1DD70E29F35A0C8800000000 + 1DD70E297A3D237A00000000 + 1DD70E292F04748C00000000 + 1DD70E29A66B525D00000000 + 1DD70E2905D4F2ED00000000 + 1DD70E29E70AD2C400000000 + 1DD70E299D41B63B00000000 + 1DD70E2962B9A17B00000000 + 1DD70E29307605FE00000000 + 1DD70E295D48A8F700000000 + 1DD70E29DFA96C2300000000 + 1DD70E29BC50ECDE00000000 + 1DD70E29CC5239FD00000000 + 1DD70E29D66A575B00000000 + 1DD70E296ABF757A00000000 + 1DD70E294D48494B00000000 + 1DD70E2991F159AD00000000 + + + 1DD70E2932B2AEFA00000000 + + isa + PBXFileReference + name + lottieanimation.cpp + path + Sources/rlottie/src/lottie/lottieanimation.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E299FBE24E700000000 + + isa + PBXFileReference + name + lottieitem.cpp + path + Sources/rlottie/src/lottie/lottieitem.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29E254A4AC00000000 + + isa + PBXFileReference + name + lottieitem.h + path + Sources/rlottie/src/lottie/lottieitem.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29BD134ABA00000000 + + isa + PBXFileReference + name + lottiekeypath.cpp + path + Sources/rlottie/src/lottie/lottiekeypath.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29944F233F00000000 + + isa + PBXFileReference + name + lottiekeypath.h + path + Sources/rlottie/src/lottie/lottiekeypath.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E298341AE2700000000 + + isa + PBXFileReference + name + lottieloader.cpp + path + Sources/rlottie/src/lottie/lottieloader.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29C7A97DEC00000000 + + isa + PBXFileReference + name + lottieloader.h + path + Sources/rlottie/src/lottie/lottieloader.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296276BC9F00000000 + + isa + PBXFileReference + name + lottiemodel.cpp + path + Sources/rlottie/src/lottie/lottiemodel.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29333FCA6400000000 + + isa + PBXFileReference + name + lottiemodel.h + path + Sources/rlottie/src/lottie/lottiemodel.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29381AD43300000000 + + isa + PBXFileReference + name + lottieparser.cpp + path + Sources/rlottie/src/lottie/lottieparser.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29A06CB6F800000000 + + isa + PBXFileReference + name + lottieparser.h + path + Sources/rlottie/src/lottie/lottieparser.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29A407880F00000000 + + isa + PBXFileReference + name + lottieproxymodel.cpp + path + Sources/rlottie/src/lottie/lottieproxymodel.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E290C6CB1D400000000 + + isa + PBXFileReference + name + lottieproxymodel.h + path + Sources/rlottie/src/lottie/lottieproxymodel.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979BE9E0F9F00000000 + + isa + PBXGroup + name + lottie + path + Sources/rlottie/src/lottie + sourceTree + SOURCE_ROOT + children + + B401C97940654FE400000000 + 1DD70E2932B2AEFA00000000 + 1DD70E299FBE24E700000000 + 1DD70E29E254A4AC00000000 + 1DD70E29BD134ABA00000000 + 1DD70E29944F233F00000000 + 1DD70E298341AE2700000000 + 1DD70E29C7A97DEC00000000 + 1DD70E296276BC9F00000000 + 1DD70E29333FCA6400000000 + 1DD70E29381AD43300000000 + 1DD70E29A06CB6F800000000 + 1DD70E29A407880F00000000 + 1DD70E290C6CB1D400000000 + + + 1DD70E29E6FBB7C500000000 + + isa + PBXFileReference + name + v_ft_math.cpp + path + Sources/rlottie/src/vector/freetype/v_ft_math.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29CEF5570A00000000 + + isa + PBXFileReference + name + v_ft_math.h + path + Sources/rlottie/src/vector/freetype/v_ft_math.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E294DD571BA00000000 + + isa + PBXFileReference + name + v_ft_raster.cpp + path + Sources/rlottie/src/vector/freetype/v_ft_raster.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29ED6F0A3F00000000 + + isa + PBXFileReference + name + v_ft_raster.h + path + Sources/rlottie/src/vector/freetype/v_ft_raster.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29B262E7E700000000 + + isa + PBXFileReference + name + v_ft_stroker.cpp + path + Sources/rlottie/src/vector/freetype/v_ft_stroker.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29CD4E27AC00000000 + + isa + PBXFileReference + name + v_ft_stroker.h + path + Sources/rlottie/src/vector/freetype/v_ft_stroker.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29AABCB92B00000000 + + isa + PBXFileReference + name + v_ft_types.h + path + Sources/rlottie/src/vector/freetype/v_ft_types.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979A45D8FA600000000 + + isa + PBXGroup + name + freetype + path + Sources/rlottie/src/vector/freetype + sourceTree + SOURCE_ROOT + children + + 1DD70E29E6FBB7C500000000 + 1DD70E29CEF5570A00000000 + 1DD70E294DD571BA00000000 + 1DD70E29ED6F0A3F00000000 + 1DD70E29B262E7E700000000 + 1DD70E29CD4E27AC00000000 + 1DD70E29AABCB92B00000000 + + + 1DD70E29B391E3C100000000 + + isa + PBXFileReference + name + pixman-arm-neon-asm.h + path + Sources/rlottie/src/vector/pixman/pixman-arm-neon-asm.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29412C7E1600000000 + + isa + PBXFileReference + name + pixman-arma64-neon-asm.h + path + Sources/rlottie/src/vector/pixman/pixman-arma64-neon-asm.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E292AB45C9F00000000 + + isa + PBXFileReference + name + vregion.cpp + path + Sources/rlottie/src/vector/pixman/vregion.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E292E656A6400000000 + + isa + PBXFileReference + name + vregion.h + path + Sources/rlottie/src/vector/pixman/vregion.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979C51E9B5B00000000 + + isa + PBXGroup + name + pixman + path + Sources/rlottie/src/vector/pixman + sourceTree + SOURCE_ROOT + children + + 1DD70E29B391E3C100000000 + 1DD70E29412C7E1600000000 + 1DD70E292AB45C9F00000000 + 1DD70E292E656A6400000000 + + + 1DD70E2913BF31F200000000 + + isa + PBXFileReference + name + stb_image.cpp + path + Sources/rlottie/src/vector/stb/stb_image.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E2954BB787700000000 + + isa + PBXFileReference + name + stb_image.h + path + Sources/rlottie/src/vector/stb/stb_image.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C9790001BE2100000000 + + isa + PBXGroup + name + stb + path + Sources/rlottie/src/vector/stb + sourceTree + SOURCE_ROOT + children + + 1DD70E2913BF31F200000000 + 1DD70E2954BB787700000000 + + + 1DD70E29DD6BC0BC00000000 + + isa + PBXFileReference + name + config.h + path + Sources/rlottie/src/vector/config.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E298AFB870A00000000 + + isa + PBXFileReference + name + vbezier.cpp + path + Sources/rlottie/src/vector/vbezier.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29D0BA338F00000000 + + isa + PBXFileReference + name + vbezier.h + path + Sources/rlottie/src/vector/vbezier.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29396F915A00000000 + + isa + PBXFileReference + name + vbitmap.cpp + path + Sources/rlottie/src/vector/vbitmap.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E299A4C91DF00000000 + + isa + PBXFileReference + name + vbitmap.h + path + Sources/rlottie/src/vector/vbitmap.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E299598F93900000000 + + isa + PBXFileReference + name + vbrush.cpp + path + Sources/rlottie/src/vector/vbrush.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29EB1C657E00000000 + + isa + PBXFileReference + name + vbrush.h + path + Sources/rlottie/src/vector/vbrush.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E295B6525DC00000000 + + isa + PBXFileReference + name + vcompositionfunctions.cpp + path + Sources/rlottie/src/vector/vcompositionfunctions.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E2944E49D3300000000 + + isa + PBXFileReference + name + vcowptr.h + path + Sources/rlottie/src/vector/vcowptr.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29166E37EA00000000 + + isa + PBXFileReference + name + vdasher.cpp + path + Sources/rlottie/src/vector/vdasher.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29C0E39C6F00000000 + + isa + PBXFileReference + name + vdasher.h + path + Sources/rlottie/src/vector/vdasher.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E298DF7C3D200000000 + + isa + PBXFileReference + name + vdebug.cpp + path + Sources/rlottie/src/vector/vdebug.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E293DAF025700000000 + + isa + PBXFileReference + name + vdebug.h + path + Sources/rlottie/src/vector/vdebug.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2915AA6BC900000000 + + isa + PBXFileReference + name + vdrawable.cpp + path + Sources/rlottie/src/vector/vdrawable.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29B3093C0E00000000 + + isa + PBXFileReference + name + vdrawable.h + path + Sources/rlottie/src/vector/vdrawable.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296402559D00000000 + + isa + PBXFileReference + name + vdrawhelper.cpp + path + Sources/rlottie/src/vector/vdrawhelper.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E298C398AE200000000 + + isa + PBXFileReference + name + vdrawhelper.h + path + Sources/rlottie/src/vector/vdrawhelper.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E297B64F10200000000 + + isa + PBXFileReference + name + vdrawhelper_neon.cpp + path + Sources/rlottie/src/vector/vdrawhelper_neon.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E295304167900000000 + + isa + PBXFileReference + name + vdrawhelper_sse2.cpp + path + Sources/rlottie/src/vector/vdrawhelper_sse2.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29A69935F400000000 + + isa + PBXFileReference + name + velapsedtimer.cpp + path + Sources/rlottie/src/vector/velapsedtimer.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29B6EA94F900000000 + + isa + PBXFileReference + name + velapsedtimer.h + path + Sources/rlottie/src/vector/velapsedtimer.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E293741D75300000000 + + isa + PBXFileReference + name + vglobal.h + path + Sources/rlottie/src/vector/vglobal.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2947A291AD00000000 + + isa + PBXFileReference + name + vimageloader.cpp + path + Sources/rlottie/src/vector/vimageloader.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29D7D98AF200000000 + + isa + PBXFileReference + name + vimageloader.h + path + Sources/rlottie/src/vector/vimageloader.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E3E54C7200000000 + + isa + PBXFileReference + name + vinterpolator.cpp + path + Sources/rlottie/src/vector/vinterpolator.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E2974A632F700000000 + + isa + PBXFileReference + name + vinterpolator.h + path + Sources/rlottie/src/vector/vinterpolator.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E292065D8E400000000 + + isa + PBXFileReference + name + vline.h + path + Sources/rlottie/src/vector/vline.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E292D0A9EEC00000000 + + isa + PBXFileReference + name + vmatrix.cpp + path + Sources/rlottie/src/vector/vmatrix.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E296A11DBF100000000 + + isa + PBXFileReference + name + vmatrix.h + path + Sources/rlottie/src/vector/vmatrix.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E295DA04C8A00000000 + + isa + PBXFileReference + name + vpainter.cpp + path + Sources/rlottie/src/vector/vpainter.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E2948D2590F00000000 + + isa + PBXFileReference + name + vpainter.h + path + Sources/rlottie/src/vector/vpainter.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29A10D5ED000000000 + + isa + PBXFileReference + name + vpath.cpp + path + Sources/rlottie/src/vector/vpath.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E2926CB44D500000000 + + isa + PBXFileReference + name + vpath.h + path + Sources/rlottie/src/vector/vpath.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29B70B8DBD00000000 + + isa + PBXFileReference + name + vpathmesure.cpp + path + Sources/rlottie/src/vector/vpathmesure.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E298A724B0200000000 + + isa + PBXFileReference + name + vpathmesure.h + path + Sources/rlottie/src/vector/vpathmesure.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29C9E9E65400000000 + + isa + PBXFileReference + name + vpoint.h + path + Sources/rlottie/src/vector/vpoint.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29ED3D2EA800000000 + + isa + PBXFileReference + name + vraster.cpp + path + Sources/rlottie/src/vector/vraster.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E296FDD2AAD00000000 + + isa + PBXFileReference + name + vraster.h + path + Sources/rlottie/src/vector/vraster.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29280F5D0F00000000 + + isa + PBXFileReference + name + vrect.cpp + path + Sources/rlottie/src/vector/vrect.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E292A65C6D400000000 + + isa + PBXFileReference + name + vrect.h + path + Sources/rlottie/src/vector/vrect.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E292E42256A00000000 + + isa + PBXFileReference + name + vrle.cpp + path + Sources/rlottie/src/vector/vrle.cpp + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.cpp + + 1DD70E29CFD4E9EF00000000 + + isa + PBXFileReference + name + vrle.h + path + Sources/rlottie/src/vector/vrle.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29757EB63300000000 + + isa + PBXFileReference + name + vstackallocator.h + path + Sources/rlottie/src/vector/vstackallocator.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29C03FD37000000000 + + isa + PBXFileReference + name + vtaskqueue.h + path + Sources/rlottie/src/vector/vtaskqueue.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979CF19E14300000000 + + isa + PBXGroup + name + vector + path + Sources/rlottie/src/vector + sourceTree + SOURCE_ROOT + children + + B401C979A45D8FA600000000 + B401C979C51E9B5B00000000 + B401C9790001BE2100000000 + 1DD70E29DD6BC0BC00000000 + 1DD70E298AFB870A00000000 + 1DD70E29D0BA338F00000000 + 1DD70E29396F915A00000000 + 1DD70E299A4C91DF00000000 + 1DD70E299598F93900000000 + 1DD70E29EB1C657E00000000 + 1DD70E295B6525DC00000000 + 1DD70E2944E49D3300000000 + 1DD70E29166E37EA00000000 + 1DD70E29C0E39C6F00000000 + 1DD70E298DF7C3D200000000 + 1DD70E293DAF025700000000 + 1DD70E2915AA6BC900000000 + 1DD70E29B3093C0E00000000 + 1DD70E296402559D00000000 + 1DD70E298C398AE200000000 + 1DD70E297B64F10200000000 + 1DD70E295304167900000000 + 1DD70E29A69935F400000000 + 1DD70E29B6EA94F900000000 + 1DD70E293741D75300000000 + 1DD70E2947A291AD00000000 + 1DD70E29D7D98AF200000000 + 1DD70E29E3E54C7200000000 + 1DD70E2974A632F700000000 + 1DD70E292065D8E400000000 + 1DD70E292D0A9EEC00000000 + 1DD70E296A11DBF100000000 + 1DD70E295DA04C8A00000000 + 1DD70E2948D2590F00000000 + 1DD70E29A10D5ED000000000 + 1DD70E2926CB44D500000000 + 1DD70E29B70B8DBD00000000 + 1DD70E298A724B0200000000 + 1DD70E29C9E9E65400000000 + 1DD70E29ED3D2EA800000000 + 1DD70E296FDD2AAD00000000 + 1DD70E29280F5D0F00000000 + 1DD70E292A65C6D400000000 + 1DD70E292E42256A00000000 + 1DD70E29CFD4E9EF00000000 + 1DD70E29757EB63300000000 + 1DD70E29C03FD37000000000 + + + B401C9790001BDE400000000 + + isa + PBXGroup + name + src + path + Sources/rlottie/src + sourceTree + SOURCE_ROOT + children + + B401C979F98CAE8500000000 + B401C979BE9E0F9F00000000 + B401C979CF19E14300000000 + + + B401C9794D24729100000000 + + isa + PBXGroup + name + rlottie + path + Sources/rlottie + sourceTree + SOURCE_ROOT + children + + B401C979000197DE00000000 + B401C9790001BDE400000000 + + + 1DD70E29EBFC3E6E00000000 + + isa + PBXFileReference + name + LottieInstance.h + path + Sources/LottieInstance.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29938B905A00000000 + + isa + PBXFileReference + name + LottieInstance.mm + path + Sources/LottieInstance.mm + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.objcpp + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C9794D24729100000000 + 1DD70E29EBFC3E6E00000000 + 1DD70E29938B905A00000000 + + + B401C97979C1F69100000000 + + isa + PBXGroup + name + RLottie + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C97979C1F69100000000 + + + E7A30F048FDF724600000000 + + isa + PBXBuildFile + fileRef + 1DD70E298FDF724600000000 + + E7A30F0432B2AEFA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2932B2AEFA00000000 + + E7A30F049FBE24E700000000 + + isa + PBXBuildFile + fileRef + 1DD70E299FBE24E700000000 + + E7A30F04BD134ABA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BD134ABA00000000 + + E7A30F048341AE2700000000 + + isa + PBXBuildFile + fileRef + 1DD70E298341AE2700000000 + + E7A30F046276BC9F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296276BC9F00000000 + + E7A30F04381AD43300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29381AD43300000000 + + E7A30F04A407880F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A407880F00000000 + + E7A30F04E6FBB7C500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E6FBB7C500000000 + + E7A30F044DD571BA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E294DD571BA00000000 + + E7A30F04B262E7E700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B262E7E700000000 + + E7A30F042AB45C9F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292AB45C9F00000000 + + E7A30F0413BF31F200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2913BF31F200000000 + + E7A30F048AFB870A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E298AFB870A00000000 + + E7A30F04396F915A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29396F915A00000000 + + E7A30F049598F93900000000 + + isa + PBXBuildFile + fileRef + 1DD70E299598F93900000000 + + E7A30F045B6525DC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295B6525DC00000000 + + E7A30F04166E37EA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29166E37EA00000000 + + E7A30F048DF7C3D200000000 + + isa + PBXBuildFile + fileRef + 1DD70E298DF7C3D200000000 + + E7A30F0415AA6BC900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2915AA6BC900000000 + + E7A30F046402559D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296402559D00000000 + + E7A30F047B64F10200000000 + + isa + PBXBuildFile + fileRef + 1DD70E297B64F10200000000 + + E7A30F045304167900000000 + + isa + PBXBuildFile + fileRef + 1DD70E295304167900000000 + + E7A30F04A69935F400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A69935F400000000 + + E7A30F0447A291AD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2947A291AD00000000 + + E7A30F04E3E54C7200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E3E54C7200000000 + + E7A30F042D0A9EEC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292D0A9EEC00000000 + + E7A30F045DA04C8A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295DA04C8A00000000 + + E7A30F04A10D5ED000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A10D5ED000000000 + + E7A30F04B70B8DBD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B70B8DBD00000000 + + E7A30F04ED3D2EA800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29ED3D2EA800000000 + + E7A30F04280F5D0F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29280F5D0F00000000 + + E7A30F042E42256A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292E42256A00000000 + + E7A30F04938B905A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29938B905A00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F048FDF724600000000 + E7A30F0432B2AEFA00000000 + E7A30F049FBE24E700000000 + E7A30F04BD134ABA00000000 + E7A30F048341AE2700000000 + E7A30F046276BC9F00000000 + E7A30F04381AD43300000000 + E7A30F04A407880F00000000 + E7A30F04E6FBB7C500000000 + E7A30F044DD571BA00000000 + E7A30F04B262E7E700000000 + E7A30F042AB45C9F00000000 + E7A30F0413BF31F200000000 + E7A30F048AFB870A00000000 + E7A30F04396F915A00000000 + E7A30F049598F93900000000 + E7A30F045B6525DC00000000 + E7A30F04166E37EA00000000 + E7A30F048DF7C3D200000000 + E7A30F0415AA6BC900000000 + E7A30F046402559D00000000 + E7A30F047B64F10200000000 + E7A30F045304167900000000 + E7A30F04A69935F400000000 + E7A30F0447A291AD00000000 + E7A30F04E3E54C7200000000 + E7A30F042D0A9EEC00000000 + E7A30F045DA04C8A00000000 + E7A30F04A10D5ED000000000 + E7A30F04B70B8DBD00000000 + E7A30F04ED3D2EA800000000 + E7A30F04280F5D0F00000000 + E7A30F042E42256A00000000 + E7A30F04938B905A00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E294153AE0400000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E292042D46E00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2993D97FD000000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E79C1F69100000000 + + isa + PBXNativeTarget + name + RLottie + productName + RLottie + productReference + 1DD70E29E5FAFF5F00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479379C1F69100000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E79C1F69100000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479379C1F69100000000 + + \ No newline at end of file diff --git a/submodules/RLottie/RLottie.xcodeproj/xcshareddata/xcschemes/RLottie.xcscheme b/submodules/RLottie/RLottie.xcodeproj/xcshareddata/xcschemes/RLottie.xcscheme new file mode 100644 index 0000000000..9e2733b950 --- /dev/null +++ b/submodules/RLottie/RLottie.xcodeproj/xcshareddata/xcschemes/RLottie.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/RMIntro/BUCK b/submodules/RMIntro/BUCK new file mode 100644 index 0000000000..b26aaeaad8 --- /dev/null +++ b/submodules/RMIntro/BUCK @@ -0,0 +1,22 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "RMIntro", + srcs = glob([ + "Sources/**/*.m", + "Sources/**/*.c", + ]), + headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/RMIntro.h"]), + exported_headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/RMIntro.h"]), + deps = [ + "//submodules/LegacyComponents:LegacyComponents", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/RMIntro/RMIntro.xcodeproj/project.pbxproj b/submodules/RMIntro/RMIntro.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..c59a2327b9 --- /dev/null +++ b/submodules/RMIntro/RMIntro.xcodeproj/project.pbxproj @@ -0,0 +1,913 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29BF93FFA400000000 + + isa + PBXFileReference + name + RMIntro-Debug.xcconfig + path + ../../buck-out/gen/submodules/RMIntro/RMIntro-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E290FB53E0E00000000 + + isa + PBXFileReference + name + RMIntro-Profile.xcconfig + path + ../../buck-out/gen/submodules/RMIntro/RMIntro-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29834BE97000000000 + + isa + PBXFileReference + name + RMIntro-Release.xcconfig + path + ../../buck-out/gen/submodules/RMIntro/RMIntro-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29BF93FFA400000000 + 1DD70E290FB53E0E00000000 + 1DD70E29834BE97000000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29697689BF00000000 + + isa + PBXFileReference + name + libRMIntro.a + path + libRMIntro.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29697689BF00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29A2B51CD300000000 + + isa + PBXFileReference + name + linmath.h + path + Sources/3rdparty/linmath/linmath.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C9790A8EF91900000000 + + isa + PBXGroup + name + linmath + path + Sources/3rdparty/linmath + sourceTree + SOURCE_ROOT + children + + 1DD70E29A2B51CD300000000 + + + B401C979F15F0C6100000000 + + isa + PBXGroup + name + 3rdparty + path + Sources/3rdparty + sourceTree + SOURCE_ROOT + children + + B401C9790A8EF91900000000 + + + 1DD70E2945F8BBA400000000 + + isa + PBXFileReference + name + animations.c + path + Sources/core/animations.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E2945F8BBA900000000 + + isa + PBXFileReference + name + animations.h + path + Sources/core/animations.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29A5478A3500000000 + + isa + PBXFileReference + name + buffer.c + path + Sources/core/buffer.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E29A5478A3A00000000 + + isa + PBXFileReference + name + buffer.h + path + Sources/core/buffer.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29F586F66100000000 + + isa + PBXFileReference + name + macros.h + path + Sources/core/macros.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2903EA757F00000000 + + isa + PBXFileReference + name + math_helper.h + path + Sources/core/math_helper.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E291286B17B00000000 + + isa + PBXFileReference + name + matrix.h + path + Sources/core/matrix.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29A736D60900000000 + + isa + PBXFileReference + name + objects.c + path + Sources/core/objects.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E29A736D60E00000000 + + isa + PBXFileReference + name + objects.h + path + Sources/core/objects.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29C641937900000000 + + isa + PBXFileReference + name + program.c + path + Sources/core/program.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E29C641937E00000000 + + isa + PBXFileReference + name + program.h + path + Sources/core/program.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29C8C7181D00000000 + + isa + PBXFileReference + name + rngs.c + path + Sources/core/rngs.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E29C8C7182200000000 + + isa + PBXFileReference + name + rngs.h + path + Sources/core/rngs.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29D2E6189A00000000 + + isa + PBXFileReference + name + shader.c + path + Sources/core/shader.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E29D2E6189F00000000 + + isa + PBXFileReference + name + shader.h + path + Sources/core/shader.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2984720BBF00000000 + + isa + PBXFileReference + name + timing.c + path + Sources/core/timing.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E2984720BC400000000 + + isa + PBXFileReference + name + timing.h + path + Sources/core/timing.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979002EAF9F00000000 + + isa + PBXGroup + name + core + path + Sources/core + sourceTree + SOURCE_ROOT + children + + 1DD70E2945F8BBA400000000 + 1DD70E2945F8BBA900000000 + 1DD70E29A5478A3500000000 + 1DD70E29A5478A3A00000000 + 1DD70E29F586F66100000000 + 1DD70E2903EA757F00000000 + 1DD70E291286B17B00000000 + 1DD70E29A736D60900000000 + 1DD70E29A736D60E00000000 + 1DD70E29C641937900000000 + 1DD70E29C641937E00000000 + 1DD70E29C8C7181D00000000 + 1DD70E29C8C7182200000000 + 1DD70E29D2E6189A00000000 + 1DD70E29D2E6189F00000000 + 1DD70E2984720BBF00000000 + 1DD70E2984720BC400000000 + + + 1DD70E29E1BE516D00000000 + + isa + PBXFileReference + name + platform_log.c + path + Sources/platform/common/platform_log.c + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.c + + 1DD70E29E1BE517200000000 + + isa + PBXFileReference + name + platform_log.h + path + Sources/platform/common/platform_log.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2982C190AD00000000 + + isa + PBXFileReference + name + platform_macros.h + path + Sources/platform/common/platform_macros.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979AF3F29EB00000000 + + isa + PBXGroup + name + common + path + Sources/platform/common + sourceTree + SOURCE_ROOT + children + + 1DD70E29E1BE516D00000000 + 1DD70E29E1BE517200000000 + 1DD70E2982C190AD00000000 + + + 1DD70E29C2AA528700000000 + + isa + PBXFileReference + name + RMGeometry.h + path + Sources/platform/ios/RMGeometry.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29C2AA528C00000000 + + isa + PBXFileReference + name + RMGeometry.m + path + Sources/platform/ios/RMGeometry.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2933D2CE9F00000000 + + isa + PBXFileReference + name + RMIntroPageView.h + path + Sources/platform/ios/RMIntroPageView.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2933D2CEA400000000 + + isa + PBXFileReference + name + RMIntroPageView.m + path + Sources/platform/ios/RMIntroPageView.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29543D8CEC00000000 + + isa + PBXFileReference + name + RMIntroViewController.h + path + Sources/platform/ios/RMIntroViewController.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29543D8CF100000000 + + isa + PBXFileReference + name + RMIntroViewController.m + path + Sources/platform/ios/RMIntroViewController.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29200C0DEB00000000 + + isa + PBXFileReference + name + platform_gl.h + path + Sources/platform/ios/platform_gl.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29A65ACCCC00000000 + + isa + PBXFileReference + name + texture_helper.h + path + Sources/platform/ios/texture_helper.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29A65ACCD100000000 + + isa + PBXFileReference + name + texture_helper.m + path + Sources/platform/ios/texture_helper.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C9790001980D00000000 + + isa + PBXGroup + name + ios + path + Sources/platform/ios + sourceTree + SOURCE_ROOT + children + + 1DD70E29C2AA528700000000 + 1DD70E29C2AA528C00000000 + 1DD70E2933D2CE9F00000000 + 1DD70E2933D2CEA400000000 + 1DD70E29543D8CEC00000000 + 1DD70E29543D8CF100000000 + 1DD70E29200C0DEB00000000 + 1DD70E29A65ACCCC00000000 + 1DD70E29A65ACCD100000000 + + + B401C9796FBD687300000000 + + isa + PBXGroup + name + platform + path + Sources/platform + sourceTree + SOURCE_ROOT + children + + B401C979AF3F29EB00000000 + B401C9790001980D00000000 + + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C979F15F0C6100000000 + B401C979002EAF9F00000000 + B401C9796FBD687300000000 + + + B401C979795C98F100000000 + + isa + PBXGroup + name + RMIntro + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C979795C98F100000000 + + + E7A30F0445F8BBA400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2945F8BBA400000000 + + E7A30F04A5478A3500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A5478A3500000000 + + E7A30F04A736D60900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A736D60900000000 + + E7A30F04C641937900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C641937900000000 + + E7A30F04C8C7181D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C8C7181D00000000 + + E7A30F04D2E6189A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D2E6189A00000000 + + E7A30F0484720BBF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984720BBF00000000 + + E7A30F04E1BE516D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E1BE516D00000000 + + E7A30F04C2AA528C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C2AA528C00000000 + + E7A30F0433D2CEA400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2933D2CEA400000000 + + E7A30F04543D8CF100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29543D8CF100000000 + + E7A30F04A65ACCD100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A65ACCD100000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0445F8BBA400000000 + E7A30F04A5478A3500000000 + E7A30F04A736D60900000000 + E7A30F04C641937900000000 + E7A30F04C8C7181D00000000 + E7A30F04D2E6189A00000000 + E7A30F0484720BBF00000000 + E7A30F04E1BE516D00000000 + E7A30F04C2AA528C00000000 + E7A30F0433D2CEA400000000 + E7A30F04543D8CF100000000 + E7A30F04A65ACCD100000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29BF93FFA400000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E290FB53E0E00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29834BE97000000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E795C98F100000000 + + isa + PBXNativeTarget + name + RMIntro + productName + RMIntro + productReference + 1DD70E29697689BF00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793795C98F100000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E795C98F100000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793795C98F100000000 + + \ No newline at end of file diff --git a/submodules/RMIntro/RMIntro.xcodeproj/xcshareddata/xcschemes/RMIntro.xcscheme b/submodules/RMIntro/RMIntro.xcodeproj/xcshareddata/xcschemes/RMIntro.xcscheme new file mode 100644 index 0000000000..3d9d76ea41 --- /dev/null +++ b/submodules/RMIntro/RMIntro.xcodeproj/xcshareddata/xcschemes/RMIntro.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/RadialStatusNode/RadialStatusNode.xcodeproj/project.pbxproj b/submodules/RadialStatusNode/RadialStatusNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..5155653756 --- /dev/null +++ b/submodules/RadialStatusNode/RadialStatusNode.xcodeproj/project.pbxproj @@ -0,0 +1,539 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29562583A200000000 + + isa + PBXFileReference + name + RadialStatusNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/RadialStatusNode/RadialStatusNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2947F5BA8C00000000 + + isa + PBXFileReference + name + RadialStatusNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/RadialStatusNode/RadialStatusNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29BB8C65EE00000000 + + isa + PBXFileReference + name + RadialStatusNode-Release.xcconfig + path + ../../buck-out/gen/submodules/RadialStatusNode/RadialStatusNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29562583A200000000 + 1DD70E2947F5BA8C00000000 + 1DD70E29BB8C65EE00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E293E4DE92B00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E293BC3A17700000000 + + isa + PBXFileReference + name + RadialCheckContentNode.swift + path + Sources/RadialCheckContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D162FB3D00000000 + + isa + PBXFileReference + name + RadialCloudProgressContentNode.swift + path + Sources/RadialCloudProgressContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BD9F335900000000 + + isa + PBXFileReference + name + RadialDownloadContentNode.swift + path + Sources/RadialDownloadContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E291E7D185400000000 + + isa + PBXFileReference + name + RadialProgressContentNode.swift + path + Sources/RadialProgressContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FB3707A600000000 + + isa + PBXFileReference + name + RadialStatusBackgroundNode.swift + path + Sources/RadialStatusBackgroundNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2950F2596F00000000 + + isa + PBXFileReference + name + RadialStatusContentNode.swift + path + Sources/RadialStatusContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B1E2AE7600000000 + + isa + PBXFileReference + name + RadialStatusIconContentNode.swift + path + Sources/RadialStatusIconContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E299EC3F11800000000 + + isa + PBXFileReference + name + RadialStatusNode.swift + path + Sources/RadialStatusNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2950CCBF6000000000 + + isa + PBXFileReference + name + RadialStatusSecretTimeoutContentNode.swift + path + Sources/RadialStatusSecretTimeoutContentNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E293BC3A17700000000 + 1DD70E29D162FB3D00000000 + 1DD70E29BD9F335900000000 + 1DD70E291E7D185400000000 + 1DD70E29FB3707A600000000 + 1DD70E2950F2596F00000000 + 1DD70E29B1E2AE7600000000 + 1DD70E299EC3F11800000000 + 1DD70E2950CCBF6000000000 + + + B401C9799B9F58B300000000 + + isa + PBXGroup + name + RadialStatusNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9799B9F58B300000000 + + + E7A30F043BC3A17700000000 + + isa + PBXBuildFile + fileRef + 1DD70E293BC3A17700000000 + + E7A30F04D162FB3D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D162FB3D00000000 + + E7A30F04BD9F335900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BD9F335900000000 + + E7A30F041E7D185400000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E7D185400000000 + + E7A30F04FB3707A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FB3707A600000000 + + E7A30F0450F2596F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2950F2596F00000000 + + E7A30F04B1E2AE7600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B1E2AE7600000000 + + E7A30F049EC3F11800000000 + + isa + PBXBuildFile + fileRef + 1DD70E299EC3F11800000000 + + E7A30F0450CCBF6000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2950CCBF6000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F043BC3A17700000000 + E7A30F04D162FB3D00000000 + E7A30F04BD9F335900000000 + E7A30F041E7D185400000000 + E7A30F04FB3707A600000000 + E7A30F0450F2596F00000000 + E7A30F04B1E2AE7600000000 + E7A30F049EC3F11800000000 + E7A30F0450CCBF6000000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29562583A200000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2947F5BA8C00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29BB8C65EE00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E9B9F58B300000000 + + isa + PBXNativeTarget + name + RadialStatusNode + productName + RadialStatusNode + productReference + 1DD70E293E4DE92B00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847939B9F58B300000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E9B9F58B300000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847939B9F58B300000000 + + \ No newline at end of file diff --git a/submodules/RadialStatusNode/RadialStatusNode.xcodeproj/xcshareddata/xcschemes/RadialStatusNode.xcscheme b/submodules/RadialStatusNode/RadialStatusNode.xcodeproj/xcshareddata/xcschemes/RadialStatusNode.xcscheme new file mode 100644 index 0000000000..896532d723 --- /dev/null +++ b/submodules/RadialStatusNode/RadialStatusNode.xcodeproj/xcshareddata/xcschemes/RadialStatusNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/RaiseToListen/BUCK b/submodules/RaiseToListen/BUCK index b097aa0388..b483bcfd14 100644 --- a/submodules/RaiseToListen/BUCK +++ b/submodules/RaiseToListen/BUCK @@ -4,6 +4,7 @@ static_library( name = "RaiseToListen", srcs = glob([ "Sources/*.m", + "Sources/*.swift", ]), headers = glob([ "Sources/*.h", diff --git a/submodules/RaiseToListen/RaiseToListen.xcodeproj/project.pbxproj b/submodules/RaiseToListen/RaiseToListen.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..9442f07b04 --- /dev/null +++ b/submodules/RaiseToListen/RaiseToListen.xcodeproj/project.pbxproj @@ -0,0 +1,363 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29B1E2CAE700000000 + + isa + PBXFileReference + name + RaiseToListen-Debug.xcconfig + path + ../../buck-out/gen/submodules/RaiseToListen/RaiseToListen-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A97E449100000000 + + isa + PBXFileReference + name + RaiseToListen-Profile.xcconfig + path + ../../buck-out/gen/submodules/RaiseToListen/RaiseToListen-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E291D14EFF300000000 + + isa + PBXFileReference + name + RaiseToListen-Release.xcconfig + path + ../../buck-out/gen/submodules/RaiseToListen/RaiseToListen-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29B1E2CAE700000000 + 1DD70E29A97E449100000000 + 1DD70E291D14EFF300000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E298701AD5C00000000 + + isa + PBXFileReference + name + libRaiseToListen.a + path + libRaiseToListen.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E298701AD5C00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29138D783300000000 + + isa + PBXFileReference + name + RaiseToListen.swift + path + Sources/RaiseToListen.swift + sourceTree + SOURCE_ROOT + + 1DD70E29794802E100000000 + + isa + PBXFileReference + name + RaiseToListenActivator.h + path + Sources/RaiseToListenActivator.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29794802E600000000 + + isa + PBXFileReference + name + RaiseToListenActivator.m + path + Sources/RaiseToListenActivator.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29138D783300000000 + 1DD70E29794802E100000000 + 1DD70E29794802E600000000 + + + B401C9792B77100E00000000 + + isa + PBXGroup + name + RaiseToListen + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C9792B77100E00000000 + + + E7A30F04138D783300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29138D783300000000 + + E7A30F04794802E600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29794802E600000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04138D783300000000 + E7A30F04794802E600000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29B1E2CAE700000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29A97E449100000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E291D14EFF300000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E2B77100E00000000 + + isa + PBXNativeTarget + name + RaiseToListen + productName + RaiseToListen + productReference + 1DD70E298701AD5C00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847932B77100E00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E2B77100E00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847932B77100E00000000 + + \ No newline at end of file diff --git a/submodules/RaiseToListen/RaiseToListen.xcodeproj/xcshareddata/xcschemes/RaiseToListen.xcscheme b/submodules/RaiseToListen/RaiseToListen.xcodeproj/xcshareddata/xcschemes/RaiseToListen.xcscheme new file mode 100644 index 0000000000..a74daaf31c --- /dev/null +++ b/submodules/RaiseToListen/RaiseToListen.xcodeproj/xcshareddata/xcschemes/RaiseToListen.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ReactionSelectionNode/BUCK b/submodules/ReactionSelectionNode/BUCK new file mode 100644 index 0000000000..42eea150fb --- /dev/null +++ b/submodules/ReactionSelectionNode/BUCK @@ -0,0 +1,19 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ReactionSelectionNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/AnimationUI:AnimationUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ReactionSelectionNode/ReactionSelectionNode.xcodeproj/project.pbxproj b/submodules/ReactionSelectionNode/ReactionSelectionNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..c95a40b9dd --- /dev/null +++ b/submodules/ReactionSelectionNode/ReactionSelectionNode.xcodeproj/project.pbxproj @@ -0,0 +1,637 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29E180743000000000 + + isa + PBXFileReference + name + ReactionSelectionNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/ReactionSelectionNode/ReactionSelectionNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E296856BF9A00000000 + + isa + PBXFileReference + name + ReactionSelectionNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/ReactionSelectionNode/ReactionSelectionNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29DBED6AFC00000000 + + isa + PBXFileReference + name + ReactionSelectionNode-Release.xcconfig + path + ../../buck-out/gen/submodules/ReactionSelectionNode/ReactionSelectionNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29E180743000000000 + 1DD70E296856BF9A00000000 + 1DD70E29DBED6AFC00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E292420028600000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E292395015100000000 + 1DD70E29CD296A8300000000 + + + 1DD70E29AD66967300000000 + + isa + PBXFileReference + name + libReactionSelectionNode.a + path + libReactionSelectionNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29AD66967300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2930A5FA5800000000 + + isa + PBXFileReference + name + ReactionGestureItem.swift + path + Sources/ReactionGestureItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29691388CA00000000 + + isa + PBXFileReference + name + ReactionSelectionNode.swift + path + Sources/ReactionSelectionNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29962E1AD400000000 + + isa + PBXFileReference + name + ReactionSelectionParentNode.swift + path + Sources/ReactionSelectionParentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E299845EB0100000000 + + isa + PBXFileReference + name + ReactionSwipeGestureRecognizer.swift + path + Sources/ReactionSwipeGestureRecognizer.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2930A5FA5800000000 + 1DD70E29691388CA00000000 + 1DD70E29962E1AD400000000 + 1DD70E299845EB0100000000 + + + B401C979E09F1DE500000000 + + isa + PBXGroup + name + ReactionSelectionNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979E09F1DE500000000 + + + E7A30F0430A5FA5800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2930A5FA5800000000 + + E7A30F04691388CA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29691388CA00000000 + + E7A30F04962E1AD400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29962E1AD400000000 + + E7A30F049845EB0100000000 + + isa + PBXBuildFile + fileRef + 1DD70E299845EB0100000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0430A5FA5800000000 + E7A30F04691388CA00000000 + E7A30F04962E1AD400000000 + E7A30F049845EB0100000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F04D6F14E1000000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29E180743000000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E296856BF9A00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29DBED6AFC00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EE09F1DE500000000 + + isa + PBXNativeTarget + name + ReactionSelectionNode + productName + ReactionSelectionNode + productReference + 1DD70E29AD66967300000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793E09F1DE500000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EE09F1DE500000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793E09F1DE500000000 + + \ No newline at end of file diff --git a/submodules/ReactionSelectionNode/ReactionSelectionNode.xcodeproj/xcshareddata/xcschemes/ReactionSelectionNode.xcscheme b/submodules/ReactionSelectionNode/ReactionSelectionNode.xcodeproj/xcshareddata/xcschemes/ReactionSelectionNode.xcscheme new file mode 100644 index 0000000000..63dfda85de --- /dev/null +++ b/submodules/ReactionSelectionNode/ReactionSelectionNode.xcodeproj/xcshareddata/xcschemes/ReactionSelectionNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/SSignalKit/SSignalKit/SSignalKit.xcodeproj/project.pbxproj b/submodules/SSignalKit/SSignalKit/SSignalKit.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..b81090cfff --- /dev/null +++ b/submodules/SSignalKit/SSignalKit/SSignalKit.xcodeproj/project.pbxproj @@ -0,0 +1,1271 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E299920BF5A00000000 + + isa + PBXFileReference + name + SSignalKit-Debug.xcconfig + path + ../../../buck-out/gen/submodules/SSignalKit/SSignalKit/SSignalKit-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B910E84400000000 + + isa + PBXFileReference + name + SSignalKit-Profile.xcconfig + path + ../../../buck-out/gen/submodules/SSignalKit/SSignalKit/SSignalKit-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292CA793A600000000 + + isa + PBXFileReference + name + SSignalKit-Release.xcconfig + path + ../../../buck-out/gen/submodules/SSignalKit/SSignalKit/SSignalKit-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E299920BF5A00000000 + 1DD70E29B910E84400000000 + 1DD70E292CA793A600000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29E3B31A3300000000 + + isa + PBXFileReference + name + libSSignalKit.a + path + libSSignalKit.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29E3B31A3300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E292E4A5ED800000000 + + isa + PBXFileReference + name + SAtomic.h + path + SAtomic.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E292E4A5EDD00000000 + + isa + PBXFileReference + name + SAtomic.m + path + SAtomic.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E299171EB6F00000000 + + isa + PBXFileReference + name + SBag.h + path + SBag.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E299171EB7400000000 + + isa + PBXFileReference + name + SBag.m + path + SBag.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29E165487400000000 + + isa + PBXFileReference + name + SBlockDisposable.h + path + SBlockDisposable.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E165487900000000 + + isa + PBXFileReference + name + SBlockDisposable.m + path + SBlockDisposable.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2985937B4D00000000 + + isa + PBXFileReference + name + SDisposable.h + path + SDisposable.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2967A3678900000000 + + isa + PBXFileReference + name + SDisposableSet.h + path + SDisposableSet.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2967A3678E00000000 + + isa + PBXFileReference + name + SDisposableSet.m + path + SDisposableSet.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E295CC0D47200000000 + + isa + PBXFileReference + name + SMetaDisposable.h + path + SMetaDisposable.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E295CC0D47700000000 + + isa + PBXFileReference + name + SMetaDisposable.m + path + SMetaDisposable.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E295E79E4FA00000000 + + isa + PBXFileReference + name + SMulticastSignalManager.h + path + SMulticastSignalManager.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E295E79E4FF00000000 + + isa + PBXFileReference + name + SMulticastSignalManager.m + path + SMulticastSignalManager.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29384742F800000000 + + isa + PBXFileReference + name + SQueue.h + path + SQueue.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29384742FD00000000 + + isa + PBXFileReference + name + SQueue.m + path + SQueue.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29187351AC00000000 + + isa + PBXFileReference + name + SSignal+Accumulate.h + path + SSignal+Accumulate.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29187351B100000000 + + isa + PBXFileReference + name + SSignal+Accumulate.m + path + SSignal+Accumulate.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E295765D92500000000 + + isa + PBXFileReference + name + SSignal+Catch.h + path + SSignal+Catch.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E295765D92A00000000 + + isa + PBXFileReference + name + SSignal+Catch.m + path + SSignal+Catch.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E294FCF4AA900000000 + + isa + PBXFileReference + name + SSignal+Combine.h + path + SSignal+Combine.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E294FCF4AAE00000000 + + isa + PBXFileReference + name + SSignal+Combine.m + path + SSignal+Combine.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E296B54DEC400000000 + + isa + PBXFileReference + name + SSignal+Dispatch.h + path + SSignal+Dispatch.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296B54DEC900000000 + + isa + PBXFileReference + name + SSignal+Dispatch.m + path + SSignal+Dispatch.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2922C1BE7800000000 + + isa + PBXFileReference + name + SSignal+Mapping.h + path + SSignal+Mapping.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2922C1BE7D00000000 + + isa + PBXFileReference + name + SSignal+Mapping.m + path + SSignal+Mapping.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E290396618F00000000 + + isa + PBXFileReference + name + SSignal+Meta.h + path + SSignal+Meta.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E290396619400000000 + + isa + PBXFileReference + name + SSignal+Meta.m + path + SSignal+Meta.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29CA81832200000000 + + isa + PBXFileReference + name + SSignal+Multicast.h + path + SSignal+Multicast.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29CA81832700000000 + + isa + PBXFileReference + name + SSignal+Multicast.m + path + SSignal+Multicast.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2908EB86F800000000 + + isa + PBXFileReference + name + SSignal+Pipe.h + path + SSignal+Pipe.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2908EB86FD00000000 + + isa + PBXFileReference + name + SSignal+Pipe.m + path + SSignal+Pipe.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29C1481E1500000000 + + isa + PBXFileReference + name + SSignal+SideEffects.h + path + SSignal+SideEffects.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29C1481E1A00000000 + + isa + PBXFileReference + name + SSignal+SideEffects.m + path + SSignal+SideEffects.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29B097D71200000000 + + isa + PBXFileReference + name + SSignal+Single.h + path + SSignal+Single.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29B097D71700000000 + + isa + PBXFileReference + name + SSignal+Single.m + path + SSignal+Single.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E290F4BE79100000000 + + isa + PBXFileReference + name + SSignal+Take.h + path + SSignal+Take.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E290F4BE79600000000 + + isa + PBXFileReference + name + SSignal+Take.m + path + SSignal+Take.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2916E14A9400000000 + + isa + PBXFileReference + name + SSignal+Timing.h + path + SSignal+Timing.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2916E14A9900000000 + + isa + PBXFileReference + name + SSignal+Timing.m + path + SSignal+Timing.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29289ECC1500000000 + + isa + PBXFileReference + name + SSignal.h + path + SSignal.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29289ECC1A00000000 + + isa + PBXFileReference + name + SSignal.m + path + SSignal.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E290902173500000000 + + isa + PBXFileReference + name + SSignalKit.h + path + SSignalKit.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2971D0C85500000000 + + isa + PBXFileReference + name + SSubscriber.h + path + SSubscriber.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2971D0C85A00000000 + + isa + PBXFileReference + name + SSubscriber.m + path + SSubscriber.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29347741B300000000 + + isa + PBXFileReference + name + SThreadPool.h + path + SThreadPool.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29347741B800000000 + + isa + PBXFileReference + name + SThreadPool.m + path + SThreadPool.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2971CBE69200000000 + + isa + PBXFileReference + name + SThreadPoolQueue.h + path + SThreadPoolQueue.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2971CBE69700000000 + + isa + PBXFileReference + name + SThreadPoolQueue.m + path + SThreadPoolQueue.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29FF74919800000000 + + isa + PBXFileReference + name + SThreadPoolTask.h + path + SThreadPoolTask.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29FF74919D00000000 + + isa + PBXFileReference + name + SThreadPoolTask.m + path + SThreadPoolTask.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29C2E9742C00000000 + + isa + PBXFileReference + name + STimer.h + path + STimer.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29C2E9743100000000 + + isa + PBXFileReference + name + STimer.m + path + STimer.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E292491FA2900000000 + + isa + PBXFileReference + name + SVariable.h + path + SVariable.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E292491FA2E00000000 + + isa + PBXFileReference + name + SVariable.m + path + SVariable.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E292E4A5ED800000000 + 1DD70E292E4A5EDD00000000 + 1DD70E299171EB6F00000000 + 1DD70E299171EB7400000000 + 1DD70E29E165487400000000 + 1DD70E29E165487900000000 + 1DD70E2985937B4D00000000 + 1DD70E2967A3678900000000 + 1DD70E2967A3678E00000000 + 1DD70E295CC0D47200000000 + 1DD70E295CC0D47700000000 + 1DD70E295E79E4FA00000000 + 1DD70E295E79E4FF00000000 + 1DD70E29384742F800000000 + 1DD70E29384742FD00000000 + 1DD70E29187351AC00000000 + 1DD70E29187351B100000000 + 1DD70E295765D92500000000 + 1DD70E295765D92A00000000 + 1DD70E294FCF4AA900000000 + 1DD70E294FCF4AAE00000000 + 1DD70E296B54DEC400000000 + 1DD70E296B54DEC900000000 + 1DD70E2922C1BE7800000000 + 1DD70E2922C1BE7D00000000 + 1DD70E290396618F00000000 + 1DD70E290396619400000000 + 1DD70E29CA81832200000000 + 1DD70E29CA81832700000000 + 1DD70E2908EB86F800000000 + 1DD70E2908EB86FD00000000 + 1DD70E29C1481E1500000000 + 1DD70E29C1481E1A00000000 + 1DD70E29B097D71200000000 + 1DD70E29B097D71700000000 + 1DD70E290F4BE79100000000 + 1DD70E290F4BE79600000000 + 1DD70E2916E14A9400000000 + 1DD70E2916E14A9900000000 + 1DD70E29289ECC1500000000 + 1DD70E29289ECC1A00000000 + 1DD70E290902173500000000 + 1DD70E2971D0C85500000000 + 1DD70E2971D0C85A00000000 + 1DD70E29347741B300000000 + 1DD70E29347741B800000000 + 1DD70E2971CBE69200000000 + 1DD70E2971CBE69700000000 + 1DD70E29FF74919800000000 + 1DD70E29FF74919D00000000 + 1DD70E29C2E9742C00000000 + 1DD70E29C2E9743100000000 + 1DD70E292491FA2900000000 + 1DD70E292491FA2E00000000 + + + B401C979EB3B23FB00000000 + + isa + PBXGroup + name + SSignalKit + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C979EB3B23FB00000000 + + + E7A30F042E4A5EDD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292E4A5EDD00000000 + + E7A30F049171EB7400000000 + + isa + PBXBuildFile + fileRef + 1DD70E299171EB7400000000 + + E7A30F04E165487900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E165487900000000 + + E7A30F0467A3678E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2967A3678E00000000 + + E7A30F045CC0D47700000000 + + isa + PBXBuildFile + fileRef + 1DD70E295CC0D47700000000 + + E7A30F045E79E4FF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295E79E4FF00000000 + + E7A30F04384742FD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29384742FD00000000 + + E7A30F04187351B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29187351B100000000 + + E7A30F045765D92A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295765D92A00000000 + + E7A30F044FCF4AAE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E294FCF4AAE00000000 + + E7A30F046B54DEC900000000 + + isa + PBXBuildFile + fileRef + 1DD70E296B54DEC900000000 + + E7A30F0422C1BE7D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2922C1BE7D00000000 + + E7A30F040396619400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290396619400000000 + + E7A30F04CA81832700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CA81832700000000 + + E7A30F0408EB86FD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2908EB86FD00000000 + + E7A30F04C1481E1A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C1481E1A00000000 + + E7A30F04B097D71700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B097D71700000000 + + E7A30F040F4BE79600000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F4BE79600000000 + + E7A30F0416E14A9900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2916E14A9900000000 + + E7A30F04289ECC1A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29289ECC1A00000000 + + E7A30F0471D0C85A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971D0C85A00000000 + + E7A30F04347741B800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29347741B800000000 + + E7A30F0471CBE69700000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971CBE69700000000 + + E7A30F04FF74919D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF74919D00000000 + + E7A30F04C2E9743100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C2E9743100000000 + + E7A30F042491FA2E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292491FA2E00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F042E4A5EDD00000000 + E7A30F049171EB7400000000 + E7A30F04E165487900000000 + E7A30F0467A3678E00000000 + E7A30F045CC0D47700000000 + E7A30F045E79E4FF00000000 + E7A30F04384742FD00000000 + E7A30F04187351B100000000 + E7A30F045765D92A00000000 + E7A30F044FCF4AAE00000000 + E7A30F046B54DEC900000000 + E7A30F0422C1BE7D00000000 + E7A30F040396619400000000 + E7A30F04CA81832700000000 + E7A30F0408EB86FD00000000 + E7A30F04C1481E1A00000000 + E7A30F04B097D71700000000 + E7A30F040F4BE79600000000 + E7A30F0416E14A9900000000 + E7A30F04289ECC1A00000000 + E7A30F0471D0C85A00000000 + E7A30F04347741B800000000 + E7A30F0471CBE69700000000 + E7A30F04FF74919D00000000 + E7A30F04C2E9743100000000 + E7A30F042491FA2E00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E299920BF5A00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29B910E84400000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E292CA793A600000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EEB3B23FB00000000 + + isa + PBXNativeTarget + name + SSignalKit + productName + SSignalKit + productReference + 1DD70E29E3B31A3300000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793EB3B23FB00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EEB3B23FB00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793EB3B23FB00000000 + + \ No newline at end of file diff --git a/submodules/SSignalKit/SSignalKit/SSignalKit.xcodeproj/xcshareddata/xcschemes/SSignalKit.xcscheme b/submodules/SSignalKit/SSignalKit/SSignalKit.xcodeproj/xcshareddata/xcschemes/SSignalKit.xcscheme new file mode 100644 index 0000000000..c34488f1bb --- /dev/null +++ b/submodules/SSignalKit/SSignalKit/SSignalKit.xcodeproj/xcshareddata/xcschemes/SSignalKit.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/SaveToCameraRoll/SaveToCameraRoll.xcodeproj/project.pbxproj b/submodules/SaveToCameraRoll/SaveToCameraRoll.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..e583afed12 --- /dev/null +++ b/submodules/SaveToCameraRoll/SaveToCameraRoll.xcodeproj/project.pbxproj @@ -0,0 +1,731 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29C4FAC91B00000000 + + isa + PBXFileReference + name + SaveToCameraRoll-Debug.xcconfig + path + ../../buck-out/gen/submodules/SaveToCameraRoll/SaveToCameraRoll-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29568F85C500000000 + + isa + PBXFileReference + name + SaveToCameraRoll-Profile.xcconfig + path + ../../buck-out/gen/submodules/SaveToCameraRoll/SaveToCameraRoll-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29CA26312700000000 + + isa + PBXFileReference + name + SaveToCameraRoll-Release.xcconfig + path + ../../buck-out/gen/submodules/SaveToCameraRoll/SaveToCameraRoll-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29C4FAC91B00000000 + 1DD70E29568F85C500000000 + 1DD70E29CA26312700000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E291D58331200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29FA38EF7F00000000 + + isa + PBXFileReference + name + SaveToCameraRoll.swift + path + Sources/SaveToCameraRoll.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29FA38EF7F00000000 + + + B401C97978B0F05A00000000 + + isa + PBXGroup + name + SaveToCameraRoll + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C97978B0F05A00000000 + + + E7A30F04FA38EF7F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FA38EF7F00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04FA38EF7F00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F042417E0B200000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29C4FAC91B00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29568F85C500000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29CA26312700000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E78B0F05A00000000 + + isa + PBXNativeTarget + name + SaveToCameraRoll + productName + SaveToCameraRoll + productReference + 1DD70E291D58331200000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479378B0F05A00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E78B0F05A00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479378B0F05A00000000 + + \ No newline at end of file diff --git a/submodules/SaveToCameraRoll/SaveToCameraRoll.xcodeproj/xcshareddata/xcschemes/SaveToCameraRoll.xcscheme b/submodules/SaveToCameraRoll/SaveToCameraRoll.xcodeproj/xcshareddata/xcschemes/SaveToCameraRoll.xcscheme new file mode 100644 index 0000000000..a3f630e6bb --- /dev/null +++ b/submodules/SaveToCameraRoll/SaveToCameraRoll.xcodeproj/xcshareddata/xcschemes/SaveToCameraRoll.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ScreenCaptureDetection/BUCK b/submodules/ScreenCaptureDetection/BUCK index 240df6beea..4a993a81a1 100644 --- a/submodules/ScreenCaptureDetection/BUCK +++ b/submodules/ScreenCaptureDetection/BUCK @@ -6,7 +6,7 @@ static_library( "Sources/**/*.swift", ]), deps = [ - "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit", + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/ScreenCaptureDetection/ScreenCaptureDetection.xcodeproj/project.pbxproj b/submodules/ScreenCaptureDetection/ScreenCaptureDetection.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..e18978bf9c --- /dev/null +++ b/submodules/ScreenCaptureDetection/ScreenCaptureDetection.xcodeproj/project.pbxproj @@ -0,0 +1,379 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2994ECA6CA00000000 + + isa + PBXFileReference + name + ScreenCaptureDetection-Debug.xcconfig + path + ../../buck-out/gen/submodules/ScreenCaptureDetection/ScreenCaptureDetection-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29F180B3B400000000 + + isa + PBXFileReference + name + ScreenCaptureDetection-Profile.xcconfig + path + ../../buck-out/gen/submodules/ScreenCaptureDetection/ScreenCaptureDetection-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2965175F1600000000 + + isa + PBXFileReference + name + ScreenCaptureDetection-Release.xcconfig + path + ../../buck-out/gen/submodules/ScreenCaptureDetection/ScreenCaptureDetection-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2994ECA6CA00000000 + 1DD70E29F180B3B400000000 + 1DD70E2965175F1600000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29D65BA68200000000 + + + 1DD70E29CF967D4300000000 + + isa + PBXFileReference + name + libScreenCaptureDetection.a + path + libScreenCaptureDetection.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29CF967D4300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29115920F000000000 + + isa + PBXFileReference + name + ScreenCaptureDetection.swift + path + Sources/ScreenCaptureDetection.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29115920F000000000 + + + B401C979326B4A8B00000000 + + isa + PBXGroup + name + ScreenCaptureDetection + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979326B4A8B00000000 + + + E7A30F04115920F000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29115920F000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04115920F000000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2994ECA6CA00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29F180B3B400000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2965175F1600000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E326B4A8B00000000 + + isa + PBXNativeTarget + name + ScreenCaptureDetection + productName + ScreenCaptureDetection + productReference + 1DD70E29CF967D4300000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793326B4A8B00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E326B4A8B00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793326B4A8B00000000 + + \ No newline at end of file diff --git a/submodules/ScreenCaptureDetection/ScreenCaptureDetection.xcodeproj/xcshareddata/xcschemes/ScreenCaptureDetection.xcscheme b/submodules/ScreenCaptureDetection/ScreenCaptureDetection.xcodeproj/xcshareddata/xcschemes/ScreenCaptureDetection.xcscheme new file mode 100644 index 0000000000..6424d9faa4 --- /dev/null +++ b/submodules/ScreenCaptureDetection/ScreenCaptureDetection.xcodeproj/xcshareddata/xcschemes/ScreenCaptureDetection.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/SearchBarNode/BUCK b/submodules/SearchBarNode/BUCK new file mode 100644 index 0000000000..6ef61f903d --- /dev/null +++ b/submodules/SearchBarNode/BUCK @@ -0,0 +1,19 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "SearchBarNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/ActivityIndicator:ActivityIndicator", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/SearchBarNode/SearchBarNode.xcodeproj/project.pbxproj b/submodules/SearchBarNode/SearchBarNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..98b54c6dc7 --- /dev/null +++ b/submodules/SearchBarNode/SearchBarNode.xcodeproj/project.pbxproj @@ -0,0 +1,573 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E298150B34800000000 + + isa + PBXFileReference + name + SearchBarNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/SearchBarNode/SearchBarNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29551398B200000000 + + isa + PBXFileReference + name + SearchBarNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/SearchBarNode/SearchBarNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29C8AA441400000000 + + isa + PBXFileReference + name + SearchBarNode-Release.xcconfig + path + ../../buck-out/gen/submodules/SearchBarNode/SearchBarNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E298150B34800000000 + 1DD70E29551398B200000000 + 1DD70E29C8AA441400000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29BF0846EE00000000 + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29EA9CBB5B00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F6E36EB200000000 + + isa + PBXFileReference + name + SearchBarNode.swift + path + Sources/SearchBarNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29033E088F00000000 + + isa + PBXFileReference + name + SearchBarPlaceholderNode.swift + path + Sources/SearchBarPlaceholderNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E29F6E36EB200000000 + 1DD70E29033E088F00000000 + + + B401C9796A2B91CD00000000 + + isa + PBXGroup + name + SearchBarNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9796A2B91CD00000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04F6E36EB200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F6E36EB200000000 + + E7A30F04033E088F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29033E088F00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F04F6E36EB200000000 + E7A30F04033E088F00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04BF0846EE00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E298150B34800000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29551398B200000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29C8AA441400000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E6A2B91CD00000000 + + isa + PBXNativeTarget + name + SearchBarNode + productName + SearchBarNode + productReference + 1DD70E29EA9CBB5B00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847936A2B91CD00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E6A2B91CD00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847936A2B91CD00000000 + + \ No newline at end of file diff --git a/submodules/SearchBarNode/SearchBarNode.xcodeproj/xcshareddata/xcschemes/SearchBarNode.xcscheme b/submodules/SearchBarNode/SearchBarNode.xcodeproj/xcshareddata/xcschemes/SearchBarNode.xcscheme new file mode 100644 index 0000000000..0c12e12962 --- /dev/null +++ b/submodules/SearchBarNode/SearchBarNode.xcodeproj/xcshareddata/xcschemes/SearchBarNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/SearchUI/BUCK b/submodules/SearchUI/BUCK new file mode 100644 index 0000000000..ac67194edf --- /dev/null +++ b/submodules/SearchUI/BUCK @@ -0,0 +1,20 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "SearchUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/SearchBarNode:SearchBarNode", + "//submodules/ChatListSearchItemNode:ChatListSearchItemNode", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/SearchUI/SearchUI.xcodeproj/project.pbxproj b/submodules/SearchUI/SearchUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..d740aa2113 --- /dev/null +++ b/submodules/SearchUI/SearchUI.xcodeproj/project.pbxproj @@ -0,0 +1,637 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2932662AD900000000 + + isa + PBXFileReference + name + SearchUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/SearchUI/SearchUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2916A9700300000000 + + isa + PBXFileReference + name + SearchUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/SearchUI/SearchUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E298A401B6500000000 + + isa + PBXFileReference + name + SearchUI-Release.xcconfig + path + ../../buck-out/gen/submodules/SearchUI/SearchUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2932662AD900000000 + 1DD70E2916A9700300000000 + 1DD70E298A401B6500000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2907DC840B00000000 + + isa + PBXFileReference + name + libChatListSearchItemNode.a + path + libChatListSearchItemNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29BF0846EE00000000 + 1DD70E2907DC840B00000000 + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29EA9CBB5B00000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E291328E99400000000 + + isa + PBXFileReference + name + libSearchUI.a + path + libSearchUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E291328E99400000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29FBCE5A2300000000 + + isa + PBXFileReference + name + FixSearchableListNodeScrolling.swift + path + Sources/FixSearchableListNodeScrolling.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A9AD1B7900000000 + + isa + PBXFileReference + name + NavigationBarSearchContentNode.swift + path + Sources/NavigationBarSearchContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2949AD073B00000000 + + isa + PBXFileReference + name + SearchDisplayController.swift + path + Sources/SearchDisplayController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F7F9260A00000000 + + isa + PBXFileReference + name + SearchDisplayControllerContentNode.swift + path + Sources/SearchDisplayControllerContentNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29FBCE5A2300000000 + 1DD70E29A9AD1B7900000000 + 1DD70E2949AD073B00000000 + 1DD70E29F7F9260A00000000 + + + B401C97938D20A5C00000000 + + isa + PBXGroup + name + SearchUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C97938D20A5C00000000 + + + E7A30F04FBCE5A2300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FBCE5A2300000000 + + E7A30F04A9AD1B7900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A9AD1B7900000000 + + E7A30F0449AD073B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2949AD073B00000000 + + E7A30F04F7F9260A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F7F9260A00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04FBCE5A2300000000 + E7A30F04A9AD1B7900000000 + E7A30F0449AD073B00000000 + E7A30F04F7F9260A00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04EA9CBB5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA9CBB5B00000000 + + E7A30F0407DC840B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2907DC840B00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04BF0846EE00000000 + E7A30F04EA9CBB5B00000000 + E7A30F0407DC840B00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2932662AD900000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2916A9700300000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E298A401B6500000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E38D20A5C00000000 + + isa + PBXNativeTarget + name + SearchUI + productName + SearchUI + productReference + 1DD70E291328E99400000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479338D20A5C00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E38D20A5C00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479338D20A5C00000000 + + \ No newline at end of file diff --git a/submodules/SearchUI/SearchUI.xcodeproj/xcshareddata/xcschemes/SearchUI.xcscheme b/submodules/SearchUI/SearchUI.xcodeproj/xcshareddata/xcschemes/SearchUI.xcscheme new file mode 100644 index 0000000000..3757dd95d2 --- /dev/null +++ b/submodules/SearchUI/SearchUI.xcodeproj/xcshareddata/xcschemes/SearchUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/SelectablePeerNode/BUCK b/submodules/SelectablePeerNode/BUCK new file mode 100644 index 0000000000..0226d71817 --- /dev/null +++ b/submodules/SelectablePeerNode/BUCK @@ -0,0 +1,23 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "SelectablePeerNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/PeerOnlineMarkerNode:PeerOnlineMarkerNode", + "//submodules/AvatarNode:AvatarNode", + "//submodules/LegacyComponents:LegacyComponents", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/SelectablePeerNode/SelectablePeerNode.xcodeproj/project.pbxproj b/submodules/SelectablePeerNode/SelectablePeerNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..7b4c65c911 --- /dev/null +++ b/submodules/SelectablePeerNode/SelectablePeerNode.xcodeproj/project.pbxproj @@ -0,0 +1,643 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29C1F3B85B00000000 + + isa + PBXFileReference + name + SelectablePeerNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/SelectablePeerNode/SelectablePeerNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29F909A50500000000 + + isa + PBXFileReference + name + SelectablePeerNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/SelectablePeerNode/SelectablePeerNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E296CA0506700000000 + + isa + PBXFileReference + name + SelectablePeerNode-Release.xcconfig + path + ../../buck-out/gen/submodules/SelectablePeerNode/SelectablePeerNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29C1F3B85B00000000 + 1DD70E29F909A50500000000 + 1DD70E296CA0506700000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E2936DE2CF900000000 + 1DD70E29928D142900000000 + 1DD70E29DB6520C800000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + 1DD70E29CD296A8300000000 + + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29097DBE9200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29F6D9D83F00000000 + + isa + PBXFileReference + name + SelectablePeerNode.swift + path + Sources/SelectablePeerNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29F6D9D83F00000000 + + + B401C979175F691A00000000 + + isa + PBXGroup + name + SelectablePeerNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979175F691A00000000 + + + E7A30F04F6D9D83F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F6D9D83F00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04F6D9D83F00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F04D6F14E1000000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0484A59C1D00000000 + E7A30F04A54A195300000000 + E7A30F04928D142900000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29C1F3B85B00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29F909A50500000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E296CA0506700000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E175F691A00000000 + + isa + PBXNativeTarget + name + SelectablePeerNode + productName + SelectablePeerNode + productReference + 1DD70E29097DBE9200000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793175F691A00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E175F691A00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793175F691A00000000 + + \ No newline at end of file diff --git a/submodules/SelectablePeerNode/SelectablePeerNode.xcodeproj/xcshareddata/xcschemes/SelectablePeerNode.xcscheme b/submodules/SelectablePeerNode/SelectablePeerNode.xcodeproj/xcshareddata/xcschemes/SelectablePeerNode.xcscheme new file mode 100644 index 0000000000..1c6d3733dc --- /dev/null +++ b/submodules/SelectablePeerNode/SelectablePeerNode.xcodeproj/xcshareddata/xcschemes/SelectablePeerNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/SettingsUI/BUCK b/submodules/SettingsUI/BUCK new file mode 100644 index 0000000000..920db9d758 --- /dev/null +++ b/submodules/SettingsUI/BUCK @@ -0,0 +1,87 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "SettingsUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/MtProtoKit:MtProtoKit#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/ActivityIndicator:ActivityIndicator", + "//submodules/AlertUI:AlertUI", + "//submodules/AvatarNode:AvatarNode", + "//submodules/CallListUI:CallListUI", + "//submodules/ChatListSearchItemNode:ChatListSearchItemNode", + "//submodules/ChatListSearchItemHeader:ChatListSearchItemHeader", + "//submodules/ChatListUI:ChatListUI", + "//submodules/ContactsPeerItem:ContactsPeerItem", + "//submodules/CountrySelectionUI:CountrySelectionUI", + "//submodules/DeviceAccess:DeviceAccess", + "//submodules/DeviceLocationManager:DeviceLocationManager", + "//submodules/GalleryUI:GalleryUI", + "//submodules/Geocoding:Geocoding", + "//submodules/ItemListUI:ItemListUI", + "//submodules/ItemListStickerPackItem:ItemListStickerPackItem", + "//submodules/ItemListPeerItem:ItemListPeerItem", + "//submodules/ItemListPeerActionItem:ItemListPeerActionItem", + "//submodules/ItemListAvatarAndNameInfoItem:ItemListAvatarAndNameInfoItem", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/LegacyUI:LegacyUI", + "//submodules/LegacyMediaPickerUI:LegacyMediaPickerUI", + "//submodules/ListSectionHeaderNode:ListSectionHeaderNode", + "//submodules/LocalMediaResources:LocalMediaResources", + "//submodules/LocalizedPeerData:LocalizedPeerData", + "//submodules/LocalAuth:LocalAuth", + "//submodules/MapResourceToAvatarSizes:MapResourceToAvatarSizes", + "//submodules/MediaResources:MediaResources", + "//submodules/MergeLists:MergeLists", + "//submodules/NotificationSoundSelectionUI:NotificationSoundSelectionUI", + "//submodules/OverlayStatusController:OverlayStatusController", + "//submodules/PasswordSetupUI:PasswordSetupUI", + "//submodules/PassportUI:PassportUI", + "//submodules/PasscodeUI:PasscodeUI", + "//submodules/PeerAvatarGalleryUI:PeerAvatarGalleryUI", + "//submodules/PhoneInputNode:PhoneInputNode", + "//submodules/PhotoResources:PhotoResources", + "//submodules/ProgressNavigationButtonNode:ProgressNavigationButtonNode", + "//submodules/RadialStatusNode:RadialStatusNode", + "//submodules/SearchBarNode:SearchBarNode", + "//submodules/SearchUI:SearchUI", + "//submodules/ShareController:ShareController", + "//submodules/StickerPackPreviewUI:StickerPackPreviewUI", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/TelegramNotices:TelegramNotices", + "//submodules/TelegramCallsUI:TelegramCallsUI", + "//submodules/TextFormat:TextFormat", + "//submodules/MediaPlayer:UniversalMediaPlayer", + "//submodules/UrlEscaping:UrlEscaping", + "//submodules/WebSearchUI:WebSearchUI", + "//submodules/UrlHandling:UrlHandling", + "//submodules/HexColor:HexColor", + "//submodules/QrCode:QrCode", + "//submodules/WallpaperResources:WallpaperResources", + "//submodules/AuthorizationUI:AuthorizationUI", + "//submodules/InstantPageUI:InstantPageUI", + "//submodules/CheckNode:CheckNode", + "//submodules/CounterContollerTitleView:CounterContollerTitleView", + "//submodules/GridMessageSelectionNode:GridMessageSelectionNode", + "//submodules/InstantPageCache:InstantPageCache", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/MessageUI.framework", + "$SDKROOT/System/Library/Frameworks/LocalAuthentication.framework", + "$SDKROOT/System/Library/Frameworks/Photos.framework", + "$SDKROOT/System/Library/Frameworks/QuickLook.framework", + "$SDKROOT/System/Library/Frameworks/CoreTelephony.framework", + ], +) diff --git a/submodules/SettingsUI/SettingsUI.xcodeproj/project.pbxproj b/submodules/SettingsUI/SettingsUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..f71a632c67 --- /dev/null +++ b/submodules/SettingsUI/SettingsUI.xcodeproj/project.pbxproj @@ -0,0 +1,4969 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E295C15C1BE00000000 + + isa + PBXFileReference + name + SettingsUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/SettingsUI/SettingsUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2992CEE1A800000000 + + isa + PBXFileReference + name + SettingsUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/SettingsUI/SettingsUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2906658D0A00000000 + + isa + PBXFileReference + name + SettingsUI-Release.xcconfig + path + ../../buck-out/gen/submodules/SettingsUI/SettingsUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E295C15C1BE00000000 + 1DD70E2992CEE1A800000000 + 1DD70E2906658D0A00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E296A100F7B00000000 + + isa + PBXFileReference + name + libAuthorizationUI.a + path + libAuthorizationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2938C0E4C800000000 + + isa + PBXFileReference + name + libCallListUI.a + path + libCallListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FD72F45600000000 + + isa + PBXFileReference + name + libChatListSearchItemHeader.a + path + libChatListSearchItemHeader.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2907DC840B00000000 + + isa + PBXFileReference + name + libChatListSearchItemNode.a + path + libChatListSearchItemNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E296DFD63C200000000 + + isa + PBXFileReference + name + libChatListUI.a + path + libChatListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B6F47D1F00000000 + + isa + PBXFileReference + name + libChatTitleActivityNode.a + path + libChatTitleActivityNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292F91702000000000 + + isa + PBXFileReference + name + libContactListUI.a + path + libContactListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2931752C6000000000 + + isa + PBXFileReference + name + libContactsPeerItem.a + path + libContactsPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2915F6A49D00000000 + + isa + PBXFileReference + name + libCounterContollerTitleView.a + path + libCounterContollerTitleView.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29016F454200000000 + + isa + PBXFileReference + name + libCountrySelectionUI.a + path + libCountrySelectionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2979E58A0000000000 + + isa + PBXFileReference + name + libDateSelectionUI.a + path + libDateSelectionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CED1620500000000 + + isa + PBXFileReference + name + libDeleteChatPeerActionSheetItem.a + path + libDeleteChatPeerActionSheetItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F29DEA1400000000 + + isa + PBXFileReference + name + libGalleryUI.a + path + libGalleryUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D1EB356900000000 + + isa + PBXFileReference + name + libGeocoding.a + path + libGeocoding.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F8FF5A6500000000 + + isa + PBXFileReference + name + libGridMessageSelectionNode.a + path + libGridMessageSelectionNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2947B6256000000000 + + isa + PBXFileReference + name + libHexColor.a + path + libHexColor.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C6E517A300000000 + + isa + PBXFileReference + name + libImageCompression.a + path + libImageCompression.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299B97462A00000000 + + isa + PBXFileReference + name + libInstantPageCache.a + path + libInstantPageCache.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297394725200000000 + + isa + PBXFileReference + name + libInstantPageUI.a + path + libInstantPageUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F2CA340700000000 + + isa + PBXFileReference + name + libItemListAvatarAndNameInfoItem.a + path + libItemListAvatarAndNameInfoItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2905A95CB400000000 + + isa + PBXFileReference + name + libItemListPeerActionItem.a + path + libItemListPeerActionItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299A24C4DE00000000 + + isa + PBXFileReference + name + libItemListPeerItem.a + path + libItemListPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295C00B78600000000 + + isa + PBXFileReference + name + libItemListStickerPackItem.a + path + libItemListStickerPackItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29E220F5E800000000 + + isa + PBXFileReference + name + libLanguageSuggestionUI.a + path + libLanguageSuggestionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E296C39078B00000000 + + isa + PBXFileReference + name + libLegacyMediaPickerUI.a + path + libLegacyMediaPickerUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2952137F3500000000 + + isa + PBXFileReference + name + libLegacyUI.a + path + libLegacyUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292995DF8400000000 + + isa + PBXFileReference + name + libLiveLocationPositionNode.a + path + libLiveLocationPositionNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292969635400000000 + + isa + PBXFileReference + name + libLiveLocationTimerNode.a + path + libLiveLocationTimerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A889192100000000 + + isa + PBXFileReference + name + libLocalAuth.a + path + libLocalAuth.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2968BAC05A00000000 + + isa + PBXFileReference + name + libLocalMediaResources.a + path + libLocalMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29E102CFE100000000 + + isa + PBXFileReference + name + libLocationUI.a + path + libLocationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A3994F2C00000000 + + isa + PBXFileReference + name + libMapResourceToAvatarSizes.a + path + libMapResourceToAvatarSizes.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E296BF0672C00000000 + + isa + PBXFileReference + name + libMosaicLayout.a + path + libMosaicLayout.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29866F6A0400000000 + + isa + PBXFileReference + name + libMusicAlbumArtResources.a + path + libMusicAlbumArtResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2937C1167400000000 + + isa + PBXFileReference + name + libNotificationSoundSelectionUI.a + path + libNotificationSoundSelectionUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AF00DC4900000000 + + isa + PBXFileReference + name + libOpenInExternalAppUI.a + path + libOpenInExternalAppUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BBAF750C00000000 + + isa + PBXFileReference + name + libOverlayStatusController.a + path + libOverlayStatusController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D0DBC52A00000000 + + isa + PBXFileReference + name + libPasscodeUI.a + path + libPasscodeUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29300245BE00000000 + + isa + PBXFileReference + name + libPassportUI.a + path + libPassportUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E299856EB2400000000 + + isa + PBXFileReference + name + libPasswordSetupUI.a + path + libPasswordSetupUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C7165FF900000000 + + isa + PBXFileReference + name + libPeerAvatarGalleryUI.a + path + libPeerAvatarGalleryUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291631B91900000000 + + isa + PBXFileReference + name + libPeersNearbyIconNode.a + path + libPeersNearbyIconNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B5051C0E00000000 + + isa + PBXFileReference + name + libPersistentStringHash.a + path + libPersistentStringHash.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29005B963600000000 + + isa + PBXFileReference + name + libPhoneInputNode.a + path + libPhoneInputNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AA32BBC600000000 + + isa + PBXFileReference + name + libQrCode.a + path + libQrCode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CF967D4300000000 + + isa + PBXFileReference + name + libScreenCaptureDetection.a + path + libScreenCaptureDetection.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291328E99400000000 + + isa + PBXFileReference + name + libSearchUI.a + path + libSearchUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29524F478E00000000 + + isa + PBXFileReference + name + libSolidRoundedButtonNode.a + path + libSolidRoundedButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2907DC815E00000000 + + isa + PBXFileReference + name + libStickerPackPreviewUI.a + path + libStickerPackPreviewUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E296A346AC200000000 + + isa + PBXFileReference + name + libSwipeToDismissGesture.a + path + libSwipeToDismissGesture.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2943136EC600000000 + + isa + PBXFileReference + name + libTelegramBaseController.a + path + libTelegramBaseController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DA3FBAD600000000 + + isa + PBXFileReference + name + libTelegramCallsUI.a + path + libTelegramCallsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2988BAAFC800000000 + + isa + PBXFileReference + name + libTelegramNotices.a + path + libTelegramNotices.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DF758A8500000000 + + isa + PBXFileReference + name + libTelegramPermissionsUI.a + path + libTelegramPermissionsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C7E0F39600000000 + + isa + PBXFileReference + name + libTelegramUniversalVideoContent.a + path + libTelegramUniversalVideoContent.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F18DE1D900000000 + + isa + PBXFileReference + name + libTelegramVoip.a + path + libTelegramVoip.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AE67341000000000 + + isa + PBXFileReference + name + libUndoUI.a + path + libUndoUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D81471E200000000 + + isa + PBXFileReference + name + libUrlHandling.a + path + libUrlHandling.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A7E1559B00000000 + + isa + PBXFileReference + name + libWallpaperResources.a + path + libWallpaperResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DF12291E00000000 + + isa + PBXFileReference + name + libWebSearchUI.a + path + libWebSearchUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A6BAE8A300000000 + + isa + PBXFileReference + name + libWebsiteType.a + path + libWebsiteType.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E296A100F7B00000000 + 1DD70E29A54A195300000000 + 1DD70E2938C0E4C800000000 + 1DD70E29FD72F45600000000 + 1DD70E2907DC840B00000000 + 1DD70E297AB043C800000000 + 1DD70E296DFD63C200000000 + 1DD70E29B6F47D1F00000000 + 1DD70E2997B4D6D800000000 + 1DD70E292F91702000000000 + 1DD70E2931752C6000000000 + 1DD70E2915F6A49D00000000 + 1DD70E29016F454200000000 + 1DD70E2979E58A0000000000 + 1DD70E29CED1620500000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29F29DEA1400000000 + 1DD70E29D1EB356900000000 + 1DD70E29F8FF5A6500000000 + 1DD70E2947B6256000000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29C6E517A300000000 + 1DD70E29247D9AC100000000 + 1DD70E299B97462A00000000 + 1DD70E297394725200000000 + 1DD70E29F2CA340700000000 + 1DD70E2905A95CB400000000 + 1DD70E299A24C4DE00000000 + 1DD70E295C00B78600000000 + 1DD70E295A26607D00000000 + 1DD70E29E220F5E800000000 + 1DD70E296C39078B00000000 + 1DD70E2952137F3500000000 + 1DD70E29AC43662400000000 + 1DD70E292995DF8400000000 + 1DD70E292969635400000000 + 1DD70E29A889192100000000 + 1DD70E2968BAC05A00000000 + 1DD70E29CE34063500000000 + 1DD70E29E102CFE100000000 + 1DD70E29A3994F2C00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E296BF0672C00000000 + 1DD70E29866F6A0400000000 + 1DD70E2937C1167400000000 + 1DD70E29AF00DC4900000000 + 1DD70E29BBAF750C00000000 + 1DD70E29D0DBC52A00000000 + 1DD70E29300245BE00000000 + 1DD70E299856EB2400000000 + 1DD70E29C7165FF900000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E291631B91900000000 + 1DD70E29B5051C0E00000000 + 1DD70E29005B963600000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E29AA32BBC600000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29CF967D4300000000 + 1DD70E29EA9CBB5B00000000 + 1DD70E291328E99400000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E29524F478E00000000 + 1DD70E2907DC815E00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E296A346AC200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E2943136EC600000000 + 1DD70E29DA3FBAD600000000 + 1DD70E29119CDA0700000000 + 1DD70E2988BAAFC800000000 + 1DD70E290DD17C7100000000 + 1DD70E29DF758A8500000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29C7E0F39600000000 + 1DD70E29F18DE1D900000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E29AE67341000000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + 1DD70E29D81471E200000000 + 1DD70E29A7E1559B00000000 + 1DD70E29DF12291E00000000 + 1DD70E29A6BAE8A300000000 + + + 1DD70E290456054F00000000 + + isa + PBXFileReference + name + libSettingsUI.a + path + libSettingsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E290456054F00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29B34055D000000000 + + isa + PBXFileReference + name + AutodownloadConnectionTypeController.swift + path + Sources/Data and Storage/AutodownloadConnectionTypeController.swift + sourceTree + SOURCE_ROOT + + 1DD70E296643094600000000 + + isa + PBXFileReference + name + AutodownloadDataUsagePickerItem.swift + path + Sources/Data and Storage/AutodownloadDataUsagePickerItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2991129E4C00000000 + + isa + PBXFileReference + name + AutodownloadMediaCategoryController.swift + path + Sources/Data and Storage/AutodownloadMediaCategoryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2979C8627B00000000 + + isa + PBXFileReference + name + AutodownloadSizeLimitItem.swift + path + Sources/Data and Storage/AutodownloadSizeLimitItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D53B9EF800000000 + + isa + PBXFileReference + name + CalculatingCacheSizeItem.swift + path + Sources/Data and Storage/CalculatingCacheSizeItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2984A799B200000000 + + isa + PBXFileReference + name + DataAndStorageSettingsController.swift + path + Sources/Data and Storage/DataAndStorageSettingsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E293EB09D8D00000000 + + isa + PBXFileReference + name + NetworkUsageStatsController.swift + path + Sources/Data and Storage/NetworkUsageStatsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E298B70ABB000000000 + + isa + PBXFileReference + name + ProxyListSettingsController.swift + path + Sources/Data and Storage/ProxyListSettingsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E2224A3900000000 + + isa + PBXFileReference + name + ProxyServerActionSheetController.swift + path + Sources/Data and Storage/ProxyServerActionSheetController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29595A27D500000000 + + isa + PBXFileReference + name + ProxyServerSettingsController.swift + path + Sources/Data and Storage/ProxyServerSettingsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E1C128FF00000000 + + isa + PBXFileReference + name + ProxySettingsActionItem.swift + path + Sources/Data and Storage/ProxySettingsActionItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D147ADCC00000000 + + isa + PBXFileReference + name + ProxySettingsServerItem.swift + path + Sources/Data and Storage/ProxySettingsServerItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2979467C2200000000 + + isa + PBXFileReference + name + SaveIncomingMediaController.swift + path + Sources/Data and Storage/SaveIncomingMediaController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2998DDE2B800000000 + + isa + PBXFileReference + name + ShareProxyServerActionSheetController.swift + path + Sources/Data and Storage/ShareProxyServerActionSheetController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CBD2D56700000000 + + isa + PBXFileReference + name + StorageUsageController.swift + path + Sources/Data and Storage/StorageUsageController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2917489B5500000000 + + isa + PBXFileReference + name + VoiceCallDataSavingController.swift + path + Sources/Data and Storage/VoiceCallDataSavingController.swift + sourceTree + SOURCE_ROOT + + B401C979E13BD9BC00000000 + + isa + PBXGroup + name + Data and Storage + path + Sources/Data and Storage + sourceTree + SOURCE_ROOT + children + + 1DD70E29B34055D000000000 + 1DD70E296643094600000000 + 1DD70E2991129E4C00000000 + 1DD70E2979C8627B00000000 + 1DD70E29D53B9EF800000000 + 1DD70E2984A799B200000000 + 1DD70E293EB09D8D00000000 + 1DD70E298B70ABB000000000 + 1DD70E29E2224A3900000000 + 1DD70E29595A27D500000000 + 1DD70E29E1C128FF00000000 + 1DD70E29D147ADCC00000000 + 1DD70E2979467C2200000000 + 1DD70E2998DDE2B800000000 + 1DD70E29CBD2D56700000000 + 1DD70E2917489B5500000000 + + + 1DD70E2969501A5800000000 + + isa + PBXFileReference + name + LocalizationListController.swift + path + Sources/Language Selection/LocalizationListController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2903F2897A00000000 + + isa + PBXFileReference + name + LocalizationListControllerNode.swift + path + Sources/Language Selection/LocalizationListControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B9DFD9CF00000000 + + isa + PBXFileReference + name + LocalizationListItem.swift + path + Sources/Language Selection/LocalizationListItem.swift + sourceTree + SOURCE_ROOT + + B401C9790AB0B6C400000000 + + isa + PBXGroup + name + Language Selection + path + Sources/Language Selection + sourceTree + SOURCE_ROOT + children + + 1DD70E2969501A5800000000 + 1DD70E2903F2897A00000000 + 1DD70E29B9DFD9CF00000000 + + + 1DD70E2903669CFD00000000 + + isa + PBXFileReference + name + LanguageSuggestionController.swift + path + Sources/Language Suggestion/LanguageSuggestionController.swift + sourceTree + SOURCE_ROOT + + B401C979F5742BCC00000000 + + isa + PBXGroup + name + Language Suggestion + path + Sources/Language Suggestion + sourceTree + SOURCE_ROOT + children + + 1DD70E2903669CFD00000000 + + + 1DD70E296091158700000000 + + isa + PBXFileReference + name + NotificationExceptionControllerNode.swift + path + Sources/Notifications/Exceptions/NotificationExceptionControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B4ED2B2800000000 + + isa + PBXFileReference + name + NotificationExceptionSettingsController.swift + path + Sources/Notifications/Exceptions/NotificationExceptionSettingsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2989377CD400000000 + + isa + PBXFileReference + name + NotificationExceptions.swift + path + Sources/Notifications/Exceptions/NotificationExceptions.swift + sourceTree + SOURCE_ROOT + + B401C979287C162400000000 + + isa + PBXGroup + name + Exceptions + path + Sources/Notifications/Exceptions + sourceTree + SOURCE_ROOT + children + + 1DD70E296091158700000000 + 1DD70E29B4ED2B2800000000 + 1DD70E2989377CD400000000 + + + 1DD70E29A5EEC66B00000000 + + isa + PBXFileReference + name + NotificationSearchItem.swift + path + Sources/Notifications/NotificationSearchItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2992180E7800000000 + + isa + PBXFileReference + name + NotificationsAndSounds.swift + path + Sources/Notifications/NotificationsAndSounds.swift + sourceTree + SOURCE_ROOT + + B401C9797B75C4C800000000 + + isa + PBXGroup + name + Notifications + path + Sources/Notifications + sourceTree + SOURCE_ROOT + children + + B401C979287C162400000000 + 1DD70E29A5EEC66B00000000 + 1DD70E2992180E7800000000 + + + 1DD70E29C96DE7E200000000 + + isa + PBXFileReference + name + ItemListRecentSessionItem.swift + path + Sources/Privacy and Security/Recent Sessions/ItemListRecentSessionItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A5A5D00200000000 + + isa + PBXFileReference + name + ItemListWebsiteItem.swift + path + Sources/Privacy and Security/Recent Sessions/ItemListWebsiteItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E297C88F99900000000 + + isa + PBXFileReference + name + RecentSessionsController.swift + path + Sources/Privacy and Security/Recent Sessions/RecentSessionsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FB5A9E3400000000 + + isa + PBXFileReference + name + RecentSessionsEmptyStateItem.swift + path + Sources/Privacy and Security/Recent Sessions/RecentSessionsEmptyStateItem.swift + sourceTree + SOURCE_ROOT + + B401C979B63E7CC200000000 + + isa + PBXGroup + name + Recent Sessions + path + Sources/Privacy and Security/Recent Sessions + sourceTree + SOURCE_ROOT + children + + 1DD70E29C96DE7E200000000 + 1DD70E29A5A5D00200000000 + 1DD70E297C88F99900000000 + 1DD70E29FB5A9E3400000000 + + + 1DD70E292A1CD44600000000 + + isa + PBXFileReference + name + BlockedPeersController.swift + path + Sources/Privacy and Security/BlockedPeersController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2952091EF800000000 + + isa + PBXFileReference + name + ConfirmPhoneNumberController.swift + path + Sources/Privacy and Security/ConfirmPhoneNumberController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BA7CEF3800000000 + + isa + PBXFileReference + name + CreatePasswordController.swift + path + Sources/Privacy and Security/CreatePasswordController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BB138E0200000000 + + isa + PBXFileReference + name + DataPrivacySettingsController.swift + path + Sources/Privacy and Security/DataPrivacySettingsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29EEEAEF8500000000 + + isa + PBXFileReference + name + ForwardPrivacyChatPreviewItem.swift + path + Sources/Privacy and Security/ForwardPrivacyChatPreviewItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E297BE7988100000000 + + isa + PBXFileReference + name + PasscodeOptionsController.swift + path + Sources/Privacy and Security/PasscodeOptionsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B997391000000000 + + isa + PBXFileReference + name + PrivacyAndSecurityController.swift + path + Sources/Privacy and Security/PrivacyAndSecurityController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A54B014500000000 + + isa + PBXFileReference + name + PrivacyIntroController.swift + path + Sources/Privacy and Security/PrivacyIntroController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29691631E700000000 + + isa + PBXFileReference + name + PrivacyIntroControllerNode.swift + path + Sources/Privacy and Security/PrivacyIntroControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2959C0115000000000 + + isa + PBXFileReference + name + SelectivePrivacySettingsController.swift + path + Sources/Privacy and Security/SelectivePrivacySettingsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E299E87B00300000000 + + isa + PBXFileReference + name + SelectivePrivacySettingsPeersController.swift + path + Sources/Privacy and Security/SelectivePrivacySettingsPeersController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29421B856500000000 + + isa + PBXFileReference + name + TwoStepVerificationPasswordEntryController.swift + path + Sources/Privacy and Security/TwoStepVerificationPasswordEntryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2903BC291D00000000 + + isa + PBXFileReference + name + TwoStepVerificationResetController.swift + path + Sources/Privacy and Security/TwoStepVerificationResetController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2913D735D800000000 + + isa + PBXFileReference + name + TwoStepVerificationUnlockController.swift + path + Sources/Privacy and Security/TwoStepVerificationUnlockController.swift + sourceTree + SOURCE_ROOT + + B401C979A728414100000000 + + isa + PBXGroup + name + Privacy and Security + path + Sources/Privacy and Security + sourceTree + SOURCE_ROOT + children + + B401C979B63E7CC200000000 + 1DD70E292A1CD44600000000 + 1DD70E2952091EF800000000 + 1DD70E29BA7CEF3800000000 + 1DD70E29BB138E0200000000 + 1DD70E29EEEAEF8500000000 + 1DD70E297BE7988100000000 + 1DD70E29B997391000000000 + 1DD70E29A54B014500000000 + 1DD70E29691631E700000000 + 1DD70E2959C0115000000000 + 1DD70E299E87B00300000000 + 1DD70E29421B856500000000 + 1DD70E2903BC291D00000000 + 1DD70E2913D735D800000000 + + + 1DD70E29DE4899A300000000 + + isa + PBXFileReference + name + SettingsSearchItem.swift + path + Sources/Search/SettingsSearchItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2938A63A1E00000000 + + isa + PBXFileReference + name + SettingsSearchRecentItem.swift + path + Sources/Search/SettingsSearchRecentItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DF26A52500000000 + + isa + PBXFileReference + name + SettingsSearchRecentQueries.swift + path + Sources/Search/SettingsSearchRecentQueries.swift + sourceTree + SOURCE_ROOT + + 1DD70E292F4FF16000000000 + + isa + PBXFileReference + name + SettingsSearchResultItem.swift + path + Sources/Search/SettingsSearchResultItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E73DF58000000000 + + isa + PBXFileReference + name + SettingsSearchableItems.swift + path + Sources/Search/SettingsSearchableItems.swift + sourceTree + SOURCE_ROOT + + B401C979935F51C800000000 + + isa + PBXGroup + name + Search + path + Sources/Search + sourceTree + SOURCE_ROOT + children + + 1DD70E29DE4899A300000000 + 1DD70E2938A63A1E00000000 + 1DD70E29DF26A52500000000 + 1DD70E292F4FF16000000000 + 1DD70E29E73DF58000000000 + + + 1DD70E29A2D132C000000000 + + isa + PBXFileReference + name + ArchivedStickerPacksController.swift + path + Sources/Stickers/ArchivedStickerPacksController.swift + sourceTree + SOURCE_ROOT + + 1DD70E292988B50C00000000 + + isa + PBXFileReference + name + FeaturedStickerPacksController.swift + path + Sources/Stickers/FeaturedStickerPacksController.swift + sourceTree + SOURCE_ROOT + + 1DD70E297950FA1800000000 + + isa + PBXFileReference + name + InstalledStickerPacksController.swift + path + Sources/Stickers/InstalledStickerPacksController.swift + sourceTree + SOURCE_ROOT + + B401C9795F2682F600000000 + + isa + PBXGroup + name + Stickers + path + Sources/Stickers + sourceTree + SOURCE_ROOT + children + + 1DD70E29A2D132C000000000 + 1DD70E292988B50C00000000 + 1DD70E297950FA1800000000 + + + 1DD70E297D502A9800000000 + + isa + PBXFileReference + name + TermsOfServiceController.swift + path + Sources/Terms of Service/TermsOfServiceController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FCF079BA00000000 + + isa + PBXFileReference + name + TermsOfServiceControllerNode.swift + path + Sources/Terms of Service/TermsOfServiceControllerNode.swift + sourceTree + SOURCE_ROOT + + B401C979801D29A500000000 + + isa + PBXGroup + name + Terms of Service + path + Sources/Terms of Service + sourceTree + SOURCE_ROOT + children + + 1DD70E297D502A9800000000 + 1DD70E29FCF079BA00000000 + + + 1DD70E29CA466CC400000000 + + isa + PBXFileReference + name + CustomWallpaperPicker.swift + path + Sources/Themes/CustomWallpaperPicker.swift + sourceTree + SOURCE_ROOT + + 1DD70E2942938DA300000000 + + isa + PBXFileReference + name + SettingsThemeWallpaperNode.swift + path + Sources/Themes/SettingsThemeWallpaperNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B9A2B33E00000000 + + isa + PBXFileReference + name + ThemeAccentColorActionSheet.swift + path + Sources/Themes/ThemeAccentColorActionSheet.swift + sourceTree + SOURCE_ROOT + + 1DD70E29EF5534B100000000 + + isa + PBXFileReference + name + ThemeAccentColorController.swift + path + Sources/Themes/ThemeAccentColorController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2972C0CF5300000000 + + isa + PBXFileReference + name + ThemeAccentColorControllerNode.swift + path + Sources/Themes/ThemeAccentColorControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A72D9BA400000000 + + isa + PBXFileReference + name + ThemeAutoNightSettingsController.swift + path + Sources/Themes/ThemeAutoNightSettingsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E290AE1C14F00000000 + + isa + PBXFileReference + name + ThemeAutoNightTimeSelectionActionSheet.swift + path + Sources/Themes/ThemeAutoNightTimeSelectionActionSheet.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FBBDB6C000000000 + + isa + PBXFileReference + name + ThemeColorsGridController.swift + path + Sources/Themes/ThemeColorsGridController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2962E5AE3300000000 + + isa + PBXFileReference + name + ThemeColorsGridControllerItem.swift + path + Sources/Themes/ThemeColorsGridControllerItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2933EBB1E200000000 + + isa + PBXFileReference + name + ThemeColorsGridControllerNode.swift + path + Sources/Themes/ThemeColorsGridControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D2CC37F000000000 + + isa + PBXFileReference + name + ThemeGridController.swift + path + Sources/Themes/ThemeGridController.swift + sourceTree + SOURCE_ROOT + + 1DD70E291F70176300000000 + + isa + PBXFileReference + name + ThemeGridControllerItem.swift + path + Sources/Themes/ThemeGridControllerItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F0761B1200000000 + + isa + PBXFileReference + name + ThemeGridControllerNode.swift + path + Sources/Themes/ThemeGridControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B98C823F00000000 + + isa + PBXFileReference + name + ThemeGridSearchColorsItem.swift + path + Sources/Themes/ThemeGridSearchColorsItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E291CBB5A2900000000 + + isa + PBXFileReference + name + ThemeGridSearchContentNode.swift + path + Sources/Themes/ThemeGridSearchContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C1FEE9EF00000000 + + isa + PBXFileReference + name + ThemeGridSearchItem.swift + path + Sources/Themes/ThemeGridSearchItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A67F2CCE00000000 + + isa + PBXFileReference + name + ThemeGridSelectionPanelNode.swift + path + Sources/Themes/ThemeGridSelectionPanelNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29905A054000000000 + + isa + PBXFileReference + name + ThemePreviewController.swift + path + Sources/Themes/ThemePreviewController.swift + sourceTree + SOURCE_ROOT + + 1DD70E296CBCC06200000000 + + isa + PBXFileReference + name + ThemePreviewControllerNode.swift + path + Sources/Themes/ThemePreviewControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2934FABB8500000000 + + isa + PBXFileReference + name + ThemeSettingsAccentColorItem.swift + path + Sources/Themes/ThemeSettingsAccentColorItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DF8F21C600000000 + + isa + PBXFileReference + name + ThemeSettingsAppIconItem.swift + path + Sources/Themes/ThemeSettingsAppIconItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D1B3D5B500000000 + + isa + PBXFileReference + name + ThemeSettingsBrightnessItem.swift + path + Sources/Themes/ThemeSettingsBrightnessItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E2972B4275C00000000 + + isa + PBXFileReference + name + ThemeSettingsChatPreviewItem.swift + path + Sources/Themes/ThemeSettingsChatPreviewItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DFCA424D00000000 + + isa + PBXFileReference + name + ThemeSettingsController.swift + path + Sources/Themes/ThemeSettingsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D4FFA29400000000 + + isa + PBXFileReference + name + ThemeSettingsFontSizeItem.swift + path + Sources/Themes/ThemeSettingsFontSizeItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E292EE20B9500000000 + + isa + PBXFileReference + name + ThemeSettingsThemeItem.swift + path + Sources/Themes/ThemeSettingsThemeItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E295B47136A00000000 + + isa + PBXFileReference + name + WallpaperColorPanelNode.swift + path + Sources/Themes/WallpaperColorPanelNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DA6D2B1600000000 + + isa + PBXFileReference + name + WallpaperColorPickerNode.swift + path + Sources/Themes/WallpaperColorPickerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E294815785900000000 + + isa + PBXFileReference + name + WallpaperCropNode.swift + path + Sources/Themes/WallpaperCropNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29275D6C7100000000 + + isa + PBXFileReference + name + WallpaperGalleryController.swift + path + Sources/Themes/WallpaperGalleryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A48E332700000000 + + isa + PBXFileReference + name + WallpaperGalleryDecorationNode.swift + path + Sources/Themes/WallpaperGalleryDecorationNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E299876F2A800000000 + + isa + PBXFileReference + name + WallpaperGalleryItem.swift + path + Sources/Themes/WallpaperGalleryItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F740BBD200000000 + + isa + PBXFileReference + name + WallpaperGalleryToolbarNode.swift + path + Sources/Themes/WallpaperGalleryToolbarNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2950969F1D00000000 + + isa + PBXFileReference + name + WallpaperPatternPanelNode.swift + path + Sources/Themes/WallpaperPatternPanelNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B8BED86600000000 + + isa + PBXFileReference + name + WallpaperSearchRecentQueries.swift + path + Sources/Themes/WallpaperSearchRecentQueries.swift + sourceTree + SOURCE_ROOT + + B401C97995402FEA00000000 + + isa + PBXGroup + name + Themes + path + Sources/Themes + sourceTree + SOURCE_ROOT + children + + 1DD70E29CA466CC400000000 + 1DD70E2942938DA300000000 + 1DD70E29B9A2B33E00000000 + 1DD70E29EF5534B100000000 + 1DD70E2972C0CF5300000000 + 1DD70E29A72D9BA400000000 + 1DD70E290AE1C14F00000000 + 1DD70E29FBBDB6C000000000 + 1DD70E2962E5AE3300000000 + 1DD70E2933EBB1E200000000 + 1DD70E29D2CC37F000000000 + 1DD70E291F70176300000000 + 1DD70E29F0761B1200000000 + 1DD70E29B98C823F00000000 + 1DD70E291CBB5A2900000000 + 1DD70E29C1FEE9EF00000000 + 1DD70E29A67F2CCE00000000 + 1DD70E29905A054000000000 + 1DD70E296CBCC06200000000 + 1DD70E2934FABB8500000000 + 1DD70E29DF8F21C600000000 + 1DD70E29D1B3D5B500000000 + 1DD70E2972B4275C00000000 + 1DD70E29DFCA424D00000000 + 1DD70E29D4FFA29400000000 + 1DD70E292EE20B9500000000 + 1DD70E295B47136A00000000 + 1DD70E29DA6D2B1600000000 + 1DD70E294815785900000000 + 1DD70E29275D6C7100000000 + 1DD70E29A48E332700000000 + 1DD70E299876F2A800000000 + 1DD70E29F740BBD200000000 + 1DD70E2950969F1D00000000 + 1DD70E29B8BED86600000000 + + + 1DD70E299BD65F5300000000 + + isa + PBXFileReference + name + WatchSettingsController.swift + path + Sources/Watch/WatchSettingsController.swift + sourceTree + SOURCE_ROOT + + B401C97904F7D4AF00000000 + + isa + PBXGroup + name + Watch + path + Sources/Watch + sourceTree + SOURCE_ROOT + children + + 1DD70E299BD65F5300000000 + + + 1DD70E295C2EDE4900000000 + + isa + PBXFileReference + name + AccountUtils.swift + path + Sources/AccountUtils.swift + sourceTree + SOURCE_ROOT + + 1DD70E296C0A7AD800000000 + + isa + PBXFileReference + name + BlurredImageNode.swift + path + Sources/BlurredImageNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E297EC9B2A100000000 + + isa + PBXFileReference + name + CachedFaqInstantPage.swift + path + Sources/CachedFaqInstantPage.swift + sourceTree + SOURCE_ROOT + + 1DD70E29231E3C5500000000 + + isa + PBXFileReference + name + ChangePhoneNumberCodeController.swift + path + Sources/ChangePhoneNumberCodeController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CE5F5FC800000000 + + isa + PBXFileReference + name + ChangePhoneNumberController.swift + path + Sources/ChangePhoneNumberController.swift + sourceTree + SOURCE_ROOT + + 1DD70E291C0196EA00000000 + + isa + PBXFileReference + name + ChangePhoneNumberControllerNode.swift + path + Sources/ChangePhoneNumberControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B2E4C1A600000000 + + isa + PBXFileReference + name + ChangePhoneNumberIntroController.swift + path + Sources/ChangePhoneNumberIntroController.swift + sourceTree + SOURCE_ROOT + + 1DD70E294031FE9A00000000 + + isa + PBXFileReference + name + DebugAccountsController.swift + path + Sources/DebugAccountsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29593C8D9400000000 + + isa + PBXFileReference + name + DebugController.swift + path + Sources/DebugController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E31D6BCE00000000 + + isa + PBXFileReference + name + EditSettingsController.swift + path + Sources/EditSettingsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E2913DCCEF500000000 + + isa + PBXFileReference + name + LogoutOptionsController.swift + path + Sources/LogoutOptionsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A27BE59200000000 + + isa + PBXFileReference + name + OpenSettings.swift + path + Sources/OpenSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29EF15E7A400000000 + + isa + PBXFileReference + name + SettingsController.swift + path + Sources/SettingsController.swift + sourceTree + SOURCE_ROOT + + 1DD70E295D2D8B6400000000 + + isa + PBXFileReference + name + TabBarAccountSwitchController.swift + path + Sources/TabBarAccountSwitchController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FA58948600000000 + + isa + PBXFileReference + name + TabBarAccountSwitchControllerNode.swift + path + Sources/TabBarAccountSwitchControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29AA8F868800000000 + + isa + PBXFileReference + name + UsernameSetupController.swift + path + Sources/UsernameSetupController.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C979E13BD9BC00000000 + B401C9790AB0B6C400000000 + B401C979F5742BCC00000000 + B401C9797B75C4C800000000 + B401C979A728414100000000 + B401C979935F51C800000000 + B401C9795F2682F600000000 + B401C979801D29A500000000 + B401C97995402FEA00000000 + B401C97904F7D4AF00000000 + 1DD70E295C2EDE4900000000 + 1DD70E296C0A7AD800000000 + 1DD70E297EC9B2A100000000 + 1DD70E29231E3C5500000000 + 1DD70E29CE5F5FC800000000 + 1DD70E291C0196EA00000000 + 1DD70E29B2E4C1A600000000 + 1DD70E294031FE9A00000000 + 1DD70E29593C8D9400000000 + 1DD70E29E31D6BCE00000000 + 1DD70E291289FAA500000000 + 1DD70E2913DCCEF500000000 + 1DD70E29A27BE59200000000 + 1DD70E29EF15E7A400000000 + 1DD70E295D2D8B6400000000 + 1DD70E29FA58948600000000 + 1DD70E29AA8F868800000000 + + + B401C9797696261700000000 + + isa + PBXGroup + name + SettingsUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9797696261700000000 + + + E7A30F04B34055D000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B34055D000000000 + + E7A30F046643094600000000 + + isa + PBXBuildFile + fileRef + 1DD70E296643094600000000 + + E7A30F0491129E4C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2991129E4C00000000 + + E7A30F0479C8627B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2979C8627B00000000 + + E7A30F04D53B9EF800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D53B9EF800000000 + + E7A30F0484A799B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A799B200000000 + + E7A30F043EB09D8D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293EB09D8D00000000 + + E7A30F048B70ABB000000000 + + isa + PBXBuildFile + fileRef + 1DD70E298B70ABB000000000 + + E7A30F04E2224A3900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E2224A3900000000 + + E7A30F04595A27D500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29595A27D500000000 + + E7A30F04E1C128FF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E1C128FF00000000 + + E7A30F04D147ADCC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D147ADCC00000000 + + E7A30F0479467C2200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2979467C2200000000 + + E7A30F0498DDE2B800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2998DDE2B800000000 + + E7A30F04CBD2D56700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBD2D56700000000 + + E7A30F0417489B5500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2917489B5500000000 + + E7A30F0469501A5800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2969501A5800000000 + + E7A30F0403F2897A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2903F2897A00000000 + + E7A30F04B9DFD9CF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B9DFD9CF00000000 + + E7A30F0403669CFD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2903669CFD00000000 + + E7A30F046091158700000000 + + isa + PBXBuildFile + fileRef + 1DD70E296091158700000000 + + E7A30F04B4ED2B2800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4ED2B2800000000 + + E7A30F0489377CD400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2989377CD400000000 + + E7A30F04A5EEC66B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A5EEC66B00000000 + + E7A30F0492180E7800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2992180E7800000000 + + E7A30F04C96DE7E200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C96DE7E200000000 + + E7A30F04A5A5D00200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A5A5D00200000000 + + E7A30F047C88F99900000000 + + isa + PBXBuildFile + fileRef + 1DD70E297C88F99900000000 + + E7A30F04FB5A9E3400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FB5A9E3400000000 + + E7A30F042A1CD44600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292A1CD44600000000 + + E7A30F0452091EF800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2952091EF800000000 + + E7A30F04BA7CEF3800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA7CEF3800000000 + + E7A30F04BB138E0200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BB138E0200000000 + + E7A30F04EEEAEF8500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EEEAEF8500000000 + + E7A30F047BE7988100000000 + + isa + PBXBuildFile + fileRef + 1DD70E297BE7988100000000 + + E7A30F04B997391000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B997391000000000 + + E7A30F04A54B014500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54B014500000000 + + E7A30F04691631E700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29691631E700000000 + + E7A30F0459C0115000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2959C0115000000000 + + E7A30F049E87B00300000000 + + isa + PBXBuildFile + fileRef + 1DD70E299E87B00300000000 + + E7A30F04421B856500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29421B856500000000 + + E7A30F0403BC291D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2903BC291D00000000 + + E7A30F0413D735D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2913D735D800000000 + + E7A30F04DE4899A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DE4899A300000000 + + E7A30F0438A63A1E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2938A63A1E00000000 + + E7A30F04DF26A52500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF26A52500000000 + + E7A30F042F4FF16000000000 + + isa + PBXBuildFile + fileRef + 1DD70E292F4FF16000000000 + + E7A30F04E73DF58000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E73DF58000000000 + + E7A30F04A2D132C000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A2D132C000000000 + + E7A30F042988B50C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292988B50C00000000 + + E7A30F047950FA1800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297950FA1800000000 + + E7A30F047D502A9800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297D502A9800000000 + + E7A30F04FCF079BA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FCF079BA00000000 + + E7A30F04CA466CC400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CA466CC400000000 + + E7A30F0442938DA300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2942938DA300000000 + + E7A30F04B9A2B33E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B9A2B33E00000000 + + E7A30F04EF5534B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EF5534B100000000 + + E7A30F0472C0CF5300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2972C0CF5300000000 + + E7A30F04A72D9BA400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A72D9BA400000000 + + E7A30F040AE1C14F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290AE1C14F00000000 + + E7A30F04FBBDB6C000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FBBDB6C000000000 + + E7A30F0462E5AE3300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2962E5AE3300000000 + + E7A30F0433EBB1E200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2933EBB1E200000000 + + E7A30F04D2CC37F000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D2CC37F000000000 + + E7A30F041F70176300000000 + + isa + PBXBuildFile + fileRef + 1DD70E291F70176300000000 + + E7A30F04F0761B1200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0761B1200000000 + + E7A30F04B98C823F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B98C823F00000000 + + E7A30F041CBB5A2900000000 + + isa + PBXBuildFile + fileRef + 1DD70E291CBB5A2900000000 + + E7A30F04C1FEE9EF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C1FEE9EF00000000 + + E7A30F04A67F2CCE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A67F2CCE00000000 + + E7A30F04905A054000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29905A054000000000 + + E7A30F046CBCC06200000000 + + isa + PBXBuildFile + fileRef + 1DD70E296CBCC06200000000 + + E7A30F0434FABB8500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2934FABB8500000000 + + E7A30F04DF8F21C600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF8F21C600000000 + + E7A30F04D1B3D5B500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D1B3D5B500000000 + + E7A30F0472B4275C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2972B4275C00000000 + + E7A30F04DFCA424D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DFCA424D00000000 + + E7A30F04D4FFA29400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D4FFA29400000000 + + E7A30F042EE20B9500000000 + + isa + PBXBuildFile + fileRef + 1DD70E292EE20B9500000000 + + E7A30F045B47136A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295B47136A00000000 + + E7A30F04DA6D2B1600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DA6D2B1600000000 + + E7A30F044815785900000000 + + isa + PBXBuildFile + fileRef + 1DD70E294815785900000000 + + E7A30F04275D6C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29275D6C7100000000 + + E7A30F04A48E332700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A48E332700000000 + + E7A30F049876F2A800000000 + + isa + PBXBuildFile + fileRef + 1DD70E299876F2A800000000 + + E7A30F04F740BBD200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F740BBD200000000 + + E7A30F0450969F1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2950969F1D00000000 + + E7A30F04B8BED86600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B8BED86600000000 + + E7A30F049BD65F5300000000 + + isa + PBXBuildFile + fileRef + 1DD70E299BD65F5300000000 + + E7A30F045C2EDE4900000000 + + isa + PBXBuildFile + fileRef + 1DD70E295C2EDE4900000000 + + E7A30F046C0A7AD800000000 + + isa + PBXBuildFile + fileRef + 1DD70E296C0A7AD800000000 + + E7A30F047EC9B2A100000000 + + isa + PBXBuildFile + fileRef + 1DD70E297EC9B2A100000000 + + E7A30F04231E3C5500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29231E3C5500000000 + + E7A30F04CE5F5FC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE5F5FC800000000 + + E7A30F041C0196EA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291C0196EA00000000 + + E7A30F04B2E4C1A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B2E4C1A600000000 + + E7A30F044031FE9A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E294031FE9A00000000 + + E7A30F04593C8D9400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29593C8D9400000000 + + E7A30F04E31D6BCE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E31D6BCE00000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F0413DCCEF500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2913DCCEF500000000 + + E7A30F04A27BE59200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A27BE59200000000 + + E7A30F04EF15E7A400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EF15E7A400000000 + + E7A30F045D2D8B6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E295D2D8B6400000000 + + E7A30F04FA58948600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FA58948600000000 + + E7A30F04AA8F868800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AA8F868800000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04B34055D000000000 + E7A30F046643094600000000 + E7A30F0491129E4C00000000 + E7A30F0479C8627B00000000 + E7A30F04D53B9EF800000000 + E7A30F0484A799B200000000 + E7A30F043EB09D8D00000000 + E7A30F048B70ABB000000000 + E7A30F04E2224A3900000000 + E7A30F04595A27D500000000 + E7A30F04E1C128FF00000000 + E7A30F04D147ADCC00000000 + E7A30F0479467C2200000000 + E7A30F0498DDE2B800000000 + E7A30F04CBD2D56700000000 + E7A30F0417489B5500000000 + E7A30F0469501A5800000000 + E7A30F0403F2897A00000000 + E7A30F04B9DFD9CF00000000 + E7A30F0403669CFD00000000 + E7A30F046091158700000000 + E7A30F04B4ED2B2800000000 + E7A30F0489377CD400000000 + E7A30F04A5EEC66B00000000 + E7A30F0492180E7800000000 + E7A30F04C96DE7E200000000 + E7A30F04A5A5D00200000000 + E7A30F047C88F99900000000 + E7A30F04FB5A9E3400000000 + E7A30F042A1CD44600000000 + E7A30F0452091EF800000000 + E7A30F04BA7CEF3800000000 + E7A30F04BB138E0200000000 + E7A30F04EEEAEF8500000000 + E7A30F047BE7988100000000 + E7A30F04B997391000000000 + E7A30F04A54B014500000000 + E7A30F04691631E700000000 + E7A30F0459C0115000000000 + E7A30F049E87B00300000000 + E7A30F04421B856500000000 + E7A30F0403BC291D00000000 + E7A30F0413D735D800000000 + E7A30F04DE4899A300000000 + E7A30F0438A63A1E00000000 + E7A30F04DF26A52500000000 + E7A30F042F4FF16000000000 + E7A30F04E73DF58000000000 + E7A30F04A2D132C000000000 + E7A30F042988B50C00000000 + E7A30F047950FA1800000000 + E7A30F047D502A9800000000 + E7A30F04FCF079BA00000000 + E7A30F04CA466CC400000000 + E7A30F0442938DA300000000 + E7A30F04B9A2B33E00000000 + E7A30F04EF5534B100000000 + E7A30F0472C0CF5300000000 + E7A30F04A72D9BA400000000 + E7A30F040AE1C14F00000000 + E7A30F04FBBDB6C000000000 + E7A30F0462E5AE3300000000 + E7A30F0433EBB1E200000000 + E7A30F04D2CC37F000000000 + E7A30F041F70176300000000 + E7A30F04F0761B1200000000 + E7A30F04B98C823F00000000 + E7A30F041CBB5A2900000000 + E7A30F04C1FEE9EF00000000 + E7A30F04A67F2CCE00000000 + E7A30F04905A054000000000 + E7A30F046CBCC06200000000 + E7A30F0434FABB8500000000 + E7A30F04DF8F21C600000000 + E7A30F04D1B3D5B500000000 + E7A30F0472B4275C00000000 + E7A30F04DFCA424D00000000 + E7A30F04D4FFA29400000000 + E7A30F042EE20B9500000000 + E7A30F045B47136A00000000 + E7A30F04DA6D2B1600000000 + E7A30F044815785900000000 + E7A30F04275D6C7100000000 + E7A30F04A48E332700000000 + E7A30F049876F2A800000000 + E7A30F04F740BBD200000000 + E7A30F0450969F1D00000000 + E7A30F04B8BED86600000000 + E7A30F049BD65F5300000000 + E7A30F045C2EDE4900000000 + E7A30F046C0A7AD800000000 + E7A30F047EC9B2A100000000 + E7A30F04231E3C5500000000 + E7A30F04CE5F5FC800000000 + E7A30F041C0196EA00000000 + E7A30F04B2E4C1A600000000 + E7A30F044031FE9A00000000 + E7A30F04593C8D9400000000 + E7A30F04E31D6BCE00000000 + E7A30F041289FAA500000000 + E7A30F0413DCCEF500000000 + E7A30F04A27BE59200000000 + E7A30F04EF15E7A400000000 + E7A30F045D2D8B6400000000 + E7A30F04FA58948600000000 + E7A30F04AA8F868800000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F046A100F7B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296A100F7B00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + E7A30F0488BAAFC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2988BAAFC800000000 + + E7A30F0438C0E4C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2938C0E4C800000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04FD72F45600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FD72F45600000000 + + E7A30F04EA9CBB5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA9CBB5B00000000 + + E7A30F0407DC840B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2907DC840B00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04B6F47D1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B6F47D1F00000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F049A24C4DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299A24C4DE00000000 + + E7A30F0431752C6000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2931752C6000000000 + + E7A30F041328E99400000000 + + isa + PBXBuildFile + fileRef + 1DD70E291328E99400000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + E7A30F041631B91900000000 + + isa + PBXBuildFile + fileRef + 1DD70E291631B91900000000 + + E7A30F04524F478E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29524F478E00000000 + + E7A30F04DF758A8500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF758A8500000000 + + E7A30F042F91702000000000 + + isa + PBXBuildFile + fileRef + 1DD70E292F91702000000000 + + E7A30F04CED1620500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CED1620500000000 + + E7A30F04E220F5E800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E220F5E800000000 + + E7A30F04BBAF750C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BBAF750C00000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F042969635400000000 + + isa + PBXBuildFile + fileRef + 1DD70E292969635400000000 + + E7A30F0443136EC600000000 + + isa + PBXBuildFile + fileRef + 1DD70E2943136EC600000000 + + E7A30F04AE67341000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AE67341000000000 + + E7A30F046DFD63C200000000 + + isa + PBXBuildFile + fileRef + 1DD70E296DFD63C200000000 + + E7A30F0415F6A49D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2915F6A49D00000000 + + E7A30F04016F454200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29016F454200000000 + + E7A30F04AF00DC4900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AF00DC4900000000 + + E7A30F04CF967D4300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CF967D4300000000 + + E7A30F046A346AC200000000 + + isa + PBXBuildFile + fileRef + 1DD70E296A346AC200000000 + + E7A30F04C7E0F39600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7E0F39600000000 + + E7A30F04A6BAE8A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A6BAE8A300000000 + + E7A30F04F29DEA1400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F29DEA1400000000 + + E7A30F04D1EB356900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D1EB356900000000 + + E7A30F04F8FF5A6500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F8FF5A6500000000 + + E7A30F0447B6256000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2947B6256000000000 + + E7A30F04B5051C0E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B5051C0E00000000 + + E7A30F049B97462A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299B97462A00000000 + + E7A30F042995DF8400000000 + + isa + PBXBuildFile + fileRef + 1DD70E292995DF8400000000 + + E7A30F0452137F3500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2952137F3500000000 + + E7A30F04E102CFE100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E102CFE100000000 + + E7A30F046BF0672C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296BF0672C00000000 + + E7A30F04866F6A0400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29866F6A0400000000 + + E7A30F047394725200000000 + + isa + PBXBuildFile + fileRef + 1DD70E297394725200000000 + + E7A30F04F2CA340700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F2CA340700000000 + + E7A30F0405A95CB400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2905A95CB400000000 + + E7A30F045C00B78600000000 + + isa + PBXBuildFile + fileRef + 1DD70E295C00B78600000000 + + E7A30F04C6E517A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C6E517A300000000 + + E7A30F0468BAC05A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2968BAC05A00000000 + + E7A30F046C39078B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296C39078B00000000 + + E7A30F04A889192100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A889192100000000 + + E7A30F04A3994F2C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A3994F2C00000000 + + E7A30F0437C1167400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2937C1167400000000 + + E7A30F04D0DBC52A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D0DBC52A00000000 + + E7A30F0479E58A0000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2979E58A0000000000 + + E7A30F049856EB2400000000 + + isa + PBXBuildFile + fileRef + 1DD70E299856EB2400000000 + + E7A30F04005B963600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29005B963600000000 + + E7A30F04300245BE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29300245BE00000000 + + E7A30F04C7165FF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7165FF900000000 + + E7A30F04AA32BBC600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AA32BBC600000000 + + E7A30F0407DC815E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2907DC815E00000000 + + E7A30F04F18DE1D900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F18DE1D900000000 + + E7A30F04DA3FBAD600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DA3FBAD600000000 + + E7A30F04D81471E200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D81471E200000000 + + E7A30F04A7E1559B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A7E1559B00000000 + + E7A30F04DF12291E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF12291E00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04BF0846EE00000000 + E7A30F04F523B9DE00000000 + E7A30F046A100F7B00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F042417E0B200000000 + E7A30F040DD17C7100000000 + E7A30F0488BAAFC800000000 + E7A30F0438C0E4C800000000 + E7A30F04AC43662400000000 + E7A30F04FD72F45600000000 + E7A30F04EA9CBB5B00000000 + E7A30F0407DC840B00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F047AB043C800000000 + E7A30F04B6F47D1F00000000 + E7A30F04D233F68C00000000 + E7A30F049A24C4DE00000000 + E7A30F0431752C6000000000 + E7A30F041328E99400000000 + E7A30F041E16CC6C00000000 + E7A30F043E4DE92B00000000 + E7A30F041D58331200000000 + E7A30F04597BAFBB00000000 + E7A30F0481AE180900000000 + E7A30F041631B91900000000 + E7A30F04524F478E00000000 + E7A30F04DF758A8500000000 + E7A30F042F91702000000000 + E7A30F04CED1620500000000 + E7A30F04E220F5E800000000 + E7A30F04BBAF750C00000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04490601EB00000000 + E7A30F042969635400000000 + E7A30F0443136EC600000000 + E7A30F04AE67341000000000 + E7A30F046DFD63C200000000 + E7A30F0415F6A49D00000000 + E7A30F04016F454200000000 + E7A30F04AF00DC4900000000 + E7A30F04CF967D4300000000 + E7A30F046A346AC200000000 + E7A30F04C7E0F39600000000 + E7A30F04A6BAE8A300000000 + E7A30F04F29DEA1400000000 + E7A30F04D1EB356900000000 + E7A30F04F8FF5A6500000000 + E7A30F0447B6256000000000 + E7A30F04B5051C0E00000000 + E7A30F049B97462A00000000 + E7A30F042995DF8400000000 + E7A30F0452137F3500000000 + E7A30F04E102CFE100000000 + E7A30F046BF0672C00000000 + E7A30F04866F6A0400000000 + E7A30F047394725200000000 + E7A30F04F2CA340700000000 + E7A30F0405A95CB400000000 + E7A30F045C00B78600000000 + E7A30F04C6E517A300000000 + E7A30F0468BAC05A00000000 + E7A30F046C39078B00000000 + E7A30F04A889192100000000 + E7A30F04A3994F2C00000000 + E7A30F0437C1167400000000 + E7A30F04D0DBC52A00000000 + E7A30F0479E58A0000000000 + E7A30F049856EB2400000000 + E7A30F04005B963600000000 + E7A30F04300245BE00000000 + E7A30F04C7165FF900000000 + E7A30F04AA32BBC600000000 + E7A30F0407DC815E00000000 + E7A30F04F18DE1D900000000 + E7A30F04DA3FBAD600000000 + E7A30F04D81471E200000000 + E7A30F04A7E1559B00000000 + E7A30F04DF12291E00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E295C15C1BE00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2992CEE1A800000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2906658D0A00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E7696261700000000 + + isa + PBXNativeTarget + name + SettingsUI + productName + SettingsUI + productReference + 1DD70E290456054F00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847937696261700000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E7696261700000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847937696261700000000 + + \ No newline at end of file diff --git a/submodules/SettingsUI/SettingsUI.xcodeproj/xcshareddata/xcschemes/SettingsUI.xcscheme b/submodules/SettingsUI/SettingsUI.xcodeproj/xcshareddata/xcschemes/SettingsUI.xcscheme new file mode 100644 index 0000000000..d3a17b5692 --- /dev/null +++ b/submodules/SettingsUI/SettingsUI.xcodeproj/xcshareddata/xcschemes/SettingsUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/SettingsUI/Sources/Data and Storage/ProxyListSettingsController.swift b/submodules/SettingsUI/Sources/Data and Storage/ProxyListSettingsController.swift index 05d4320b44..7e2e994a18 100644 --- a/submodules/SettingsUI/Sources/Data and Storage/ProxyListSettingsController.swift +++ b/submodules/SettingsUI/Sources/Data and Storage/ProxyListSettingsController.swift @@ -5,7 +5,11 @@ import SwiftSignalKit import Postbox import TelegramCore import TelegramPresentationData +#if BUCK +import MtProtoKit +#else import MtProtoKitDynamic +#endif import ItemListUI import AccountContext import UrlEscaping diff --git a/submodules/ShareController/BUCK b/submodules/ShareController/BUCK new file mode 100644 index 0000000000..2773dfd0e9 --- /dev/null +++ b/submodules/ShareController/BUCK @@ -0,0 +1,28 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "ShareController", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/SaveToCameraRoll:SaveToCameraRoll", + "//submodules/StickerResources:StickerResources", + "//submodules/UrlEscaping:UrlEscaping", + "//submodules/LocalizedPeerData:LocalizedPeerData", + "//submodules/ActionSheetPeerItem:ActionSheetPeerItem", + "//submodules/ChatListSearchRecentPeersNode:ChatListSearchRecentPeersNode", + "//submodules/PeerPresenceStatusManager:PeerPresenceStatusManager", + "//submodules/SelectablePeerNode:SelectablePeerNode", + "//submodules/RadialStatusNode:RadialStatusNode", + "//submodules/ActivityIndicator:ActivityIndicator", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/ShareController/ShareController.xcodeproj/project.pbxproj b/submodules/ShareController/ShareController.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..ab7d3440bd --- /dev/null +++ b/submodules/ShareController/ShareController.xcodeproj/project.pbxproj @@ -0,0 +1,1325 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29DCC60E9A00000000 + + isa + PBXFileReference + name + ShareController-Debug.xcconfig + path + ../../buck-out/gen/submodules/ShareController/ShareController-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A89F678400000000 + + isa + PBXFileReference + name + ShareController-Profile.xcconfig + path + ../../buck-out/gen/submodules/ShareController/ShareController-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E291C3612E600000000 + + isa + PBXFileReference + name + ShareController-Release.xcconfig + path + ../../buck-out/gen/submodules/ShareController/ShareController-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29DCC60E9A00000000 + 1DD70E29A89F678400000000 + 1DD70E291C3612E600000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E297AB043C800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29097DBE9200000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2981AE180900000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E299AA2B4EE00000000 + + isa + PBXFileReference + name + ShareActionButtonNode.swift + path + Sources/ShareActionButtonNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A5E42C6E00000000 + + isa + PBXFileReference + name + ShareContentContainerNode.swift + path + Sources/ShareContentContainerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E291064AF2000000000 + + isa + PBXFileReference + name + ShareController.swift + path + Sources/ShareController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29319F7A4200000000 + + isa + PBXFileReference + name + ShareControllerNode.swift + path + Sources/ShareControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C3EFDD7B00000000 + + isa + PBXFileReference + name + ShareControllerPeerGridItem.swift + path + Sources/ShareControllerPeerGridItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E1A98A3900000000 + + isa + PBXFileReference + name + ShareControllerRecentPeersGridItem.swift + path + Sources/ShareControllerRecentPeersGridItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F0B8ACF600000000 + + isa + PBXFileReference + name + ShareInputFieldNode.swift + path + Sources/ShareInputFieldNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E299E394ACB00000000 + + isa + PBXFileReference + name + ShareLoadingContainerNode.swift + path + Sources/ShareLoadingContainerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E299F27025600000000 + + isa + PBXFileReference + name + SharePeersContainerNode.swift + path + Sources/SharePeersContainerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C72DA09300000000 + + isa + PBXFileReference + name + ShareSearchBarNode.swift + path + Sources/ShareSearchBarNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B726E0C100000000 + + isa + PBXFileReference + name + ShareSearchContainerNode.swift + path + Sources/ShareSearchContainerNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E299AA2B4EE00000000 + 1DD70E29A5E42C6E00000000 + 1DD70E291064AF2000000000 + 1DD70E29319F7A4200000000 + 1DD70E29C3EFDD7B00000000 + 1DD70E29E1A98A3900000000 + 1DD70E29F0B8ACF600000000 + 1DD70E299E394ACB00000000 + 1DD70E299F27025600000000 + 1DD70E29C72DA09300000000 + 1DD70E29B726E0C100000000 + + + B401C9790C093CBB00000000 + + isa + PBXGroup + name + ShareController + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9790C093CBB00000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F049AA2B4EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299AA2B4EE00000000 + + E7A30F04A5E42C6E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A5E42C6E00000000 + + E7A30F041064AF2000000000 + + isa + PBXBuildFile + fileRef + 1DD70E291064AF2000000000 + + E7A30F04319F7A4200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29319F7A4200000000 + + E7A30F04C3EFDD7B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C3EFDD7B00000000 + + E7A30F04E1A98A3900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E1A98A3900000000 + + E7A30F04F0B8ACF600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0B8ACF600000000 + + E7A30F049E394ACB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299E394ACB00000000 + + E7A30F049F27025600000000 + + isa + PBXBuildFile + fileRef + 1DD70E299F27025600000000 + + E7A30F04C72DA09300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C72DA09300000000 + + E7A30F04B726E0C100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B726E0C100000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F049AA2B4EE00000000 + E7A30F04A5E42C6E00000000 + E7A30F041064AF2000000000 + E7A30F04319F7A4200000000 + E7A30F04C3EFDD7B00000000 + E7A30F04E1A98A3900000000 + E7A30F04F0B8ACF600000000 + E7A30F049E394ACB00000000 + E7A30F049F27025600000000 + E7A30F04C72DA09300000000 + E7A30F04B726E0C100000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F04D6F14E1000000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0484A59C1D00000000 + E7A30F04A54A195300000000 + E7A30F041E16CC6C00000000 + E7A30F04BF0846EE00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F0471ED41B100000000 + E7A30F04AC43662400000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04D233F68C00000000 + E7A30F043E4DE92B00000000 + E7A30F045915423000000000 + E7A30F04F33FDAC300000000 + E7A30F0451398CF200000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F04597BAFBB00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29DCC60E9A00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29A89F678400000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E291C3612E600000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E0C093CBB00000000 + + isa + PBXNativeTarget + name + ShareController + productName + ShareController + productReference + 1DD70E2981AE180900000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847930C093CBB00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E0C093CBB00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847930C093CBB00000000 + + \ No newline at end of file diff --git a/submodules/ShareController/ShareController.xcodeproj/xcshareddata/xcschemes/ShareController.xcscheme b/submodules/ShareController/ShareController.xcodeproj/xcshareddata/xcschemes/ShareController.xcscheme new file mode 100644 index 0000000000..d7d0458aba --- /dev/null +++ b/submodules/ShareController/ShareController.xcodeproj/xcshareddata/xcschemes/ShareController.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ShareItems/ShareItems.xcodeproj/project.pbxproj b/submodules/ShareItems/ShareItems.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..970377327a --- /dev/null +++ b/submodules/ShareItems/ShareItems.xcodeproj/project.pbxproj @@ -0,0 +1,883 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E295820975400000000 + + isa + PBXFileReference + name + ShareItems-Debug.xcconfig + path + ../../buck-out/gen/submodules/ShareItems/ShareItems-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B77AA9BE00000000 + + isa + PBXFileReference + name + ShareItems-Profile.xcconfig + path + ../../buck-out/gen/submodules/ShareItems/ShareItems-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292B11552000000000 + + isa + PBXFileReference + name + ShareItems-Release.xcconfig + path + ../../buck-out/gen/submodules/ShareItems/ShareItems-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E295820975400000000 + 1DD70E29B77AA9BE00000000 + 1DD70E292B11552000000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29C6E517A300000000 + + isa + PBXFileReference + name + libImageCompression.a + path + libImageCompression.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2968BAC05A00000000 + + isa + PBXFileReference + name + libLocalMediaResources.a + path + libLocalMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29313E7AE000000000 + + isa + PBXFileReference + name + libPdf.a + path + libPdf.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29C6E517A300000000 + 1DD70E2968BAC05A00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29313E7AE000000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E2949B1D3F900000000 + + isa + PBXFileReference + name + libShareItems.a + path + libShareItems.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2949B1D3F900000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2970BC8D2600000000 + + isa + PBXFileReference + name + ShareItems.swift + path + Sources/ShareItems.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E2367BF600000000 + + isa + PBXFileReference + name + TGContactModel.h + path + Sources/TGContactModel.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E2367BFB00000000 + + isa + PBXFileReference + name + TGContactModel.m + path + Sources/TGContactModel.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29D88B678E00000000 + + isa + PBXFileReference + name + TGItemProviderSignals.h + path + Sources/TGItemProviderSignals.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29D88B679300000000 + + isa + PBXFileReference + name + TGItemProviderSignals.m + path + Sources/TGItemProviderSignals.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2976741A0400000000 + + isa + PBXFileReference + name + TGShareLocationSignals.h + path + Sources/TGShareLocationSignals.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2976741A0900000000 + + isa + PBXFileReference + name + TGShareLocationSignals.m + path + Sources/TGShareLocationSignals.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2970BC8D2600000000 + 1DD70E29E2367BF600000000 + 1DD70E29E2367BFB00000000 + 1DD70E29D88B678E00000000 + 1DD70E29D88B679300000000 + 1DD70E2976741A0400000000 + 1DD70E2976741A0900000000 + + + B401C9790B09974100000000 + + isa + PBXGroup + name + ShareItems + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9790B09974100000000 + + + E7A30F0470BC8D2600000000 + + isa + PBXBuildFile + fileRef + 1DD70E2970BC8D2600000000 + + E7A30F04E2367BFB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E2367BFB00000000 + + E7A30F04D88B679300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D88B679300000000 + + E7A30F0476741A0900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2976741A0900000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0470BC8D2600000000 + E7A30F04E2367BFB00000000 + E7A30F04D88B679300000000 + E7A30F0476741A0900000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04C6E517A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C6E517A300000000 + + E7A30F0468BAC05A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2968BAC05A00000000 + + E7A30F04313E7AE000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29313E7AE000000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04C6E517A300000000 + E7A30F0468BAC05A00000000 + E7A30F04313E7AE000000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E295820975400000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29B77AA9BE00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E292B11552000000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E0B09974100000000 + + isa + PBXNativeTarget + name + ShareItems + productName + ShareItems + productReference + 1DD70E2949B1D3F900000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847930B09974100000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E0B09974100000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847930B09974100000000 + + \ No newline at end of file diff --git a/submodules/ShareItems/ShareItems.xcodeproj/xcshareddata/xcschemes/ShareItems.xcscheme b/submodules/ShareItems/ShareItems.xcodeproj/xcshareddata/xcschemes/ShareItems.xcscheme new file mode 100644 index 0000000000..38f8203646 --- /dev/null +++ b/submodules/ShareItems/ShareItems.xcodeproj/xcshareddata/xcschemes/ShareItems.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/SinglePhoneInputNode/BUCK b/submodules/SinglePhoneInputNode/BUCK new file mode 100644 index 0000000000..e54b1d349c --- /dev/null +++ b/submodules/SinglePhoneInputNode/BUCK @@ -0,0 +1,17 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "SinglePhoneInputNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramCore:TelegramCore#shared", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/SinglePhoneInputNode/SinglePhoneInputNode.xcodeproj/project.pbxproj b/submodules/SinglePhoneInputNode/SinglePhoneInputNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..e062668865 --- /dev/null +++ b/submodules/SinglePhoneInputNode/SinglePhoneInputNode.xcodeproj/project.pbxproj @@ -0,0 +1,401 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29452B6E4F00000000 + + isa + PBXFileReference + name + SinglePhoneInputNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/SinglePhoneInputNode/SinglePhoneInputNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E298D2BADF900000000 + + isa + PBXFileReference + name + SinglePhoneInputNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/SinglePhoneInputNode/SinglePhoneInputNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2900C2595B00000000 + + isa + PBXFileReference + name + SinglePhoneInputNode-Release.xcconfig + path + ../../buck-out/gen/submodules/SinglePhoneInputNode/SinglePhoneInputNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29452B6E4F00000000 + 1DD70E298D2BADF900000000 + 1DD70E2900C2595B00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29119CDA0700000000 + + + 1DD70E29135DFEDE00000000 + + isa + PBXFileReference + name + libSinglePhoneInputNode.a + path + libSinglePhoneInputNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29135DFEDE00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E290123DFCB00000000 + + isa + PBXFileReference + name + SinglePhoneInputNode.swift + path + Sources/SinglePhoneInputNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E290123DFCB00000000 + + + B401C979057909A600000000 + + isa + PBXGroup + name + SinglePhoneInputNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979057909A600000000 + + + E7A30F040123DFCB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290123DFCB00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F040123DFCB00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04119CDA0700000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29452B6E4F00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E298D2BADF900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2900C2595B00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E057909A600000000 + + isa + PBXNativeTarget + name + SinglePhoneInputNode + productName + SinglePhoneInputNode + productReference + 1DD70E29135DFEDE00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793057909A600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E057909A600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793057909A600000000 + + \ No newline at end of file diff --git a/submodules/SinglePhoneInputNode/SinglePhoneInputNode.xcodeproj/xcshareddata/xcschemes/SinglePhoneInputNode.xcscheme b/submodules/SinglePhoneInputNode/SinglePhoneInputNode.xcodeproj/xcshareddata/xcschemes/SinglePhoneInputNode.xcscheme new file mode 100644 index 0000000000..613689e866 --- /dev/null +++ b/submodules/SinglePhoneInputNode/SinglePhoneInputNode.xcodeproj/xcshareddata/xcschemes/SinglePhoneInputNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/SolidRoundedButtonNode/BUCK b/submodules/SolidRoundedButtonNode/BUCK new file mode 100644 index 0000000000..4dc8eed041 --- /dev/null +++ b/submodules/SolidRoundedButtonNode/BUCK @@ -0,0 +1,17 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "SolidRoundedButtonNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/SolidRoundedButtonNode/SolidRoundedButtonNode.xcodeproj/project.pbxproj b/submodules/SolidRoundedButtonNode/SolidRoundedButtonNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..868ea5c409 --- /dev/null +++ b/submodules/SolidRoundedButtonNode/SolidRoundedButtonNode.xcodeproj/project.pbxproj @@ -0,0 +1,511 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E296A462E5F00000000 + + isa + PBXFileReference + name + SolidRoundedButtonNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/SolidRoundedButtonNode/SolidRoundedButtonNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D696AA0900000000 + + isa + PBXFileReference + name + SolidRoundedButtonNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/SolidRoundedButtonNode/SolidRoundedButtonNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E294A2D556B00000000 + + isa + PBXFileReference + name + SolidRoundedButtonNode-Release.xcconfig + path + ../../buck-out/gen/submodules/SolidRoundedButtonNode/SolidRoundedButtonNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E296A462E5F00000000 + 1DD70E29D696AA0900000000 + 1DD70E294A2D556B00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29524F478E00000000 + + isa + PBXFileReference + name + libSolidRoundedButtonNode.a + path + libSolidRoundedButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29524F478E00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E299ABDCDBB00000000 + + isa + PBXFileReference + name + SolidRoundedButtonNode.swift + path + Sources/SolidRoundedButtonNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E299ABDCDBB00000000 + + + B401C9799CD82B9600000000 + + isa + PBXGroup + name + SolidRoundedButtonNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9799CD82B9600000000 + + + E7A30F049ABDCDBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299ABDCDBB00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F049ABDCDBB00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E296A462E5F00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29D696AA0900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E294A2D556B00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E9CD82B9600000000 + + isa + PBXNativeTarget + name + SolidRoundedButtonNode + productName + SolidRoundedButtonNode + productReference + 1DD70E29524F478E00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847939CD82B9600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E9CD82B9600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847939CD82B9600000000 + + \ No newline at end of file diff --git a/submodules/SolidRoundedButtonNode/SolidRoundedButtonNode.xcodeproj/xcshareddata/xcschemes/SolidRoundedButtonNode.xcscheme b/submodules/SolidRoundedButtonNode/SolidRoundedButtonNode.xcodeproj/xcshareddata/xcschemes/SolidRoundedButtonNode.xcscheme new file mode 100644 index 0000000000..79593186a5 --- /dev/null +++ b/submodules/SolidRoundedButtonNode/SolidRoundedButtonNode.xcodeproj/xcshareddata/xcschemes/SolidRoundedButtonNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/StickerPackPreviewUI/BUCK b/submodules/StickerPackPreviewUI/BUCK new file mode 100644 index 0000000000..a74f7bdfdb --- /dev/null +++ b/submodules/StickerPackPreviewUI/BUCK @@ -0,0 +1,29 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "StickerPackPreviewUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/ShareController:ShareController", + "//submodules/StickerResources:StickerResources", + "//submodules/AlertUI:AlertUI", + "//submodules/TextFormat:TextFormat", + "//submodules/MergeLists:MergeLists", + "//submodules/ActivityIndicator:ActivityIndicator", + "//submodules/AnimationUI:AnimationUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/StickerPackPreviewUI/StickerPackPreviewUI.xcodeproj/project.pbxproj b/submodules/StickerPackPreviewUI/StickerPackPreviewUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..11ac8c47d4 --- /dev/null +++ b/submodules/StickerPackPreviewUI/StickerPackPreviewUI.xcodeproj/project.pbxproj @@ -0,0 +1,1249 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E299CB4FBCF00000000 + + isa + PBXFileReference + name + StickerPackPreviewUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/StickerPackPreviewUI/StickerPackPreviewUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292887DB7900000000 + + isa + PBXFileReference + name + StickerPackPreviewUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/StickerPackPreviewUI/StickerPackPreviewUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E299C1E86DB00000000 + + isa + PBXFileReference + name + StickerPackPreviewUI-Release.xcconfig + path + ../../buck-out/gen/submodules/StickerPackPreviewUI/StickerPackPreviewUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E299CB4FBCF00000000 + 1DD70E292887DB7900000000 + 1DD70E299C1E86DB00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F523B9DE00000000 + + isa + PBXFileReference + name + libAlertUI.a + path + libAlertUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E29F523B9DE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E297AB043C800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29AC43662400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + + + 1DD70E2907DC815E00000000 + + isa + PBXFileReference + name + libStickerPackPreviewUI.a + path + libStickerPackPreviewUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2907DC815E00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E297D8EA77300000000 + + isa + PBXFileReference + name + StickerPackPreviewController.swift + path + Sources/StickerPackPreviewController.swift + sourceTree + SOURCE_ROOT + + 1DD70E298D9F111500000000 + + isa + PBXFileReference + name + StickerPackPreviewControllerNode.swift + path + Sources/StickerPackPreviewControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E293931761000000000 + + isa + PBXFileReference + name + StickerPackPreviewGridItem.swift + path + Sources/StickerPackPreviewGridItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D8C3474C00000000 + + isa + PBXFileReference + name + StickerPreviewController.swift + path + Sources/StickerPreviewController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FB5E1C6E00000000 + + isa + PBXFileReference + name + StickerPreviewControllerNode.swift + path + Sources/StickerPreviewControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D2964E1800000000 + + isa + PBXFileReference + name + StickerPreviewPeekContent.swift + path + Sources/StickerPreviewPeekContent.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E297D8EA77300000000 + 1DD70E298D9F111500000000 + 1DD70E293931761000000000 + 1DD70E29D8C3474C00000000 + 1DD70E29FB5E1C6E00000000 + 1DD70E29D2964E1800000000 + + + B401C979D4B62C2600000000 + + isa + PBXGroup + name + StickerPackPreviewUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979D4B62C2600000000 + + + E7A30F047D8EA77300000000 + + isa + PBXBuildFile + fileRef + 1DD70E297D8EA77300000000 + + E7A30F048D9F111500000000 + + isa + PBXBuildFile + fileRef + 1DD70E298D9F111500000000 + + E7A30F043931761000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293931761000000000 + + E7A30F04D8C3474C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D8C3474C00000000 + + E7A30F04FB5E1C6E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FB5E1C6E00000000 + + E7A30F04D2964E1800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D2964E1800000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F047D8EA77300000000 + E7A30F048D9F111500000000 + E7A30F043931761000000000 + E7A30F04D8C3474C00000000 + E7A30F04FB5E1C6E00000000 + E7A30F04D2964E1800000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04F523B9DE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F523B9DE00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04BF0846EE00000000 + E7A30F04F523B9DE00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04C37F741500000000 + E7A30F04A54A195300000000 + E7A30F041E16CC6C00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F04AC43662400000000 + E7A30F047AB043C800000000 + E7A30F04D233F68C00000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F04597BAFBB00000000 + E7A30F0481AE180900000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E299CB4FBCF00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E292887DB7900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E299C1E86DB00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04ED4B62C2600000000 + + isa + PBXNativeTarget + name + StickerPackPreviewUI + productName + StickerPackPreviewUI + productReference + 1DD70E2907DC815E00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793D4B62C2600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04ED4B62C2600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793D4B62C2600000000 + + \ No newline at end of file diff --git a/submodules/StickerPackPreviewUI/StickerPackPreviewUI.xcodeproj/xcshareddata/xcschemes/StickerPackPreviewUI.xcscheme b/submodules/StickerPackPreviewUI/StickerPackPreviewUI.xcodeproj/xcshareddata/xcschemes/StickerPackPreviewUI.xcscheme new file mode 100644 index 0000000000..a8d0f8b8c2 --- /dev/null +++ b/submodules/StickerPackPreviewUI/StickerPackPreviewUI.xcodeproj/xcshareddata/xcschemes/StickerPackPreviewUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/StickerResources/BUCK b/submodules/StickerResources/BUCK index 77687ed03d..8ec4b5ce08 100644 --- a/submodules/StickerResources/BUCK +++ b/submodules/StickerResources/BUCK @@ -14,7 +14,7 @@ static_library( "//submodules/Tuples:Tuples", "//submodules/MediaResources:MediaResources", "//submodules/TelegramUIPreferences:TelegramUIPreferences", - "//submodules/WebP:WebP", + "//submodules/WebP:WebPImage", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/StickerResources/StickerResources.xcodeproj/project.pbxproj b/submodules/StickerResources/StickerResources.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..9e87b55ae0 --- /dev/null +++ b/submodules/StickerResources/StickerResources.xcodeproj/project.pbxproj @@ -0,0 +1,533 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29DD17CA2D00000000 + + isa + PBXFileReference + name + StickerResources-Debug.xcconfig + path + ../../buck-out/gen/submodules/StickerResources/StickerResources-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29DB708A5700000000 + + isa + PBXFileReference + name + StickerResources-Profile.xcconfig + path + ../../buck-out/gen/submodules/StickerResources/StickerResources-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E294F0735B900000000 + + isa + PBXFileReference + name + StickerResources-Release.xcconfig + path + ../../buck-out/gen/submodules/StickerResources/StickerResources-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29DD17CA2D00000000 + 1DD70E29DB708A5700000000 + 1DD70E294F0735B900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E292395015100000000 + 1DD70E29CD296A8300000000 + + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E293594DCC000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29EB8D122D00000000 + + isa + PBXFileReference + name + StickerResources.swift + path + Sources/StickerResources.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29EB8D122D00000000 + + + B401C97979C82D8800000000 + + isa + PBXGroup + name + StickerResources + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C97979C82D8800000000 + + + E7A30F04EB8D122D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EB8D122D00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04EB8D122D00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04D6F14E1000000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F04CD296A8300000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29DD17CA2D00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29DB708A5700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E294F0735B900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E79C82D8800000000 + + isa + PBXNativeTarget + name + StickerResources + productName + StickerResources + productReference + 1DD70E293594DCC000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479379C82D8800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E79C82D8800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479379C82D8800000000 + + \ No newline at end of file diff --git a/submodules/StickerResources/StickerResources.xcodeproj/xcshareddata/xcschemes/StickerResources.xcscheme b/submodules/StickerResources/StickerResources.xcodeproj/xcshareddata/xcschemes/StickerResources.xcscheme new file mode 100644 index 0000000000..f1af54932a --- /dev/null +++ b/submodules/StickerResources/StickerResources.xcodeproj/xcshareddata/xcschemes/StickerResources.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/Stripe/BUCK b/submodules/Stripe/BUCK index 43502f6ee6..1d88f6909f 100644 --- a/submodules/Stripe/BUCK +++ b/submodules/Stripe/BUCK @@ -23,6 +23,7 @@ static_library( "Sources/STPBankAccountParams.h", "Sources/STPBINRange.h", "Sources/STPCardValidator.h", + "Sources/STPCardValidationState.h", "Sources/STPCustomer.h", "Sources/STPFormEncodable.h", "Sources/STPPaymentMethod.h", @@ -31,6 +32,7 @@ static_library( "Sources/STPSource.h", "Sources/STPBlocks.h", "Sources/StripeError.h", + "Sources/STPBackendAPIAdapter.h", ], frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", diff --git a/submodules/Stripe/Stripe.xcodeproj/project.pbxproj b/submodules/Stripe/Stripe.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..10d65d6777 --- /dev/null +++ b/submodules/Stripe/Stripe.xcodeproj/project.pbxproj @@ -0,0 +1,1447 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E292FE164A800000000 + + isa + PBXFileReference + name + Stripe-Debug.xcconfig + path + ../../buck-out/gen/submodules/Stripe/Stripe-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A23D721200000000 + + isa + PBXFileReference + name + Stripe-Profile.xcconfig + path + ../../buck-out/gen/submodules/Stripe/Stripe-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2915D41D7400000000 + + isa + PBXFileReference + name + Stripe-Release.xcconfig + path + ../../buck-out/gen/submodules/Stripe/Stripe-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E292FE164A800000000 + 1DD70E29A23D721200000000 + 1DD70E2915D41D7400000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E2933A638A500000000 + + isa + PBXFileReference + name + libStripe.a + path + libStripe.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2933A638A500000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29E49F7E7700000000 + + isa + PBXFileReference + name + NSDictionary+Stripe.h + path + Sources/NSDictionary+Stripe.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E49F7E7C00000000 + + isa + PBXFileReference + name + NSDictionary+Stripe.m + path + Sources/NSDictionary+Stripe.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29290DFEDC00000000 + + isa + PBXFileReference + name + NSString+Stripe.h + path + Sources/NSString+Stripe.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29290DFEE100000000 + + isa + PBXFileReference + name + NSString+Stripe.m + path + Sources/NSString+Stripe.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2926677BD300000000 + + isa + PBXFileReference + name + NSString+Stripe_CardBrands.h + path + Sources/NSString+Stripe_CardBrands.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2926677BD800000000 + + isa + PBXFileReference + name + NSString+Stripe_CardBrands.m + path + Sources/NSString+Stripe_CardBrands.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29F3AB3D2700000000 + + isa + PBXFileReference + name + PKPayment+Stripe.h + path + Sources/PKPayment+Stripe.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29F3AB3D2C00000000 + + isa + PBXFileReference + name + PKPayment+Stripe.m + path + Sources/PKPayment+Stripe.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29D68F4CFD00000000 + + isa + PBXFileReference + name + STPAPIClient+ApplePay.h + path + Sources/STPAPIClient+ApplePay.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29D68F4D0200000000 + + isa + PBXFileReference + name + STPAPIClient+ApplePay.m + path + Sources/STPAPIClient+ApplePay.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E295F1C048800000000 + + isa + PBXFileReference + name + STPAPIClient+Private.h + path + Sources/STPAPIClient+Private.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E298BF229B000000000 + + isa + PBXFileReference + name + STPAPIClient.h + path + Sources/STPAPIClient.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E298BF229B500000000 + + isa + PBXFileReference + name + STPAPIClient.m + path + Sources/STPAPIClient.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2939D5483E00000000 + + isa + PBXFileReference + name + STPAPIPostRequest.h + path + Sources/STPAPIPostRequest.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2939D5484300000000 + + isa + PBXFileReference + name + STPAPIPostRequest.m + path + Sources/STPAPIPostRequest.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2910157A5F00000000 + + isa + PBXFileReference + name + STPAPIResponseDecodable.h + path + Sources/STPAPIResponseDecodable.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E295C29339F00000000 + + isa + PBXFileReference + name + STPAddress.h + path + Sources/STPAddress.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E295C2933A400000000 + + isa + PBXFileReference + name + STPAddress.m + path + Sources/STPAddress.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29E8CF345F00000000 + + isa + PBXFileReference + name + STPBINRange.h + path + Sources/STPBINRange.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E8CF346400000000 + + isa + PBXFileReference + name + STPBINRange.m + path + Sources/STPBINRange.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29F7CEEAB400000000 + + isa + PBXFileReference + name + STPBackendAPIAdapter.h + path + Sources/STPBackendAPIAdapter.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29BB33143C00000000 + + isa + PBXFileReference + name + STPBankAccount.h + path + Sources/STPBankAccount.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29BB33144100000000 + + isa + PBXFileReference + name + STPBankAccount.m + path + Sources/STPBankAccount.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29CD38EEE200000000 + + isa + PBXFileReference + name + STPBankAccountParams.h + path + Sources/STPBankAccountParams.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29CD38EEE700000000 + + isa + PBXFileReference + name + STPBankAccountParams.m + path + Sources/STPBankAccountParams.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E299FDFB12F00000000 + + isa + PBXFileReference + name + STPBlocks.h + path + Sources/STPBlocks.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2927E623F900000000 + + isa + PBXFileReference + name + STPCard.h + path + Sources/STPCard.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2927E623FE00000000 + + isa + PBXFileReference + name + STPCard.m + path + Sources/STPCard.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2972F5ED0200000000 + + isa + PBXFileReference + name + STPCardBrand.h + path + Sources/STPCardBrand.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29331E7CDF00000000 + + isa + PBXFileReference + name + STPCardParams.h + path + Sources/STPCardParams.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29331E7CE400000000 + + isa + PBXFileReference + name + STPCardParams.m + path + Sources/STPCardParams.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E294176F39300000000 + + isa + PBXFileReference + name + STPCardValidationState.h + path + Sources/STPCardValidationState.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2914C05D8D00000000 + + isa + PBXFileReference + name + STPCardValidator.h + path + Sources/STPCardValidator.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2914C05D9200000000 + + isa + PBXFileReference + name + STPCardValidator.m + path + Sources/STPCardValidator.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E297AD01DC700000000 + + isa + PBXFileReference + name + STPCustomer.h + path + Sources/STPCustomer.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E297AD01DCC00000000 + + isa + PBXFileReference + name + STPCustomer.m + path + Sources/STPCustomer.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2947448D9400000000 + + isa + PBXFileReference + name + STPDelegateProxy.h + path + Sources/STPDelegateProxy.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2947448D9900000000 + + isa + PBXFileReference + name + STPDelegateProxy.m + path + Sources/STPDelegateProxy.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2900351B6C00000000 + + isa + PBXFileReference + name + STPDispatchFunctions.h + path + Sources/STPDispatchFunctions.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2900351B7100000000 + + isa + PBXFileReference + name + STPDispatchFunctions.m + path + Sources/STPDispatchFunctions.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E297E1D445000000000 + + isa + PBXFileReference + name + STPFormEncodable.h + path + Sources/STPFormEncodable.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E3E6E1E300000000 + + isa + PBXFileReference + name + STPFormEncoder.h + path + Sources/STPFormEncoder.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E3E6E1E800000000 + + isa + PBXFileReference + name + STPFormEncoder.m + path + Sources/STPFormEncoder.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29ACC7D51400000000 + + isa + PBXFileReference + name + STPFormTextField.h + path + Sources/STPFormTextField.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29ACC7D51900000000 + + isa + PBXFileReference + name + STPFormTextField.m + path + Sources/STPFormTextField.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2946902EA100000000 + + isa + PBXFileReference + name + STPImageLibrary+Private.h + path + Sources/STPImageLibrary+Private.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2910BA7CC900000000 + + isa + PBXFileReference + name + STPImageLibrary.h + path + Sources/STPImageLibrary.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2910BA7CCE00000000 + + isa + PBXFileReference + name + STPImageLibrary.m + path + Sources/STPImageLibrary.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2954506B6000000000 + + isa + PBXFileReference + name + STPPaymentCardTextField.h + path + Sources/STPPaymentCardTextField.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2954506B6500000000 + + isa + PBXFileReference + name + STPPaymentCardTextField.m + path + Sources/STPPaymentCardTextField.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29808DD9B800000000 + + isa + PBXFileReference + name + STPPaymentCardTextFieldViewModel.h + path + Sources/STPPaymentCardTextFieldViewModel.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29808DD9BD00000000 + + isa + PBXFileReference + name + STPPaymentCardTextFieldViewModel.m + path + Sources/STPPaymentCardTextFieldViewModel.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29B49DF95100000000 + + isa + PBXFileReference + name + STPPaymentConfiguration+Private.h + path + Sources/STPPaymentConfiguration+Private.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E293DD5F77900000000 + + isa + PBXFileReference + name + STPPaymentConfiguration.h + path + Sources/STPPaymentConfiguration.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E293DD5F77E00000000 + + isa + PBXFileReference + name + STPPaymentConfiguration.m + path + Sources/STPPaymentConfiguration.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E292B0588B200000000 + + isa + PBXFileReference + name + STPPaymentMethod.h + path + Sources/STPPaymentMethod.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E293E04CEE400000000 + + isa + PBXFileReference + name + STPPhoneNumberValidator.h + path + Sources/STPPhoneNumberValidator.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E293E04CEE900000000 + + isa + PBXFileReference + name + STPPhoneNumberValidator.m + path + Sources/STPPhoneNumberValidator.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E295FDFE18500000000 + + isa + PBXFileReference + name + STPPostalCodeValidator.h + path + Sources/STPPostalCodeValidator.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E295FDFE18A00000000 + + isa + PBXFileReference + name + STPPostalCodeValidator.m + path + Sources/STPPostalCodeValidator.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E292F92FA8400000000 + + isa + PBXFileReference + name + STPSource.h + path + Sources/STPSource.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296FAADCA400000000 + + isa + PBXFileReference + name + STPToken.h + path + Sources/STPToken.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296FAADCA900000000 + + isa + PBXFileReference + name + STPToken.m + path + Sources/STPToken.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29E6887C1F00000000 + + isa + PBXFileReference + name + STPWeakStrongMacros.h + path + Sources/STPWeakStrongMacros.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2935C95CD500000000 + + isa + PBXFileReference + name + StripeError.h + path + Sources/StripeError.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2935C95CDA00000000 + + isa + PBXFileReference + name + StripeError.m + path + Sources/StripeError.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29E49F7E7700000000 + 1DD70E29E49F7E7C00000000 + 1DD70E29290DFEDC00000000 + 1DD70E29290DFEE100000000 + 1DD70E2926677BD300000000 + 1DD70E2926677BD800000000 + 1DD70E29F3AB3D2700000000 + 1DD70E29F3AB3D2C00000000 + 1DD70E29D68F4CFD00000000 + 1DD70E29D68F4D0200000000 + 1DD70E295F1C048800000000 + 1DD70E298BF229B000000000 + 1DD70E298BF229B500000000 + 1DD70E2939D5483E00000000 + 1DD70E2939D5484300000000 + 1DD70E2910157A5F00000000 + 1DD70E295C29339F00000000 + 1DD70E295C2933A400000000 + 1DD70E29E8CF345F00000000 + 1DD70E29E8CF346400000000 + 1DD70E29F7CEEAB400000000 + 1DD70E29BB33143C00000000 + 1DD70E29BB33144100000000 + 1DD70E29CD38EEE200000000 + 1DD70E29CD38EEE700000000 + 1DD70E299FDFB12F00000000 + 1DD70E2927E623F900000000 + 1DD70E2927E623FE00000000 + 1DD70E2972F5ED0200000000 + 1DD70E29331E7CDF00000000 + 1DD70E29331E7CE400000000 + 1DD70E294176F39300000000 + 1DD70E2914C05D8D00000000 + 1DD70E2914C05D9200000000 + 1DD70E297AD01DC700000000 + 1DD70E297AD01DCC00000000 + 1DD70E2947448D9400000000 + 1DD70E2947448D9900000000 + 1DD70E2900351B6C00000000 + 1DD70E2900351B7100000000 + 1DD70E297E1D445000000000 + 1DD70E29E3E6E1E300000000 + 1DD70E29E3E6E1E800000000 + 1DD70E29ACC7D51400000000 + 1DD70E29ACC7D51900000000 + 1DD70E2946902EA100000000 + 1DD70E2910BA7CC900000000 + 1DD70E2910BA7CCE00000000 + 1DD70E2954506B6000000000 + 1DD70E2954506B6500000000 + 1DD70E29808DD9B800000000 + 1DD70E29808DD9BD00000000 + 1DD70E29B49DF95100000000 + 1DD70E293DD5F77900000000 + 1DD70E293DD5F77E00000000 + 1DD70E292B0588B200000000 + 1DD70E293E04CEE400000000 + 1DD70E293E04CEE900000000 + 1DD70E295FDFE18500000000 + 1DD70E295FDFE18A00000000 + 1DD70E292F92FA8400000000 + 1DD70E296FAADCA400000000 + 1DD70E296FAADCA900000000 + 1DD70E29E6887C1F00000000 + 1DD70E2935C95CD500000000 + 1DD70E2935C95CDA00000000 + + + B401C979943A4C6D00000000 + + isa + PBXGroup + name + Stripe + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C979943A4C6D00000000 + + + E7A30F04E49F7E7C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E49F7E7C00000000 + + E7A30F04290DFEE100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29290DFEE100000000 + + E7A30F0426677BD800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2926677BD800000000 + + E7A30F04F3AB3D2C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F3AB3D2C00000000 + + E7A30F04D68F4D0200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D68F4D0200000000 + + E7A30F048BF229B500000000 + + isa + PBXBuildFile + fileRef + 1DD70E298BF229B500000000 + + E7A30F0439D5484300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2939D5484300000000 + + E7A30F045C2933A400000000 + + isa + PBXBuildFile + fileRef + 1DD70E295C2933A400000000 + + E7A30F04E8CF346400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E8CF346400000000 + + E7A30F04BB33144100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BB33144100000000 + + E7A30F04CD38EEE700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD38EEE700000000 + + E7A30F0427E623FE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2927E623FE00000000 + + E7A30F04331E7CE400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29331E7CE400000000 + + E7A30F0414C05D9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2914C05D9200000000 + + E7A30F047AD01DCC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AD01DCC00000000 + + E7A30F0447448D9900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2947448D9900000000 + + E7A30F0400351B7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2900351B7100000000 + + E7A30F04E3E6E1E800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E3E6E1E800000000 + + E7A30F04ACC7D51900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29ACC7D51900000000 + + E7A30F0410BA7CCE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2910BA7CCE00000000 + + E7A30F0454506B6500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2954506B6500000000 + + E7A30F04808DD9BD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29808DD9BD00000000 + + E7A30F043DD5F77E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293DD5F77E00000000 + + E7A30F043E04CEE900000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E04CEE900000000 + + E7A30F045FDFE18A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295FDFE18A00000000 + + E7A30F046FAADCA900000000 + + isa + PBXBuildFile + fileRef + 1DD70E296FAADCA900000000 + + E7A30F0435C95CDA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2935C95CDA00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04E49F7E7C00000000 + E7A30F04290DFEE100000000 + E7A30F0426677BD800000000 + E7A30F04F3AB3D2C00000000 + E7A30F04D68F4D0200000000 + E7A30F048BF229B500000000 + E7A30F0439D5484300000000 + E7A30F045C2933A400000000 + E7A30F04E8CF346400000000 + E7A30F04BB33144100000000 + E7A30F04CD38EEE700000000 + E7A30F0427E623FE00000000 + E7A30F04331E7CE400000000 + E7A30F0414C05D9200000000 + E7A30F047AD01DCC00000000 + E7A30F0447448D9900000000 + E7A30F0400351B7100000000 + E7A30F04E3E6E1E800000000 + E7A30F04ACC7D51900000000 + E7A30F0410BA7CCE00000000 + E7A30F0454506B6500000000 + E7A30F04808DD9BD00000000 + E7A30F043DD5F77E00000000 + E7A30F043E04CEE900000000 + E7A30F045FDFE18A00000000 + E7A30F046FAADCA900000000 + E7A30F0435C95CDA00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E292FE164A800000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29A23D721200000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2915D41D7400000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E943A4C6D00000000 + + isa + PBXNativeTarget + name + Stripe + productName + Stripe + productReference + 1DD70E2933A638A500000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793943A4C6D00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E943A4C6D00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793943A4C6D00000000 + + \ No newline at end of file diff --git a/submodules/Stripe/Stripe.xcodeproj/xcshareddata/xcschemes/Stripe.xcscheme b/submodules/Stripe/Stripe.xcodeproj/xcshareddata/xcschemes/Stripe.xcscheme new file mode 100644 index 0000000000..a49615a3c4 --- /dev/null +++ b/submodules/Stripe/Stripe.xcodeproj/xcshareddata/xcschemes/Stripe.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/SwipeToDismissGesture/BUCK b/submodules/SwipeToDismissGesture/BUCK new file mode 100644 index 0000000000..301beb14e2 --- /dev/null +++ b/submodules/SwipeToDismissGesture/BUCK @@ -0,0 +1,12 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "SwipeToDismissGesture", + srcs = glob([ + "Sources/**/*.swift", + ]), + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/SwipeToDismissGesture/SwipeToDismissGesture.xcodeproj/project.pbxproj b/submodules/SwipeToDismissGesture/SwipeToDismissGesture.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..b2d397501f --- /dev/null +++ b/submodules/SwipeToDismissGesture/SwipeToDismissGesture.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29783C584100000000 + + isa + PBXFileReference + name + SwipeToDismissGesture-Debug.xcconfig + path + ../../buck-out/gen/submodules/SwipeToDismissGesture/SwipeToDismissGesture-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E293FA9E36B00000000 + + isa + PBXFileReference + name + SwipeToDismissGesture-Profile.xcconfig + path + ../../buck-out/gen/submodules/SwipeToDismissGesture/SwipeToDismissGesture-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B3408ECD00000000 + + isa + PBXFileReference + name + SwipeToDismissGesture-Release.xcconfig + path + ../../buck-out/gen/submodules/SwipeToDismissGesture/SwipeToDismissGesture-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29783C584100000000 + 1DD70E293FA9E36B00000000 + 1DD70E29B3408ECD00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E296A346AC200000000 + + isa + PBXFileReference + name + libSwipeToDismissGesture.a + path + libSwipeToDismissGesture.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E296A346AC200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29AE3AFF5D00000000 + + isa + PBXFileReference + name + SwipeToDismissGestureRecognizer.swift + path + Sources/SwipeToDismissGestureRecognizer.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29AE3AFF5D00000000 + + + B401C9796C23B9F400000000 + + isa + PBXGroup + name + SwipeToDismissGesture + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C9796C23B9F400000000 + + + E7A30F04AE3AFF5D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AE3AFF5D00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04AE3AFF5D00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29783C584100000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E293FA9E36B00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29B3408ECD00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E6C23B9F400000000 + + isa + PBXNativeTarget + name + SwipeToDismissGesture + productName + SwipeToDismissGesture + productReference + 1DD70E296A346AC200000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847936C23B9F400000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E6C23B9F400000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847936C23B9F400000000 + + \ No newline at end of file diff --git a/submodules/SwipeToDismissGesture/SwipeToDismissGesture.xcodeproj/xcshareddata/xcschemes/SwipeToDismissGesture.xcscheme b/submodules/SwipeToDismissGesture/SwipeToDismissGesture.xcodeproj/xcshareddata/xcschemes/SwipeToDismissGesture.xcscheme new file mode 100644 index 0000000000..e9b82cbc69 --- /dev/null +++ b/submodules/SwipeToDismissGesture/SwipeToDismissGesture.xcodeproj/xcshareddata/xcschemes/SwipeToDismissGesture.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/SwitchNode/BUCK b/submodules/SwitchNode/BUCK new file mode 100644 index 0000000000..b23f2eee34 --- /dev/null +++ b/submodules/SwitchNode/BUCK @@ -0,0 +1,24 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "SwitchNode", + srcs = glob([ + "Sources/**/*.swift", + "Sources/*.m", + ]), + headers = glob([ + "Sources/*.h", + ], exclude = ["Sources/TelegramPresentationData.h"]), + exported_headers = glob([ + "Sources/*.h", + ], exclude = ["Sources/TelegramPresentationData.h"]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/LegacyComponents:LegacyComponents", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/SwitchNode/SwitchNode.xcodeproj/project.pbxproj b/submodules/SwitchNode/SwitchNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..eb3560d0b1 --- /dev/null +++ b/submodules/SwitchNode/SwitchNode.xcodeproj/project.pbxproj @@ -0,0 +1,393 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2968ACA27F00000000 + + isa + PBXFileReference + name + SwitchNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/SwitchNode/SwitchNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D530962900000000 + + isa + PBXFileReference + name + SwitchNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/SwitchNode/SwitchNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2948C7418B00000000 + + isa + PBXFileReference + name + SwitchNode-Release.xcconfig + path + ../../buck-out/gen/submodules/SwitchNode/SwitchNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2968ACA27F00000000 + 1DD70E29D530962900000000 + 1DD70E2948C7418B00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2925BBFEEE00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E290F66943400000000 + + isa + PBXFileReference + name + IconSwitchNode.swift + path + Sources/IconSwitchNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E294B0AFBF000000000 + + isa + PBXFileReference + name + SwitchNode.h + path + Sources/SwitchNode.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E290F66943400000000 + 1DD70E294B0AFBF000000000 + + + B401C979621BFB7600000000 + + isa + PBXGroup + name + SwitchNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979621BFB7600000000 + + + E7A30F040F66943400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F66943400000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F040F66943400000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2968ACA27F00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29D530962900000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2948C7418B00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E621BFB7600000000 + + isa + PBXNativeTarget + name + SwitchNode + productName + SwitchNode + productReference + 1DD70E2925BBFEEE00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793621BFB7600000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E621BFB7600000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793621BFB7600000000 + + \ No newline at end of file diff --git a/submodules/SwitchNode/SwitchNode.xcodeproj/xcshareddata/xcschemes/SwitchNode.xcscheme b/submodules/SwitchNode/SwitchNode.xcodeproj/xcshareddata/xcschemes/SwitchNode.xcscheme new file mode 100644 index 0000000000..99340a3804 --- /dev/null +++ b/submodules/SwitchNode/SwitchNode.xcodeproj/xcshareddata/xcschemes/SwitchNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramApi/TelegramApi.xcodeproj/project.pbxproj b/submodules/TelegramApi/TelegramApi.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..285a3cb487 --- /dev/null +++ b/submodules/TelegramApi/TelegramApi.xcodeproj/project.pbxproj @@ -0,0 +1,527 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29C8F1EA5C00000000 + + isa + PBXFileReference + name + TelegramApi-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramApi/TelegramApi-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2939435AC600000000 + + isa + PBXFileReference + name + TelegramApi-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramApi/TelegramApi-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29ACDA062800000000 + + isa + PBXFileReference + name + TelegramApi-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramApi/TelegramApi-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29C8F1EA5C00000000 + 1DD70E2939435AC600000000 + 1DD70E29ACDA062800000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29ABCC8E8700000000 + + isa + PBXFileReference + name + libTelegramApi.a + path + libTelegramApi.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29ABCC8E8700000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29C027F79B00000000 + + isa + PBXFileReference + name + Api0.swift + path + Sources/Api0.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F50E32DC00000000 + + isa + PBXFileReference + name + Api1.swift + path + Sources/Api1.swift + sourceTree + SOURCE_ROOT + + 1DD70E2929F46E1D00000000 + + isa + PBXFileReference + name + Api2.swift + path + Sources/Api2.swift + sourceTree + SOURCE_ROOT + + 1DD70E295EDAA95E00000000 + + isa + PBXFileReference + name + Api3.swift + path + Sources/Api3.swift + sourceTree + SOURCE_ROOT + + 1DD70E295041E30500000000 + + isa + PBXFileReference + name + Buffer.swift + path + Sources/Buffer.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C9F1BE5D00000000 + + isa + PBXFileReference + name + DeserializeFunctionResponse.swift + path + Sources/DeserializeFunctionResponse.swift + sourceTree + SOURCE_ROOT + + 1DD70E294A2550B000000000 + + isa + PBXFileReference + name + SecretApiLayer101.swift + path + Sources/SecretApiLayer101.swift + sourceTree + SOURCE_ROOT + + 1DD70E292BCA0AEE00000000 + + isa + PBXFileReference + name + SecretApiLayer46.swift + path + Sources/SecretApiLayer46.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C4BADFC800000000 + + isa + PBXFileReference + name + SecretApiLayer73.swift + path + Sources/SecretApiLayer73.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DBADD8B600000000 + + isa + PBXFileReference + name + SecretApiLayer8.swift + path + Sources/SecretApiLayer8.swift + sourceTree + SOURCE_ROOT + + 1DD70E292046900E00000000 + + isa + PBXFileReference + name + TelegramApiLogger.swift + path + Sources/TelegramApiLogger.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29C027F79B00000000 + 1DD70E29F50E32DC00000000 + 1DD70E2929F46E1D00000000 + 1DD70E295EDAA95E00000000 + 1DD70E295041E30500000000 + 1DD70E29C9F1BE5D00000000 + 1DD70E294A2550B000000000 + 1DD70E292BCA0AEE00000000 + 1DD70E29C4BADFC800000000 + 1DD70E29DBADD8B600000000 + 1DD70E292046900E00000000 + + + B401C979D56D953900000000 + + isa + PBXGroup + name + TelegramApi + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C979D56D953900000000 + + + E7A30F04C027F79B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C027F79B00000000 + + E7A30F04F50E32DC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F50E32DC00000000 + + E7A30F0429F46E1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2929F46E1D00000000 + + E7A30F045EDAA95E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295EDAA95E00000000 + + E7A30F045041E30500000000 + + isa + PBXBuildFile + fileRef + 1DD70E295041E30500000000 + + E7A30F04C9F1BE5D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C9F1BE5D00000000 + + E7A30F044A2550B000000000 + + isa + PBXBuildFile + fileRef + 1DD70E294A2550B000000000 + + E7A30F042BCA0AEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292BCA0AEE00000000 + + E7A30F04C4BADFC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C4BADFC800000000 + + E7A30F04DBADD8B600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DBADD8B600000000 + + E7A30F042046900E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292046900E00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04C027F79B00000000 + E7A30F04F50E32DC00000000 + E7A30F0429F46E1D00000000 + E7A30F045EDAA95E00000000 + E7A30F045041E30500000000 + E7A30F04C9F1BE5D00000000 + E7A30F044A2550B000000000 + E7A30F042BCA0AEE00000000 + E7A30F04C4BADFC800000000 + E7A30F04DBADD8B600000000 + E7A30F042046900E00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29C8F1EA5C00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2939435AC600000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29ACDA062800000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04ED56D953900000000 + + isa + PBXNativeTarget + name + TelegramApi + productName + TelegramApi + productReference + 1DD70E29ABCC8E8700000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793D56D953900000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04ED56D953900000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793D56D953900000000 + + \ No newline at end of file diff --git a/submodules/TelegramApi/TelegramApi.xcodeproj/xcshareddata/xcschemes/TelegramApi.xcscheme b/submodules/TelegramApi/TelegramApi.xcodeproj/xcshareddata/xcschemes/TelegramApi.xcscheme new file mode 100644 index 0000000000..26d2784341 --- /dev/null +++ b/submodules/TelegramApi/TelegramApi.xcodeproj/xcshareddata/xcschemes/TelegramApi.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramAudio/TelegramAudio.xcodeproj/project.pbxproj b/submodules/TelegramAudio/TelegramAudio.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..b333447c13 --- /dev/null +++ b/submodules/TelegramAudio/TelegramAudio.xcodeproj/project.pbxproj @@ -0,0 +1,379 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E297711DCE000000000 + + isa + PBXFileReference + name + TelegramAudio-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramAudio/TelegramAudio-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29DF30BC4A00000000 + + isa + PBXFileReference + name + TelegramAudio-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramAudio/TelegramAudio-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2952C767AC00000000 + + isa + PBXFileReference + name + TelegramAudio-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramAudio/TelegramAudio-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E297711DCE000000000 + 1DD70E29DF30BC4A00000000 + 1DD70E2952C767AC00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29D65BA68200000000 + + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29F33FDAC300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2979D5066400000000 + + isa + PBXFileReference + name + ManagedAudioSession.swift + path + Sources/ManagedAudioSession.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2979D5066400000000 + + + B401C979305F6B3500000000 + + isa + PBXGroup + name + TelegramAudio + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979305F6B3500000000 + + + E7A30F0479D5066400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2979D5066400000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0479D5066400000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E297711DCE000000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29DF30BC4A00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2952C767AC00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E305F6B3500000000 + + isa + PBXNativeTarget + name + TelegramAudio + productName + TelegramAudio + productReference + 1DD70E29F33FDAC300000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793305F6B3500000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E305F6B3500000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793305F6B3500000000 + + \ No newline at end of file diff --git a/submodules/TelegramAudio/TelegramAudio.xcodeproj/xcshareddata/xcschemes/TelegramAudio.xcscheme b/submodules/TelegramAudio/TelegramAudio.xcodeproj/xcshareddata/xcschemes/TelegramAudio.xcscheme new file mode 100644 index 0000000000..ae47346042 --- /dev/null +++ b/submodules/TelegramAudio/TelegramAudio.xcodeproj/xcshareddata/xcschemes/TelegramAudio.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramBaseController/BUCK b/submodules/TelegramBaseController/BUCK new file mode 100644 index 0000000000..770a057809 --- /dev/null +++ b/submodules/TelegramBaseController/BUCK @@ -0,0 +1,25 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "TelegramBaseController", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/AvatarNode:AvatarNode", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/LiveLocationTimerNode:LiveLocationTimerNode", + "//submodules/AccountContext:AccountContext", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/OverlayStatusController:OverlayStatusController", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/TelegramBaseController/TelegramBaseController.xcodeproj/project.pbxproj b/submodules/TelegramBaseController/TelegramBaseController.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..2b946150ce --- /dev/null +++ b/submodules/TelegramBaseController/TelegramBaseController.xcodeproj/project.pbxproj @@ -0,0 +1,983 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E290A3D822700000000 + + isa + PBXFileReference + name + TelegramBaseController-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramBaseController/TelegramBaseController-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2956082BD100000000 + + isa + PBXFileReference + name + TelegramBaseController-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramBaseController/TelegramBaseController-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29C99ED73300000000 + + isa + PBXFileReference + name + TelegramBaseController-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramBaseController/TelegramBaseController-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E290A3D822700000000 + 1DD70E2956082BD100000000 + 1DD70E29C99ED73300000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292969635400000000 + + isa + PBXFileReference + name + libLiveLocationTimerNode.a + path + libLiveLocationTimerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BBAF750C00000000 + + isa + PBXFileReference + name + libOverlayStatusController.a + path + libOverlayStatusController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E292969635400000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29BBAF750C00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E2943136EC600000000 + + isa + PBXFileReference + name + libTelegramBaseController.a + path + libTelegramBaseController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2943136EC600000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29AC7A681500000000 + + isa + PBXFileReference + name + LocationBroadcastActionSheetItem.swift + path + Sources/LocationBroadcastActionSheetItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29CF9B32F700000000 + + isa + PBXFileReference + name + LocationBroadcastNavigationAccessoryPanel.swift + path + Sources/LocationBroadcastNavigationAccessoryPanel.swift + sourceTree + SOURCE_ROOT + + 1DD70E296FAA2F4900000000 + + isa + PBXFileReference + name + LocationBroadcastPanelWavesNode.swift + path + Sources/LocationBroadcastPanelWavesNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E293EEF272E00000000 + + isa + PBXFileReference + name + MediaNavigationAccessoryContainerNode.swift + path + Sources/MediaNavigationAccessoryContainerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E299D4716AE00000000 + + isa + PBXFileReference + name + MediaNavigationAccessoryHeaderNode.swift + path + Sources/MediaNavigationAccessoryHeaderNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A6AAC44F00000000 + + isa + PBXFileReference + name + MediaNavigationAccessoryPanel.swift + path + Sources/MediaNavigationAccessoryPanel.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B22B98F300000000 + + isa + PBXFileReference + name + TelegramBaseController.swift + path + Sources/TelegramBaseController.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29AC7A681500000000 + 1DD70E29CF9B32F700000000 + 1DD70E296FAA2F4900000000 + 1DD70E293EEF272E00000000 + 1DD70E299D4716AE00000000 + 1DD70E29A6AAC44F00000000 + 1DD70E29B22B98F300000000 + + + B401C979206CC0CE00000000 + + isa + PBXGroup + name + TelegramBaseController + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979206CC0CE00000000 + + + E7A30F04AC7A681500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC7A681500000000 + + E7A30F04CF9B32F700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CF9B32F700000000 + + E7A30F046FAA2F4900000000 + + isa + PBXBuildFile + fileRef + 1DD70E296FAA2F4900000000 + + E7A30F043EEF272E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293EEF272E00000000 + + E7A30F049D4716AE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D4716AE00000000 + + E7A30F04A6AAC44F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A6AAC44F00000000 + + E7A30F04B22B98F300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B22B98F300000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04AC7A681500000000 + E7A30F04CF9B32F700000000 + E7A30F046FAA2F4900000000 + E7A30F043EEF272E00000000 + E7A30F049D4716AE00000000 + E7A30F04A6AAC44F00000000 + E7A30F04B22B98F300000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F042969635400000000 + + isa + PBXBuildFile + fileRef + 1DD70E292969635400000000 + + E7A30F04BBAF750C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BBAF750C00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F042969635400000000 + E7A30F04BBAF750C00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E290A3D822700000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2956082BD100000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29C99ED73300000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E206CC0CE00000000 + + isa + PBXNativeTarget + name + TelegramBaseController + productName + TelegramBaseController + productReference + 1DD70E2943136EC600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793206CC0CE00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E206CC0CE00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793206CC0CE00000000 + + \ No newline at end of file diff --git a/submodules/TelegramBaseController/TelegramBaseController.xcodeproj/xcshareddata/xcschemes/TelegramBaseController.xcscheme b/submodules/TelegramBaseController/TelegramBaseController.xcodeproj/xcshareddata/xcschemes/TelegramBaseController.xcscheme new file mode 100644 index 0000000000..2a25df3828 --- /dev/null +++ b/submodules/TelegramBaseController/TelegramBaseController.xcodeproj/xcshareddata/xcschemes/TelegramBaseController.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramCallsUI/BUCK b/submodules/TelegramCallsUI/BUCK new file mode 100644 index 0000000000..fa4f7a6a92 --- /dev/null +++ b/submodules/TelegramCallsUI/BUCK @@ -0,0 +1,33 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "TelegramCallsUI", + srcs = glob([ + "Sources/**/*.swift", + "Sources/**/*.m", + ]), + headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/TelegramCallsUI.h"]), + exported_headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/TelegramCallsUI.h"]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/Display:Display#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/PhotoResources:PhotoResources", + "//submodules/TelegramNotices:TelegramNotices", + "//submodules/MediaPlayer:UniversalMediaPlayer", + "//submodules/DeviceAccess:DeviceAccess", + "//submodules/TelegramAudio:TelegramAudio", + "//submodules/TelegramVoip:TelegramVoip", + "//submodules/ItemListUI:ItemListUI", + "//submodules/OverlayStatusController:OverlayStatusController", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/TelegramCallsUI/TelegramCallsUI.xcodeproj/project.pbxproj b/submodules/TelegramCallsUI/TelegramCallsUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..b47144ff48 --- /dev/null +++ b/submodules/TelegramCallsUI/TelegramCallsUI.xcodeproj/project.pbxproj @@ -0,0 +1,1441 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29F00620ED00000000 + + isa + PBXFileReference + name + TelegramCallsUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramCallsUI/TelegramCallsUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29EC24311700000000 + + isa + PBXFileReference + name + TelegramCallsUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramCallsUI/TelegramCallsUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E295FBADC7900000000 + + isa + PBXFileReference + name + TelegramCallsUI-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramCallsUI/TelegramCallsUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29F00620ED00000000 + 1DD70E29EC24311700000000 + 1DD70E295FBADC7900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BBAF750C00000000 + + isa + PBXFileReference + name + libOverlayStatusController.a + path + libOverlayStatusController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2988BAAFC800000000 + + isa + PBXFileReference + name + libTelegramNotices.a + path + libTelegramNotices.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F18DE1D900000000 + + isa + PBXFileReference + name + libTelegramVoip.a + path + libTelegramVoip.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E2997B4D6D800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29BBAF750C00000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2988BAAFC800000000 + 1DD70E290DD17C7100000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29F18DE1D900000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29DA3FBAD600000000 + + isa + PBXFileReference + name + libTelegramCallsUI.a + path + libTelegramCallsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29DA3FBAD600000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2919A2DFDF00000000 + + isa + PBXFileReference + name + CallController.swift + path + Sources/CallController.swift + sourceTree + SOURCE_ROOT + + 1DD70E297E9C5A3100000000 + + isa + PBXFileReference + name + CallControllerButton.swift + path + Sources/CallControllerButton.swift + sourceTree + SOURCE_ROOT + + 1DD70E29AE599FEE00000000 + + isa + PBXFileReference + name + CallControllerButtonsNode.swift + path + Sources/CallControllerButtonsNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A29EFC4A00000000 + + isa + PBXFileReference + name + CallControllerKeyPreviewNode.swift + path + Sources/CallControllerKeyPreviewNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E291AC9338100000000 + + isa + PBXFileReference + name + CallControllerNode.swift + path + Sources/CallControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E290AF8ED9300000000 + + isa + PBXFileReference + name + CallControllerStatusNode.swift + path + Sources/CallControllerStatusNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B519F37C00000000 + + isa + PBXFileReference + name + CallDebugNode.swift + path + Sources/CallDebugNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29636DE78400000000 + + isa + PBXFileReference + name + CallFeedbackController.swift + path + Sources/CallFeedbackController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29970550E100000000 + + isa + PBXFileReference + name + CallKitIntegration.swift + path + Sources/CallKitIntegration.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DF500D1C00000000 + + isa + PBXFileReference + name + CallRatingController.swift + path + Sources/CallRatingController.swift + sourceTree + SOURCE_ROOT + + 1DD70E290CA6BF7600000000 + + isa + PBXFileReference + name + CallRouteActionSheetItem.swift + path + Sources/CallRouteActionSheetItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FD7E6DF000000000 + + isa + PBXFileReference + name + CallSuggestTabController.swift + path + Sources/CallSuggestTabController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B683DD4B00000000 + + isa + PBXFileReference + name + CallsEmoji.h + path + Sources/CallsEmoji.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29B683DD5000000000 + + isa + PBXFileReference + name + CallsEmoji.m + path + Sources/CallsEmoji.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F7ECD55D00000000 + + isa + PBXFileReference + name + PresentationCall.swift + path + Sources/PresentationCall.swift + sourceTree + SOURCE_ROOT + + 1DD70E2978658ABA00000000 + + isa + PBXFileReference + name + PresentationCallManager.swift + path + Sources/PresentationCallManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E294CAD10B900000000 + + isa + PBXFileReference + name + PresentationCallToneData.swift + path + Sources/PresentationCallToneData.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2919A2DFDF00000000 + 1DD70E297E9C5A3100000000 + 1DD70E29AE599FEE00000000 + 1DD70E29A29EFC4A00000000 + 1DD70E291AC9338100000000 + 1DD70E290AF8ED9300000000 + 1DD70E29B519F37C00000000 + 1DD70E29636DE78400000000 + 1DD70E29970550E100000000 + 1DD70E29DF500D1C00000000 + 1DD70E290CA6BF7600000000 + 1DD70E29FD7E6DF000000000 + 1DD70E29B683DD4B00000000 + 1DD70E29B683DD5000000000 + 1DD70E291289FAA500000000 + 1DD70E29F7ECD55D00000000 + 1DD70E2978658ABA00000000 + 1DD70E294CAD10B900000000 + + + B401C979DE4F2EC800000000 + + isa + PBXGroup + name + TelegramCallsUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979DE4F2EC800000000 + + + E7A30F0419A2DFDF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2919A2DFDF00000000 + + E7A30F047E9C5A3100000000 + + isa + PBXBuildFile + fileRef + 1DD70E297E9C5A3100000000 + + E7A30F04AE599FEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AE599FEE00000000 + + E7A30F04A29EFC4A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A29EFC4A00000000 + + E7A30F041AC9338100000000 + + isa + PBXBuildFile + fileRef + 1DD70E291AC9338100000000 + + E7A30F040AF8ED9300000000 + + isa + PBXBuildFile + fileRef + 1DD70E290AF8ED9300000000 + + E7A30F04B519F37C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B519F37C00000000 + + E7A30F04636DE78400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29636DE78400000000 + + E7A30F04970550E100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29970550E100000000 + + E7A30F04DF500D1C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DF500D1C00000000 + + E7A30F040CA6BF7600000000 + + isa + PBXBuildFile + fileRef + 1DD70E290CA6BF7600000000 + + E7A30F04FD7E6DF000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FD7E6DF000000000 + + E7A30F04B683DD5000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B683DD5000000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04F7ECD55D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F7ECD55D00000000 + + E7A30F0478658ABA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2978658ABA00000000 + + E7A30F044CAD10B900000000 + + isa + PBXBuildFile + fileRef + 1DD70E294CAD10B900000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0419A2DFDF00000000 + E7A30F047E9C5A3100000000 + E7A30F04AE599FEE00000000 + E7A30F04A29EFC4A00000000 + E7A30F041AC9338100000000 + E7A30F040AF8ED9300000000 + E7A30F04B519F37C00000000 + E7A30F04636DE78400000000 + E7A30F04970550E100000000 + E7A30F04DF500D1C00000000 + E7A30F040CA6BF7600000000 + E7A30F04FD7E6DF000000000 + E7A30F04B683DD5000000000 + E7A30F041289FAA500000000 + E7A30F04F7ECD55D00000000 + E7A30F0478658ABA00000000 + E7A30F044CAD10B900000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F04BBAF750C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BBAF750C00000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + E7A30F0488BAAFC800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2988BAAFC800000000 + + E7A30F04F18DE1D900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F18DE1D900000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F042417E0B200000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F04BBAF750C00000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04490601EB00000000 + E7A30F040DD17C7100000000 + E7A30F0488BAAFC800000000 + E7A30F04F18DE1D900000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29F00620ED00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29EC24311700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E295FBADC7900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EDE4F2EC800000000 + + isa + PBXNativeTarget + name + TelegramCallsUI + productName + TelegramCallsUI + productReference + 1DD70E29DA3FBAD600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793DE4F2EC800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EDE4F2EC800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793DE4F2EC800000000 + + \ No newline at end of file diff --git a/submodules/TelegramCallsUI/TelegramCallsUI.xcodeproj/xcshareddata/xcschemes/TelegramCallsUI.xcscheme b/submodules/TelegramCallsUI/TelegramCallsUI.xcodeproj/xcshareddata/xcschemes/TelegramCallsUI.xcscheme new file mode 100644 index 0000000000..584ae5ba65 --- /dev/null +++ b/submodules/TelegramCallsUI/TelegramCallsUI.xcodeproj/xcshareddata/xcschemes/TelegramCallsUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramNotices/TelegramNotices.xcodeproj/project.pbxproj b/submodules/TelegramNotices/TelegramNotices.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..d300feebd3 --- /dev/null +++ b/submodules/TelegramNotices/TelegramNotices.xcodeproj/project.pbxproj @@ -0,0 +1,753 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29FFA0453B00000000 + + isa + PBXFileReference + name + TelegramNotices-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramNotices/TelegramNotices-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E297DC679E500000000 + + isa + PBXFileReference + name + TelegramNotices-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramNotices/TelegramNotices-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29F15D254700000000 + + isa + PBXFileReference + name + TelegramNotices-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramNotices/TelegramNotices-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29FFA0453B00000000 + 1DD70E297DC679E500000000 + 1DD70E29F15D254700000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E290DD17C7100000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E2988BAAFC800000000 + + isa + PBXFileReference + name + libTelegramNotices.a + path + libTelegramNotices.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2988BAAFC800000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2916787EE000000000 + + isa + PBXFileReference + name + Notices.swift + path + Sources/Notices.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2916787EE000000000 + + + B401C9793C86B83A00000000 + + isa + PBXGroup + name + TelegramNotices + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9793C86B83A00000000 + + + E7A30F0416787EE000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2916787EE000000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0416787EE000000000 + + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F042417E0B200000000 + E7A30F040DD17C7100000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29FFA0453B00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E297DC679E500000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29F15D254700000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E3C86B83A00000000 + + isa + PBXNativeTarget + name + TelegramNotices + productName + TelegramNotices + productReference + 1DD70E2988BAAFC800000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847933C86B83A00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E3C86B83A00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847933C86B83A00000000 + + \ No newline at end of file diff --git a/submodules/TelegramNotices/TelegramNotices.xcodeproj/xcshareddata/xcschemes/TelegramNotices.xcscheme b/submodules/TelegramNotices/TelegramNotices.xcodeproj/xcshareddata/xcschemes/TelegramNotices.xcscheme new file mode 100644 index 0000000000..97ee34fd9a --- /dev/null +++ b/submodules/TelegramNotices/TelegramNotices.xcodeproj/xcshareddata/xcschemes/TelegramNotices.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramPermissions/TelegramPermissions.xcodeproj/project.pbxproj b/submodules/TelegramPermissions/TelegramPermissions.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..183d75c915 --- /dev/null +++ b/submodules/TelegramPermissions/TelegramPermissions.xcodeproj/project.pbxproj @@ -0,0 +1,731 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2962947DB200000000 + + isa + PBXFileReference + name + TelegramPermissions-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramPermissions/TelegramPermissions-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29F48E709C00000000 + + isa + PBXFileReference + name + TelegramPermissions-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramPermissions/TelegramPermissions-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2968251BFE00000000 + + isa + PBXFileReference + name + TelegramPermissions-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramPermissions/TelegramPermissions-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2962947DB200000000 + 1DD70E29F48E709C00000000 + 1DD70E2968251BFE00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E290DD17C7100000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29C5F75D5400000000 + + isa + PBXFileReference + name + Permission.swift + path + Sources/Permission.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29C5F75D5400000000 + + + B401C97918FD80A300000000 + + isa + PBXGroup + name + TelegramPermissions + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C97918FD80A300000000 + + + E7A30F04C5F75D5400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C5F75D5400000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04C5F75D5400000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F042417E0B200000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2962947DB200000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29F48E709C00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2968251BFE00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E18FD80A300000000 + + isa + PBXNativeTarget + name + TelegramPermissions + productName + TelegramPermissions + productReference + 1DD70E290DD17C7100000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479318FD80A300000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E18FD80A300000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479318FD80A300000000 + + \ No newline at end of file diff --git a/submodules/TelegramPermissions/TelegramPermissions.xcodeproj/xcshareddata/xcschemes/TelegramPermissions.xcscheme b/submodules/TelegramPermissions/TelegramPermissions.xcodeproj/xcshareddata/xcschemes/TelegramPermissions.xcscheme new file mode 100644 index 0000000000..afce0dc691 --- /dev/null +++ b/submodules/TelegramPermissions/TelegramPermissions.xcodeproj/xcshareddata/xcschemes/TelegramPermissions.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramPermissionsUI/BUCK b/submodules/TelegramPermissionsUI/BUCK new file mode 100644 index 0000000000..c088ed15cc --- /dev/null +++ b/submodules/TelegramPermissionsUI/BUCK @@ -0,0 +1,26 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "TelegramPermissionsUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/TextFormat:TextFormat", + "//submodules/TelegramPermissions:TelegramPermissions", + "//submodules/DeviceAccess:DeviceAccess", + "//submodules/PeersNearbyIconNode:PeersNearbyIconNode", + "//submodules/SolidRoundedButtonNode:SolidRoundedButtonNode", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/TelegramPermissionsUI/TelegramPermissionsUI.xcodeproj/project.pbxproj b/submodules/TelegramPermissionsUI/TelegramPermissionsUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..a7ef654f2d --- /dev/null +++ b/submodules/TelegramPermissionsUI/TelegramPermissionsUI.xcodeproj/project.pbxproj @@ -0,0 +1,877 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E293BF62D5E00000000 + + isa + PBXFileReference + name + TelegramPermissionsUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramPermissionsUI/TelegramPermissionsUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29FC42E54800000000 + + isa + PBXFileReference + name + TelegramPermissionsUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramPermissionsUI/TelegramPermissionsUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E296FD990AA00000000 + + isa + PBXFileReference + name + TelegramPermissionsUI-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramPermissionsUI/TelegramPermissionsUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E293BF62D5E00000000 + 1DD70E29FC42E54800000000 + 1DD70E296FD990AA00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291631B91900000000 + + isa + PBXFileReference + name + libPeersNearbyIconNode.a + path + libPeersNearbyIconNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29524F478E00000000 + + isa + PBXFileReference + name + libSolidRoundedButtonNode.a + path + libSolidRoundedButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E290DD17C7100000000 + + isa + PBXFileReference + name + libTelegramPermissions.a + path + libTelegramPermissions.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E291631B91900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29524F478E00000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E290DD17C7100000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E29DF758A8500000000 + + isa + PBXFileReference + name + libTelegramPermissionsUI.a + path + libTelegramPermissionsUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29DF758A8500000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E293756365100000000 + + isa + PBXFileReference + name + PermissionContentNode.swift + path + Sources/PermissionContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2944AF915000000000 + + isa + PBXFileReference + name + PermissionController.swift + path + Sources/PermissionController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A44DC47200000000 + + isa + PBXFileReference + name + PermissionControllerNode.swift + path + Sources/PermissionControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FF6EB28200000000 + + isa + PBXFileReference + name + PermissionSplitTest.swift + path + Sources/PermissionSplitTest.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E293756365100000000 + 1DD70E2944AF915000000000 + 1DD70E29A44DC47200000000 + 1DD70E29FF6EB28200000000 + + + B401C979CF9FEE7700000000 + + isa + PBXGroup + name + TelegramPermissionsUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979CF9FEE7700000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F043756365100000000 + + isa + PBXBuildFile + fileRef + 1DD70E293756365100000000 + + E7A30F0444AF915000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2944AF915000000000 + + E7A30F04A44DC47200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A44DC47200000000 + + E7A30F04FF6EB28200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF6EB28200000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F043756365100000000 + E7A30F0444AF915000000000 + E7A30F04A44DC47200000000 + E7A30F04FF6EB28200000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041631B91900000000 + + isa + PBXBuildFile + fileRef + 1DD70E291631B91900000000 + + E7A30F04524F478E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29524F478E00000000 + + E7A30F040DD17C7100000000 + + isa + PBXBuildFile + fileRef + 1DD70E290DD17C7100000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F042417E0B200000000 + E7A30F041631B91900000000 + E7A30F04524F478E00000000 + E7A30F040DD17C7100000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E293BF62D5E00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29FC42E54800000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E296FD990AA00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04ECF9FEE7700000000 + + isa + PBXNativeTarget + name + TelegramPermissionsUI + productName + TelegramPermissionsUI + productReference + 1DD70E29DF758A8500000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793CF9FEE7700000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04ECF9FEE7700000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793CF9FEE7700000000 + + \ No newline at end of file diff --git a/submodules/TelegramPermissionsUI/TelegramPermissionsUI.xcodeproj/xcshareddata/xcschemes/TelegramPermissionsUI.xcscheme b/submodules/TelegramPermissionsUI/TelegramPermissionsUI.xcodeproj/xcshareddata/xcschemes/TelegramPermissionsUI.xcscheme new file mode 100644 index 0000000000..422fe64965 --- /dev/null +++ b/submodules/TelegramPermissionsUI/TelegramPermissionsUI.xcodeproj/xcshareddata/xcschemes/TelegramPermissionsUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramPresentationData/TelegramPresentationData.xcodeproj/project.pbxproj b/submodules/TelegramPresentationData/TelegramPresentationData.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..29031196c3 --- /dev/null +++ b/submodules/TelegramPresentationData/TelegramPresentationData.xcodeproj/project.pbxproj @@ -0,0 +1,1096 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E297288B4F000000000 + + isa + PBXFileReference + name + TelegramPresentationData-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramPresentationData/TelegramPresentationData-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D851D05A00000000 + + isa + PBXFileReference + name + TelegramPresentationData-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramPresentationData/TelegramPresentationData-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E294BE87BBC00000000 + + isa + PBXFileReference + name + TelegramPresentationData-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramPresentationData/TelegramPresentationData-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E297288B4F000000000 + 1DD70E29D851D05A00000000 + 1DD70E294BE87BBC00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E292395015100000000 + + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E2984A59C1D00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2940A0D93C00000000 + + isa + PBXFileReference + name + PresentationResourceKey.swift + path + Sources/Resources/PresentationResourceKey.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E344CEAC00000000 + + isa + PBXFileReference + name + PresentationResourcesCallList.swift + path + Sources/Resources/PresentationResourcesCallList.swift + sourceTree + SOURCE_ROOT + + 1DD70E290003F26800000000 + + isa + PBXFileReference + name + PresentationResourcesChat.swift + path + Sources/Resources/PresentationResourcesChat.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BB5D772600000000 + + isa + PBXFileReference + name + PresentationResourcesChatList.swift + path + Sources/Resources/PresentationResourcesChatList.swift + sourceTree + SOURCE_ROOT + + 1DD70E29413A312100000000 + + isa + PBXFileReference + name + PresentationResourcesItemList.swift + path + Sources/Resources/PresentationResourcesItemList.swift + sourceTree + SOURCE_ROOT + + 1DD70E290FC276EE00000000 + + isa + PBXFileReference + name + PresentationResourcesRootController.swift + path + Sources/Resources/PresentationResourcesRootController.swift + sourceTree + SOURCE_ROOT + + 1DD70E291E13E97300000000 + + isa + PBXFileReference + name + PresentationResourcesSettings.swift + path + Sources/Resources/PresentationResourcesSettings.swift + sourceTree + SOURCE_ROOT + + B401C979013EDE0500000000 + + isa + PBXGroup + name + Resources + path + Sources/Resources + sourceTree + SOURCE_ROOT + children + + 1DD70E2940A0D93C00000000 + 1DD70E29E344CEAC00000000 + 1DD70E290003F26800000000 + 1DD70E29BB5D772600000000 + 1DD70E29413A312100000000 + 1DD70E290FC276EE00000000 + 1DD70E291E13E97300000000 + + + 1DD70E293AF8C24900000000 + + isa + PBXFileReference + name + ChatControllerBackgroundNode.swift + path + Sources/ChatControllerBackgroundNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D1D9219800000000 + + isa + PBXFileReference + name + ChatMessageBubbleImages.swift + path + Sources/ChatMessageBubbleImages.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DBD1814500000000 + + isa + PBXFileReference + name + ComponentsThemes.swift + path + Sources/ComponentsThemes.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E4C30AFD00000000 + + isa + PBXFileReference + name + DefaultDarkPresentationTheme.swift + path + Sources/DefaultDarkPresentationTheme.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BC51060300000000 + + isa + PBXFileReference + name + DefaultDarkTintedPresentationTheme.swift + path + Sources/DefaultDarkTintedPresentationTheme.swift + sourceTree + SOURCE_ROOT + + 1DD70E29BA1E31F900000000 + + isa + PBXFileReference + name + DefaultDayPresentationTheme.swift + path + Sources/DefaultDayPresentationTheme.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D460D78C00000000 + + isa + PBXFileReference + name + DefaultPresentationStrings.swift + path + Sources/DefaultPresentationStrings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D49E2A0600000000 + + isa + PBXFileReference + name + EDSunriseSet.h + path + Sources/EDSunriseSet.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29D49E2A0B00000000 + + isa + PBXFileReference + name + EDSunriseSet.m + path + Sources/EDSunriseSet.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29F2EA27D500000000 + + isa + PBXFileReference + name + FrameworkSpecific.swift + path + Sources/FrameworkSpecific.swift + sourceTree + SOURCE_ROOT + + 1DD70E2975F0684600000000 + + isa + PBXFileReference + name + MakePresentationTheme.swift + path + Sources/MakePresentationTheme.swift + sourceTree + SOURCE_ROOT + + 1DD70E292EF9141500000000 + + isa + PBXFileReference + name + NumberPluralizationForm.h + path + Sources/NumberPluralizationForm.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E292EF9141A00000000 + + isa + PBXFileReference + name + NumberPluralizationForm.m + path + Sources/NumberPluralizationForm.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29F91318E900000000 + + isa + PBXFileReference + name + NumericFormat.swift + path + Sources/NumericFormat.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E55B21A900000000 + + isa + PBXFileReference + name + PresentationData.swift + path + Sources/PresentationData.swift + sourceTree + SOURCE_ROOT + + 1DD70E296771CE8D00000000 + + isa + PBXFileReference + name + PresentationStrings.swift + path + Sources/PresentationStrings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D868521400000000 + + isa + PBXFileReference + name + PresentationTheme.swift + path + Sources/PresentationTheme.swift + sourceTree + SOURCE_ROOT + + 1DD70E2907087D8800000000 + + isa + PBXFileReference + name + PresentationThemeCodable.swift + path + Sources/PresentationThemeCodable.swift + sourceTree + SOURCE_ROOT + + 1DD70E2970CC317A00000000 + + isa + PBXFileReference + name + PresentationThemeDecoder.swift + path + Sources/PresentationThemeDecoder.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A48E085200000000 + + isa + PBXFileReference + name + PresentationThemeEncoder.swift + path + Sources/PresentationThemeEncoder.swift + sourceTree + SOURCE_ROOT + + 1DD70E2913777C2F00000000 + + isa + PBXFileReference + name + PresentationThemeEssentialGraphics.swift + path + Sources/PresentationThemeEssentialGraphics.swift + sourceTree + SOURCE_ROOT + + 1DD70E295646A68000000000 + + isa + PBXFileReference + name + PresentationsResourceCache.swift + path + Sources/PresentationsResourceCache.swift + sourceTree + SOURCE_ROOT + + 1DD70E293D3BD71400000000 + + isa + PBXFileReference + name + StringPluralization.swift + path + Sources/StringPluralization.swift + sourceTree + SOURCE_ROOT + + 1DD70E298B4C8B5400000000 + + isa + PBXFileReference + name + WallpaperUtils.swift + path + Sources/WallpaperUtils.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + B401C979013EDE0500000000 + 1DD70E293AF8C24900000000 + 1DD70E29D1D9219800000000 + 1DD70E29DBD1814500000000 + 1DD70E29E4C30AFD00000000 + 1DD70E29BC51060300000000 + 1DD70E29BA1E31F900000000 + 1DD70E29D460D78C00000000 + 1DD70E29D49E2A0600000000 + 1DD70E29D49E2A0B00000000 + 1DD70E29F2EA27D500000000 + 1DD70E2975F0684600000000 + 1DD70E292EF9141500000000 + 1DD70E292EF9141A00000000 + 1DD70E29F91318E900000000 + 1DD70E29E55B21A900000000 + 1DD70E296771CE8D00000000 + 1DD70E29D868521400000000 + 1DD70E2907087D8800000000 + 1DD70E2970CC317A00000000 + 1DD70E29A48E085200000000 + 1DD70E2913777C2F00000000 + 1DD70E295646A68000000000 + 1DD70E293D3BD71400000000 + 1DD70E298B4C8B5400000000 + + + B401C97977B5752500000000 + + isa + PBXGroup + name + TelegramPresentationData + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C97977B5752500000000 + + + E7A30F0440A0D93C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2940A0D93C00000000 + + E7A30F04E344CEAC00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E344CEAC00000000 + + E7A30F040003F26800000000 + + isa + PBXBuildFile + fileRef + 1DD70E290003F26800000000 + + E7A30F04BB5D772600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BB5D772600000000 + + E7A30F04413A312100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29413A312100000000 + + E7A30F040FC276EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290FC276EE00000000 + + E7A30F041E13E97300000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E13E97300000000 + + E7A30F043AF8C24900000000 + + isa + PBXBuildFile + fileRef + 1DD70E293AF8C24900000000 + + E7A30F04D1D9219800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D1D9219800000000 + + E7A30F04DBD1814500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DBD1814500000000 + + E7A30F04E4C30AFD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E4C30AFD00000000 + + E7A30F04BC51060300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BC51060300000000 + + E7A30F04BA1E31F900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA1E31F900000000 + + E7A30F04D460D78C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D460D78C00000000 + + E7A30F04D49E2A0B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D49E2A0B00000000 + + E7A30F04F2EA27D500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F2EA27D500000000 + + E7A30F0475F0684600000000 + + isa + PBXBuildFile + fileRef + 1DD70E2975F0684600000000 + + E7A30F042EF9141A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E292EF9141A00000000 + + E7A30F04F91318E900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F91318E900000000 + + E7A30F04E55B21A900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E55B21A900000000 + + E7A30F046771CE8D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296771CE8D00000000 + + E7A30F04D868521400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D868521400000000 + + E7A30F0407087D8800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2907087D8800000000 + + E7A30F0470CC317A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2970CC317A00000000 + + E7A30F04A48E085200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A48E085200000000 + + E7A30F0413777C2F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2913777C2F00000000 + + E7A30F045646A68000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295646A68000000000 + + E7A30F043D3BD71400000000 + + isa + PBXBuildFile + fileRef + 1DD70E293D3BD71400000000 + + E7A30F048B4C8B5400000000 + + isa + PBXBuildFile + fileRef + 1DD70E298B4C8B5400000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0440A0D93C00000000 + E7A30F04E344CEAC00000000 + E7A30F040003F26800000000 + E7A30F04BB5D772600000000 + E7A30F04413A312100000000 + E7A30F040FC276EE00000000 + E7A30F041E13E97300000000 + E7A30F043AF8C24900000000 + E7A30F04D1D9219800000000 + E7A30F04DBD1814500000000 + E7A30F04E4C30AFD00000000 + E7A30F04BC51060300000000 + E7A30F04BA1E31F900000000 + E7A30F04D460D78C00000000 + E7A30F04D49E2A0B00000000 + E7A30F04F2EA27D500000000 + E7A30F0475F0684600000000 + E7A30F042EF9141A00000000 + E7A30F04F91318E900000000 + E7A30F04E55B21A900000000 + E7A30F046771CE8D00000000 + E7A30F04D868521400000000 + E7A30F0407087D8800000000 + E7A30F0470CC317A00000000 + E7A30F04A48E085200000000 + E7A30F0413777C2F00000000 + E7A30F045646A68000000000 + E7A30F043D3BD71400000000 + E7A30F048B4C8B5400000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E297288B4F000000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29D851D05A00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E294BE87BBC00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E77B5752500000000 + + isa + PBXNativeTarget + name + TelegramPresentationData + productName + TelegramPresentationData + productReference + 1DD70E2984A59C1D00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479377B5752500000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E77B5752500000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479377B5752500000000 + + \ No newline at end of file diff --git a/submodules/TelegramPresentationData/TelegramPresentationData.xcodeproj/xcshareddata/xcschemes/TelegramPresentationData.xcscheme b/submodules/TelegramPresentationData/TelegramPresentationData.xcodeproj/xcshareddata/xcschemes/TelegramPresentationData.xcscheme new file mode 100644 index 0000000000..ec5faa67a1 --- /dev/null +++ b/submodules/TelegramPresentationData/TelegramPresentationData.xcodeproj/xcshareddata/xcschemes/TelegramPresentationData.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramStringFormatting/TelegramStringFormatting.xcodeproj/project.pbxproj b/submodules/TelegramStringFormatting/TelegramStringFormatting.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..ec53bf597b --- /dev/null +++ b/submodules/TelegramStringFormatting/TelegramStringFormatting.xcodeproj/project.pbxproj @@ -0,0 +1,777 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29BEE3B63E00000000 + + isa + PBXFileReference + name + TelegramStringFormatting-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramStringFormatting/TelegramStringFormatting-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2979F1B62800000000 + + isa + PBXFileReference + name + TelegramStringFormatting-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramStringFormatting/TelegramStringFormatting-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29ED88618A00000000 + + isa + PBXFileReference + name + TelegramStringFormatting-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramStringFormatting/TelegramStringFormatting-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29BEE3B63E00000000 + 1DD70E2979F1B62800000000 + 1DD70E29ED88618A00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + 1DD70E29F0C15F9C00000000 + + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29DD3C940F00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29961DBD7900000000 + + isa + PBXFileReference + name + ContactInfoStrings.swift + path + Sources/ContactInfoStrings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FFA0F42D00000000 + + isa + PBXFileReference + name + CurrencyFormat.swift + path + Sources/CurrencyFormat.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A657804A00000000 + + isa + PBXFileReference + name + DateFormat.swift + path + Sources/DateFormat.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29851AE19F00000000 + + isa + PBXFileReference + name + Locale.swift + path + Sources/Locale.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FCB4876B00000000 + + isa + PBXFileReference + name + MessageContentKind.swift + path + Sources/MessageContentKind.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C34D536500000000 + + isa + PBXFileReference + name + NumberFormat.swift + path + Sources/NumberFormat.swift + sourceTree + SOURCE_ROOT + + 1DD70E298B699D4500000000 + + isa + PBXFileReference + name + PeerNotificationSoundStrings.swift + path + Sources/PeerNotificationSoundStrings.swift + sourceTree + SOURCE_ROOT + + 1DD70E290E15764C00000000 + + isa + PBXFileReference + name + PresenceStrings.swift + path + Sources/PresenceStrings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C2DC8D1500000000 + + isa + PBXFileReference + name + ServiceMessageStrings.swift + path + Sources/ServiceMessageStrings.swift + sourceTree + SOURCE_ROOT + + 1DD70E296AFD7A3100000000 + + isa + PBXFileReference + name + StringForDuration.swift + path + Sources/StringForDuration.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29961DBD7900000000 + 1DD70E29FFA0F42D00000000 + 1DD70E29A657804A00000000 + 1DD70E291289FAA500000000 + 1DD70E29851AE19F00000000 + 1DD70E29FCB4876B00000000 + 1DD70E29C34D536500000000 + 1DD70E298B699D4500000000 + 1DD70E290E15764C00000000 + 1DD70E29C2DC8D1500000000 + 1DD70E296AFD7A3100000000 + + + B401C9794D2DC19700000000 + + isa + PBXGroup + name + TelegramStringFormatting + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9794D2DC19700000000 + + + E7A30F04961DBD7900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29961DBD7900000000 + + E7A30F04FFA0F42D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FFA0F42D00000000 + + E7A30F04A657804A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A657804A00000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04851AE19F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29851AE19F00000000 + + E7A30F04FCB4876B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FCB4876B00000000 + + E7A30F04C34D536500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C34D536500000000 + + E7A30F048B699D4500000000 + + isa + PBXBuildFile + fileRef + 1DD70E298B699D4500000000 + + E7A30F040E15764C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E290E15764C00000000 + + E7A30F04C2DC8D1500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C2DC8D1500000000 + + E7A30F046AFD7A3100000000 + + isa + PBXBuildFile + fileRef + 1DD70E296AFD7A3100000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04961DBD7900000000 + E7A30F04FFA0F42D00000000 + E7A30F04A657804A00000000 + E7A30F041289FAA500000000 + E7A30F04851AE19F00000000 + E7A30F04FCB4876B00000000 + E7A30F04C34D536500000000 + E7A30F048B699D4500000000 + E7A30F040E15764C00000000 + E7A30F04C2DC8D1500000000 + E7A30F046AFD7A3100000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04119CDA0700000000 + E7A30F04D65BA68200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29BEE3B63E00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2979F1B62800000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29ED88618A00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E4D2DC19700000000 + + isa + PBXNativeTarget + name + TelegramStringFormatting + productName + TelegramStringFormatting + productReference + 1DD70E29DD3C940F00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847934D2DC19700000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E4D2DC19700000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847934D2DC19700000000 + + \ No newline at end of file diff --git a/submodules/TelegramStringFormatting/TelegramStringFormatting.xcodeproj/xcshareddata/xcschemes/TelegramStringFormatting.xcscheme b/submodules/TelegramStringFormatting/TelegramStringFormatting.xcodeproj/xcshareddata/xcschemes/TelegramStringFormatting.xcscheme new file mode 100644 index 0000000000..288c6c34bb --- /dev/null +++ b/submodules/TelegramStringFormatting/TelegramStringFormatting.xcodeproj/xcshareddata/xcschemes/TelegramStringFormatting.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramUI/BUCK b/submodules/TelegramUI/BUCK new file mode 100644 index 0000000000..1a6fa8d750 --- /dev/null +++ b/submodules/TelegramUI/BUCK @@ -0,0 +1,177 @@ +load("//Config:buck_rule_macros.bzl", "framework") + +framework( + name = "TelegramUI", + srcs = glob([ + "TelegramUI/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/SSignalKit/SSignalKit:SSignalKit", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/MtProtoKit:MtProtoKit#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/libtgvoip:libtgvoip", + "//submodules/lottie-ios:Lottie", + "//submodules/FFMpeg:FFMpeg", + "//submodules/WebP:WebPImage", + "//submodules/RMIntro:RMIntro", + "//submodules/GZip:GZip", + "//submodules/TelegramCallsUI:TelegramCallsUI", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/MediaPlayer:UniversalMediaPlayer", + "//submodules/TelegramVoip:TelegramVoip", + "//submodules/DeviceAccess:DeviceAccess", + "//submodules/WatchCommon:WatchCommon", + "//submodules/LightweightAccountData:LightweightAccountData", + "//submodules/HockeySDK-iOS:HockeySDK", + "//submodules/BuildConfig:BuildConfig", + "//submodules/RLottie:RLottie", + "//submodules/TelegramUpdateUI:TelegramUpdateUI", + "//submodules/MergeLists:MergeLists", + "//submodules/ActivityIndicator:ActivityIndicator", + "//submodules/ProgressNavigationButtonNode:ProgressNavigationButtonNode", + "//submodules/ItemListUI:ItemListUI", + "//submodules/TelegramBaseController:TelegramBaseController", + "//submodules/DeviceLocationManager:DeviceLocationManager", + "//submodules/AvatarNode:AvatarNode", + "//submodules/OverlayStatusController:OverlayStatusController", + "//submodules/TelegramStringFormatting:TelegramStringFormatting", + "//submodules/LiveLocationManager:LiveLocationManager", + "//submodules/LiveLocationTimerNode:LiveLocationTimerNode", + "//submodules/TemporaryCachedPeerDataManager:TemporaryCachedPeerDataManager", + "//submodules/ShareController:ShareController", + "//submodules/RadialStatusNode:RadialStatusNode", + "//submodules/PeerOnlineMarkerNode:PeerOnlineMarkerNode", + "//submodules/PeerPresenceStatusManager:PeerPresenceStatusManager", + "//submodules/ChatListSearchRecentPeersNode:ChatListSearchRecentPeersNode", + "//submodules/ImageBlur:ImageBlur", + "//submodules/ContextUI:ContextUI", + "//submodules/MediaResources:MediaResources", + "//submodules/TelegramAudio:TelegramAudio", + "//submodules/UrlEscaping:UrlEscaping", + "//submodules/Tuples:Tuples", + "//submodules/TextFormat:TextFormat", + "//submodules/SwitchNode:SwitchNode", + "//submodules/StickerResources:StickerResources", + "//submodules/SelectablePeerNode:SelectablePeerNode", + "//submodules/SaveToCameraRoll:SaveToCameraRoll", + "//submodules/LocalizedPeerData:LocalizedPeerData", + "//submodules/ListSectionHeaderNode:ListSectionHeaderNode", + "//submodules/HorizontalPeerItem:HorizontalPeerItem", + "//submodules/CheckNode:CheckNode", + "//submodules/AnimationUI:AnimationUI", + "//submodules/ActionSheetPeerItem:ActionSheetPeerItem", + "//submodules/AccountContext:AccountContext", + "//submodules/ComposePollUI:ComposePollUI", + "//submodules/AlertUI:AlertUI", + "//submodules/TouchDownGesture:TouchDownGesture", + "//submodules/SwipeToDismissGesture:SwipeToDismissGesture", + "//submodules/DirectionalPanGesture:DirectionalPanGesture", + "//submodules/UndoUI:UndoUI", + "//submodules/PhotoResources:PhotoResources", + "//submodules/TinyThumbnail:TinyThumbnail", + "//submodules/ImageTransparency:ImageTransparency", + "//submodules/TelegramNotices:TelegramNotices", + "//submodules/TelegramPermissions:TelegramPermissions", + "//submodules/GameUI:GameUI", + "//submodules/WebUI:WebUI", + "//submodules/PassportUI:PassportUI", + "//submodules/PhoneInputNode:PhoneInputNode", + "//submodules/CountrySelectionUI:CountrySelectionUI", + "//submodules/SearchBarNode:SearchBarNode", + "//submodules/GalleryUI:GalleryUI", + "//submodules/TelegramUniversalVideoContent:TelegramUniversalVideoContent", + "//submodules/WebsiteType:WebsiteType", + "//submodules/ScreenCaptureDetection:ScreenCaptureDetection", + "//submodules/OpenInExternalAppUI:OpenInExternalAppUI", + "//submodules/LegacyUI:LegacyUI", + "//submodules/ImageCompression:ImageCompression", + "//submodules/DateSelectionUI:DateSelectionUI", + "//submodules/PasswordSetupUI:PasswordSetupUI", + "//submodules/Pdf:Pdf", + "//submodules/InstantPageUI:InstantPageUI", + "//submodules/MusicAlbumArtResources:MusicAlbumArtResources", + "//submodules/LiveLocationPositionNode:LiveLocationPositionNode", + "//submodules/MosaicLayout:MosaicLayout", + "//submodules/LocationUI:LocationUI", + "//submodules/Stripe:Stripe", + "//submodules/BotPaymentsUI:BotPaymentsUI", + "//submodules/LocalAuth:LocalAuth", + "//submodules/ContactListUI:ContactListUI", + "//submodules/SearchUI:SearchUI", + "//submodules/ChatListSearchItemHeader:ChatListSearchItemHeader", + "//submodules/ItemListPeerItem:ItemListPeerItem", + "//submodules/ContactsPeerItem:ContactsPeerItem", + "//submodules/ChatListSearchItemNode:ChatListSearchItemNode", + "//submodules/TelegramPermissionsUI:TelegramPermissionsUI", + "//submodules/PeersNearbyIconNode:PeersNearbyIconNode", + "//submodules/SolidRoundedButtonNode:SolidRoundedButtonNode", + "//submodules/PasscodeUI:PasscodeUI", + "//submodules/CallListUI:CallListUI", + "//submodules/ChatListUI:ChatListUI", + "//submodules/ChatTitleActivityNode:ChatTitleActivityNode", + "//submodules/DeleteChatPeerActionSheetItem:DeleteChatPeerActionSheetItem", + "//submodules/LanguageSuggestionUI:LanguageSuggestionUI", + "//submodules/TextSelectionNode:TextSelectionNode", + "//submodules/PlatformRestrictionMatching:PlatformRestrictionMatching", + "//submodules/HashtagSearchUI:HashtagSearchUI", + "//submodules/ItemListAvatarAndNameInfoItem:ItemListAvatarAndNameInfoItem", + "//submodules/ItemListPeerActionItem:ItemListPeerActionItem", + "//submodules/StickerPackPreviewUI:StickerPackPreviewUI", + "//submodules/YuvConversion:YuvConversion", + "//submodules/JoinLinkPreviewUI:JoinLinkPreviewUI", + "//submodules/LanguageLinkPreviewUI:LanguageLinkPreviewUI", + "//submodules/WebSearchUI:WebSearchUI", + "//submodules/LegacyMediaPickerUI:LegacyMediaPickerUI", + "//submodules/MimeTypes:MimeTypes", + "//submodules/LocalMediaResources:LocalMediaResources", + "//submodules/PeersNearbyUI:PeersNearbyUI", + "//submodules/Geocoding:Geocoding", + "//submodules/PeerInfoUI:PeerInfoUI", + "//submodules/PeerAvatarGalleryUI:PeerAvatarGalleryUI", + "//submodules/Emoji:Emoji", + "//submodules/ItemListStickerPackItem:ItemListStickerPackItem", + "//submodules/NotificationMuteSettingsUI:NotificationMuteSettingsUI", + "//submodules/SinglePhoneInputNode:SinglePhoneInputNode", + "//submodules/MapResourceToAvatarSizes:MapResourceToAvatarSizes", + "//submodules/NotificationSoundSelectionUI:NotificationSoundSelectionUI", + "//submodules/EncryptionKeyVisualization:EncryptionKeyVisualization", + "//submodules/ItemListAddressItem:ItemListAddressItem", + "//submodules/DeviceProximity:DeviceProximity", + "//submodules/RaiseToListen:RaiseToListen", + "//submodules/OpusBinding:OpusBinding", + "//submodules/Opus:opus", + "//submodules/WatchBridgeAudio:WatchBridgeAudio", + "//submodules/WatchBridge:WatchBridge", + "//submodules/LegacyDataImport:LegacyDataImport", + "//submodules/ShareItems:ShareItems", + "//submodules/ReactionSelectionNode:ReactionSelectionNode", + "//submodules/SettingsUI:SettingsUI", + "//submodules/UrlHandling:UrlHandling", + "//submodules/HexColor:HexColor", + "//submodules/QrCode:QrCode", + "//submodules/WallpaperResources:WallpaperResources", + "//submodules/AuthorizationUI:AuthorizationUI", + "//submodules/CounterContollerTitleView:CounterContollerTitleView", + "//submodules/GridMessageSelectionNode:GridMessageSelectionNode", + "//submodules/InstantPageCache:InstantPageCache", + "//submodules/PersistentStringHash:PersistentStringHash", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/CoreAudio.framework", + "$SDKROOT/System/Library/Frameworks/CallKit.framework", + "$SDKROOT/System/Library/Frameworks/Contacts.framework", + "$SDKROOT/System/Library/Frameworks/PassKit.framework", + "$SDKROOT/System/Library/Frameworks/WebKit.framework", + "$SDKROOT/System/Library/Frameworks/Vision.framework", + "$SDKROOT/System/Library/Frameworks/PushKit.framework", + ], +) diff --git a/submodules/TelegramUI/TelegramUI/AppDelegate.swift b/submodules/TelegramUI/TelegramUI/AppDelegate.swift index 80e1b842af..e863665f72 100644 --- a/submodules/TelegramUI/TelegramUI/AppDelegate.swift +++ b/submodules/TelegramUI/TelegramUI/AppDelegate.swift @@ -233,6 +233,7 @@ final class SharedApplicationContext { let launchStartTime = CFAbsoluteTimeGetCurrent() + let statusBarHost = ApplicationStatusBarHost() let (window, hostView, aboveStatusbarWindow) = nativeWindowHostView() self.mainWindow = Window1(hostView: hostView, statusBarHost: statusBarHost) diff --git a/submodules/TelegramUI/TelegramUI/ConvertToWebP.swift b/submodules/TelegramUI/TelegramUI/ConvertToWebP.swift index 664cb74006..029f42b8f7 100644 --- a/submodules/TelegramUI/TelegramUI/ConvertToWebP.swift +++ b/submodules/TelegramUI/TelegramUI/ConvertToWebP.swift @@ -2,7 +2,11 @@ import UIKit import SwiftSignalKit import LegacyComponents import Display +#if BUCK +import WebPImage +#else import WebP +#endif private func scaleImage(_ image: UIImage, dimensions: CGSize) -> UIImage? { if #available(iOSApplicationExtension 10.0, iOS 10.0, *) { diff --git a/submodules/TelegramUI/TelegramUI/EmojiResources.swift b/submodules/TelegramUI/TelegramUI/EmojiResources.swift index c00742693a..045c0e8a71 100644 --- a/submodules/TelegramUI/TelegramUI/EmojiResources.swift +++ b/submodules/TelegramUI/TelegramUI/EmojiResources.swift @@ -4,7 +4,11 @@ import Postbox import TelegramCore import SwiftSignalKit import Display +#if BUCK +import WebPImage +#else import WebP +#endif import MediaResources import Emoji diff --git a/submodules/TelegramUI/TelegramUI/FetchCachedRepresentations.swift b/submodules/TelegramUI/TelegramUI/FetchCachedRepresentations.swift index a5fd7c98cd..298f544eff 100644 --- a/submodules/TelegramUI/TelegramUI/FetchCachedRepresentations.swift +++ b/submodules/TelegramUI/TelegramUI/FetchCachedRepresentations.swift @@ -7,7 +7,11 @@ import ImageIO import MobileCoreServices import Display import AVFoundation +#if BUCK +import WebPImage +#else import WebP +#endif import Lottie import MediaResources import PhotoResources diff --git a/submodules/TelegramUIPreferences/TelegramUIPreferences.xcodeproj/project.pbxproj b/submodules/TelegramUIPreferences/TelegramUIPreferences.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..1a1e4ae594 --- /dev/null +++ b/submodules/TelegramUIPreferences/TelegramUIPreferences.xcodeproj/project.pbxproj @@ -0,0 +1,845 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2919E3221200000000 + + isa + PBXFileReference + name + TelegramUIPreferences-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramUIPreferences/TelegramUIPreferences-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2912C57CFC00000000 + + isa + PBXFileReference + name + TelegramUIPreferences-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramUIPreferences/TelegramUIPreferences-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29865C285E00000000 + + isa + PBXFileReference + name + TelegramUIPreferences-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramUIPreferences/TelegramUIPreferences-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2919E3221200000000 + 1DD70E2912C57CFC00000000 + 1DD70E29865C285E00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E292395015100000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29085C57E400000000 + + isa + PBXFileReference + name + CallListSettings.swift + path + Sources/CallListSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E295E84555200000000 + + isa + PBXFileReference + name + ChatArchiveSettings.swift + path + Sources/ChatArchiveSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E3614AE800000000 + + isa + PBXFileReference + name + ContactSynchronizationSettings.swift + path + Sources/ContactSynchronizationSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E294BB18FB000000000 + + isa + PBXFileReference + name + ExperimentalSettings.swift + path + Sources/ExperimentalSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E2977CCE54400000000 + + isa + PBXFileReference + name + ExperimentalUISettings.swift + path + Sources/ExperimentalUISettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E291F4F4DD400000000 + + isa + PBXFileReference + name + GeneratedMediaStoreSettings.swift + path + Sources/GeneratedMediaStoreSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E2998C4E60F00000000 + + isa + PBXFileReference + name + InAppNotificationSettings.swift + path + Sources/InAppNotificationSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B75EB25200000000 + + isa + PBXFileReference + name + InstantPagePresentationSettings.swift + path + Sources/InstantPagePresentationSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C1C3E69200000000 + + isa + PBXFileReference + name + LegacyAutomaticMediaDownloadSettings.swift + path + Sources/LegacyAutomaticMediaDownloadSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29380BC2A300000000 + + isa + PBXFileReference + name + MediaAutoDownloadSettings.swift + path + Sources/MediaAutoDownloadSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D753C48E00000000 + + isa + PBXFileReference + name + MediaInputSettings.swift + path + Sources/MediaInputSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29880B7FE800000000 + + isa + PBXFileReference + name + MusicPlaybackSettings.swift + path + Sources/MusicPlaybackSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E296B31950400000000 + + isa + PBXFileReference + name + PostboxKeys.swift + path + Sources/PostboxKeys.swift + sourceTree + SOURCE_ROOT + + 1DD70E2936AE718000000000 + + isa + PBXFileReference + name + PresentationPasscodeSettings.swift + path + Sources/PresentationPasscodeSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29A144151700000000 + + isa + PBXFileReference + name + PresentationThemeSettings.swift + path + Sources/PresentationThemeSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E29999D3D9600000000 + + isa + PBXFileReference + name + RenderedTotalUnreadCount.swift + path + Sources/RenderedTotalUnreadCount.swift + sourceTree + SOURCE_ROOT + + 1DD70E2937CCB70500000000 + + isa + PBXFileReference + name + StickerSettings.swift + path + Sources/StickerSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E294C28173800000000 + + isa + PBXFileReference + name + VoiceCallSettings.swift + path + Sources/VoiceCallSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E299D781DF900000000 + + isa + PBXFileReference + name + VoipDerivedState.swift + path + Sources/VoipDerivedState.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B7EF989600000000 + + isa + PBXFileReference + name + WatchPresetSettings.swift + path + Sources/WatchPresetSettings.swift + sourceTree + SOURCE_ROOT + + 1DD70E2991A611A400000000 + + isa + PBXFileReference + name + WebSearchSettings.swift + path + Sources/WebSearchSettings.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29085C57E400000000 + 1DD70E295E84555200000000 + 1DD70E29E3614AE800000000 + 1DD70E294BB18FB000000000 + 1DD70E2977CCE54400000000 + 1DD70E291F4F4DD400000000 + 1DD70E2998C4E60F00000000 + 1DD70E29B75EB25200000000 + 1DD70E29C1C3E69200000000 + 1DD70E29380BC2A300000000 + 1DD70E29D753C48E00000000 + 1DD70E29880B7FE800000000 + 1DD70E296B31950400000000 + 1DD70E2936AE718000000000 + 1DD70E29A144151700000000 + 1DD70E29999D3D9600000000 + 1DD70E2937CCB70500000000 + 1DD70E294C28173800000000 + 1DD70E299D781DF900000000 + 1DD70E29B7EF989600000000 + 1DD70E2991A611A400000000 + + + B401C9793286A84300000000 + + isa + PBXGroup + name + TelegramUIPreferences + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9793286A84300000000 + + + E7A30F04085C57E400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29085C57E400000000 + + E7A30F045E84555200000000 + + isa + PBXBuildFile + fileRef + 1DD70E295E84555200000000 + + E7A30F04E3614AE800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E3614AE800000000 + + E7A30F044BB18FB000000000 + + isa + PBXBuildFile + fileRef + 1DD70E294BB18FB000000000 + + E7A30F0477CCE54400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2977CCE54400000000 + + E7A30F041F4F4DD400000000 + + isa + PBXBuildFile + fileRef + 1DD70E291F4F4DD400000000 + + E7A30F0498C4E60F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2998C4E60F00000000 + + E7A30F04B75EB25200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B75EB25200000000 + + E7A30F04C1C3E69200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C1C3E69200000000 + + E7A30F04380BC2A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29380BC2A300000000 + + E7A30F04D753C48E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D753C48E00000000 + + E7A30F04880B7FE800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29880B7FE800000000 + + E7A30F046B31950400000000 + + isa + PBXBuildFile + fileRef + 1DD70E296B31950400000000 + + E7A30F0436AE718000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936AE718000000000 + + E7A30F04A144151700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A144151700000000 + + E7A30F04999D3D9600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29999D3D9600000000 + + E7A30F0437CCB70500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2937CCB70500000000 + + E7A30F044C28173800000000 + + isa + PBXBuildFile + fileRef + 1DD70E294C28173800000000 + + E7A30F049D781DF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D781DF900000000 + + E7A30F04B7EF989600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B7EF989600000000 + + E7A30F0491A611A400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2991A611A400000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04085C57E400000000 + E7A30F045E84555200000000 + E7A30F04E3614AE800000000 + E7A30F044BB18FB000000000 + E7A30F0477CCE54400000000 + E7A30F041F4F4DD400000000 + E7A30F0498C4E60F00000000 + E7A30F04B75EB25200000000 + E7A30F04C1C3E69200000000 + E7A30F04380BC2A300000000 + E7A30F04D753C48E00000000 + E7A30F04880B7FE800000000 + E7A30F046B31950400000000 + E7A30F0436AE718000000000 + E7A30F04A144151700000000 + E7A30F04999D3D9600000000 + E7A30F0437CCB70500000000 + E7A30F044C28173800000000 + E7A30F049D781DF900000000 + E7A30F04B7EF989600000000 + E7A30F0491A611A400000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2919E3221200000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2912C57CFC00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29865C285E00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E3286A84300000000 + + isa + PBXNativeTarget + name + TelegramUIPreferences + productName + TelegramUIPreferences + productReference + 1DD70E292395015100000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847933286A84300000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E3286A84300000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847933286A84300000000 + + \ No newline at end of file diff --git a/submodules/TelegramUIPreferences/TelegramUIPreferences.xcodeproj/xcshareddata/xcschemes/TelegramUIPreferences.xcscheme b/submodules/TelegramUIPreferences/TelegramUIPreferences.xcodeproj/xcshareddata/xcschemes/TelegramUIPreferences.xcscheme new file mode 100644 index 0000000000..de583e1996 --- /dev/null +++ b/submodules/TelegramUIPreferences/TelegramUIPreferences.xcodeproj/xcshareddata/xcschemes/TelegramUIPreferences.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramUniversalVideoContent/TelegramUniversalVideoContent.xcodeproj/project.pbxproj b/submodules/TelegramUniversalVideoContent/TelegramUniversalVideoContent.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..e1ea8e76ff --- /dev/null +++ b/submodules/TelegramUniversalVideoContent/TelegramUniversalVideoContent.xcodeproj/project.pbxproj @@ -0,0 +1,1121 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29FB459CED00000000 + + isa + PBXFileReference + name + TelegramUniversalVideoContent-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramUniversalVideoContent/TelegramUniversalVideoContent-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292574AD1700000000 + + isa + PBXFileReference + name + TelegramUniversalVideoContent-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramUniversalVideoContent/TelegramUniversalVideoContent-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29990B587900000000 + + isa + PBXFileReference + name + TelegramUniversalVideoContent-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramUniversalVideoContent/TelegramUniversalVideoContent-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29FB459CED00000000 + 1DD70E292574AD1700000000 + 1DD70E29990B587900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29C7E0F39600000000 + + isa + PBXFileReference + name + libTelegramUniversalVideoContent.a + path + libTelegramUniversalVideoContent.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29C7E0F39600000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29234A56D300000000 + + isa + PBXFileReference + name + ChatBubbleInstantVideoDecoration.swift + path + Sources/ChatBubbleInstantVideoDecoration.swift + sourceTree + SOURCE_ROOT + + 1DD70E294730C22C00000000 + + isa + PBXFileReference + name + ChatBubbleVideoDecoration.swift + path + Sources/ChatBubbleVideoDecoration.swift + sourceTree + SOURCE_ROOT + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29688CAF5900000000 + + isa + PBXFileReference + name + GenericEmbedImplementation.swift + path + Sources/GenericEmbedImplementation.swift + sourceTree + SOURCE_ROOT + + 1DD70E2968CBD43A00000000 + + isa + PBXFileReference + name + NativeVideoContent.swift + path + Sources/NativeVideoContent.swift + sourceTree + SOURCE_ROOT + + 1DD70E2949BD0C8700000000 + + isa + PBXFileReference + name + OverlayUniversalVideoNode.swift + path + Sources/OverlayUniversalVideoNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2906EA93A000000000 + + isa + PBXFileReference + name + OverlayVideoDecoration.swift + path + Sources/OverlayVideoDecoration.swift + sourceTree + SOURCE_ROOT + + 1DD70E295CA4D6FD00000000 + + isa + PBXFileReference + name + PictureInPictureVideoControlsNode.swift + path + Sources/PictureInPictureVideoControlsNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B5F3859600000000 + + isa + PBXFileReference + name + PlatformVideoContent.swift + path + Sources/PlatformVideoContent.swift + sourceTree + SOURCE_ROOT + + 1DD70E29591AA05200000000 + + isa + PBXFileReference + name + SystemVideoContent.swift + path + Sources/SystemVideoContent.swift + sourceTree + SOURCE_ROOT + + 1DD70E29F9A101C900000000 + + isa + PBXFileReference + name + UniversalVideoContentManager.swift + path + Sources/UniversalVideoContentManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E297539EF8C00000000 + + isa + PBXFileReference + name + VimeoEmbedImplementation.swift + path + Sources/VimeoEmbedImplementation.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C77D670D00000000 + + isa + PBXFileReference + name + WebEmbedPlayerNode.swift + path + Sources/WebEmbedPlayerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E298E276C8800000000 + + isa + PBXFileReference + name + WebEmbedVideoContent.swift + path + Sources/WebEmbedVideoContent.swift + sourceTree + SOURCE_ROOT + + 1DD70E29825E5B8D00000000 + + isa + PBXFileReference + name + YoutubeEmbedImplementation.swift + path + Sources/YoutubeEmbedImplementation.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29234A56D300000000 + 1DD70E294730C22C00000000 + 1DD70E291289FAA500000000 + 1DD70E29688CAF5900000000 + 1DD70E2968CBD43A00000000 + 1DD70E2949BD0C8700000000 + 1DD70E2906EA93A000000000 + 1DD70E295CA4D6FD00000000 + 1DD70E29B5F3859600000000 + 1DD70E29591AA05200000000 + 1DD70E29F9A101C900000000 + 1DD70E297539EF8C00000000 + 1DD70E29C77D670D00000000 + 1DD70E298E276C8800000000 + 1DD70E29825E5B8D00000000 + + + B401C979038732C800000000 + + isa + PBXGroup + name + TelegramUniversalVideoContent + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979038732C800000000 + + + E7A30F04234A56D300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29234A56D300000000 + + E7A30F044730C22C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E294730C22C00000000 + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04688CAF5900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29688CAF5900000000 + + E7A30F0468CBD43A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2968CBD43A00000000 + + E7A30F0449BD0C8700000000 + + isa + PBXBuildFile + fileRef + 1DD70E2949BD0C8700000000 + + E7A30F0406EA93A000000000 + + isa + PBXBuildFile + fileRef + 1DD70E2906EA93A000000000 + + E7A30F045CA4D6FD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295CA4D6FD00000000 + + E7A30F04B5F3859600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B5F3859600000000 + + E7A30F04591AA05200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29591AA05200000000 + + E7A30F04F9A101C900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F9A101C900000000 + + E7A30F047539EF8C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E297539EF8C00000000 + + E7A30F04C77D670D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C77D670D00000000 + + E7A30F048E276C8800000000 + + isa + PBXBuildFile + fileRef + 1DD70E298E276C8800000000 + + E7A30F04825E5B8D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29825E5B8D00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04234A56D300000000 + E7A30F044730C22C00000000 + E7A30F041289FAA500000000 + E7A30F04688CAF5900000000 + E7A30F0468CBD43A00000000 + E7A30F0449BD0C8700000000 + E7A30F0406EA93A000000000 + E7A30F045CA4D6FD00000000 + E7A30F04B5F3859600000000 + E7A30F04591AA05200000000 + E7A30F04F9A101C900000000 + E7A30F047539EF8C00000000 + E7A30F04C77D670D00000000 + E7A30F048E276C8800000000 + E7A30F04825E5B8D00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04CD296A8300000000 + E7A30F04490601EB00000000 + E7A30F043E4DE92B00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29FB459CED00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E292574AD1700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29990B587900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E038732C800000000 + + isa + PBXNativeTarget + name + TelegramUniversalVideoContent + productName + TelegramUniversalVideoContent + productReference + 1DD70E29C7E0F39600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793038732C800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E038732C800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793038732C800000000 + + \ No newline at end of file diff --git a/submodules/TelegramUniversalVideoContent/TelegramUniversalVideoContent.xcodeproj/xcshareddata/xcschemes/TelegramUniversalVideoContent.xcscheme b/submodules/TelegramUniversalVideoContent/TelegramUniversalVideoContent.xcodeproj/xcshareddata/xcschemes/TelegramUniversalVideoContent.xcscheme new file mode 100644 index 0000000000..e0c65cdc8c --- /dev/null +++ b/submodules/TelegramUniversalVideoContent/TelegramUniversalVideoContent.xcodeproj/xcshareddata/xcschemes/TelegramUniversalVideoContent.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramUpdateUI/BUCK b/submodules/TelegramUpdateUI/BUCK new file mode 100644 index 0000000000..760c462cc2 --- /dev/null +++ b/submodules/TelegramUpdateUI/BUCK @@ -0,0 +1,21 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "TelegramUpdateUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/ItemListUI:ItemListUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/TelegramUpdateUI/TelegramUpdateUI.xcodeproj/project.pbxproj b/submodules/TelegramUpdateUI/TelegramUpdateUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..2671cccedf --- /dev/null +++ b/submodules/TelegramUpdateUI/TelegramUpdateUI.xcodeproj/project.pbxproj @@ -0,0 +1,949 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2983385B9700000000 + + isa + PBXFileReference + name + TelegramUpdateUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramUpdateUI/TelegramUpdateUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E297BB2694100000000 + + isa + PBXFileReference + name + TelegramUpdateUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramUpdateUI/TelegramUpdateUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29EF4914A300000000 + + isa + PBXFileReference + name + TelegramUpdateUI-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramUpdateUI/TelegramUpdateUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2983385B9700000000 + 1DD70E297BB2694100000000 + 1DD70E29EF4914A300000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E2997B4D6D800000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E295A26607D00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29C892471600000000 + + isa + PBXFileReference + name + libTelegramUpdateUI.a + path + libTelegramUpdateUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29C892471600000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E293C49C09800000000 + + isa + PBXFileReference + name + UpdateInfoController.swift + path + Sources/UpdateInfoController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2919A3300F00000000 + + isa + PBXFileReference + name + UpdateInfoItem.swift + path + Sources/UpdateInfoItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E293C49C09800000000 + 1DD70E2919A3300F00000000 + + + B401C97944A8355E00000000 + + isa + PBXGroup + name + TelegramUpdateUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C97944A8355E00000000 + + + E7A30F043C49C09800000000 + + isa + PBXBuildFile + fileRef + 1DD70E293C49C09800000000 + + E7A30F0419A3300F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2919A3300F00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F043C49C09800000000 + E7A30F0419A3300F00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F0497B4D6D800000000 + E7A30F04C37F741500000000 + E7A30F04BF0846EE00000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2983385B9700000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E297BB2694100000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29EF4914A300000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E44A8355E00000000 + + isa + PBXNativeTarget + name + TelegramUpdateUI + productName + TelegramUpdateUI + productReference + 1DD70E29C892471600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479344A8355E00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E44A8355E00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479344A8355E00000000 + + \ No newline at end of file diff --git a/submodules/TelegramUpdateUI/TelegramUpdateUI.xcodeproj/xcshareddata/xcschemes/TelegramUpdateUI.xcscheme b/submodules/TelegramUpdateUI/TelegramUpdateUI.xcodeproj/xcshareddata/xcschemes/TelegramUpdateUI.xcscheme new file mode 100644 index 0000000000..7682347f16 --- /dev/null +++ b/submodules/TelegramUpdateUI/TelegramUpdateUI.xcodeproj/xcshareddata/xcschemes/TelegramUpdateUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramVoip/BUCK b/submodules/TelegramVoip/BUCK new file mode 100644 index 0000000000..4e59ef3bf9 --- /dev/null +++ b/submodules/TelegramVoip/BUCK @@ -0,0 +1,25 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "TelegramVoip", + srcs = glob([ + "Sources/**/*.swift", + "Sources/**/*.m", + ]), + headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/TelegramVoip.h"]), + exported_headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/TelegramVoip.h"]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/libtgvoip:libtgvoip", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + ], +) diff --git a/submodules/TelegramVoip/Sources/OngoingCallContext.swift b/submodules/TelegramVoip/Sources/OngoingCallContext.swift index 440bb59fda..c633873966 100644 --- a/submodules/TelegramVoip/Sources/OngoingCallContext.swift +++ b/submodules/TelegramVoip/Sources/OngoingCallContext.swift @@ -3,6 +3,7 @@ import SwiftSignalKit import TelegramCore import Postbox import TelegramUIPreferences +import libtgvoip private func callConnectionDescription(_ connection: CallSessionConnection) -> OngoingCallConnectionDescription { return OngoingCallConnectionDescription(connectionId: connection.id, ip: connection.ip, ipv6: connection.ipv6, port: connection.port, peerTag: connection.peerTag) diff --git a/submodules/TelegramVoip/Sources/TelegramVoip.h b/submodules/TelegramVoip/Sources/TelegramVoip.h index 2043b2c1d8..0452cc7833 100644 --- a/submodules/TelegramVoip/Sources/TelegramVoip.h +++ b/submodules/TelegramVoip/Sources/TelegramVoip.h @@ -5,5 +5,3 @@ FOUNDATION_EXPORT double TelegramVoipVersionNumber; //! Project version string for TelegramVoip. FOUNDATION_EXPORT const unsigned char TelegramVoipVersionString[]; - -#import diff --git a/submodules/TelegramVoip/TelegramVoip.xcodeproj/project.pbxproj b/submodules/TelegramVoip/TelegramVoip.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..cbbc4d9783 --- /dev/null +++ b/submodules/TelegramVoip/TelegramVoip.xcodeproj/project.pbxproj @@ -0,0 +1,467 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29A010F03400000000 + + isa + PBXFileReference + name + TelegramVoip-Debug.xcconfig + path + ../../buck-out/gen/submodules/TelegramVoip/TelegramVoip-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29C4B84A9E00000000 + + isa + PBXFileReference + name + TelegramVoip-Profile.xcconfig + path + ../../buck-out/gen/submodules/TelegramVoip/TelegramVoip-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29384EF60000000000 + + isa + PBXFileReference + name + TelegramVoip-Release.xcconfig + path + ../../buck-out/gen/submodules/TelegramVoip/TelegramVoip-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29A010F03400000000 + 1DD70E29C4B84A9E00000000 + 1DD70E29384EF60000000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E292395015100000000 + + + 1DD70E29F18DE1D900000000 + + isa + PBXFileReference + name + libTelegramVoip.a + path + libTelegramVoip.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29F18DE1D900000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2965D8C13B00000000 + + isa + PBXFileReference + name + OngoingCallContext.swift + path + Sources/OngoingCallContext.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2965D8C13B00000000 + + + B401C979D84E9A6100000000 + + isa + PBXGroup + name + TelegramVoip + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979D84E9A6100000000 + + + E7A30F0465D8C13B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2965D8C13B00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0465D8C13B00000000 + + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F04FF334B1F00000000 + E7A30F042395015100000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29A010F03400000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29C4B84A9E00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29384EF60000000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04ED84E9A6100000000 + + isa + PBXNativeTarget + name + TelegramVoip + productName + TelegramVoip + productReference + 1DD70E29F18DE1D900000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793D84E9A6100000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04ED84E9A6100000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793D84E9A6100000000 + + \ No newline at end of file diff --git a/submodules/TelegramVoip/TelegramVoip.xcodeproj/xcshareddata/xcschemes/TelegramVoip.xcscheme b/submodules/TelegramVoip/TelegramVoip.xcodeproj/xcshareddata/xcschemes/TelegramVoip.xcscheme new file mode 100644 index 0000000000..fde60a941c --- /dev/null +++ b/submodules/TelegramVoip/TelegramVoip.xcodeproj/xcshareddata/xcschemes/TelegramVoip.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TelegramVoip/TelegramVoip_Xcode.xcodeproj/project.pbxproj b/submodules/TelegramVoip/TelegramVoip_Xcode.xcodeproj/project.pbxproj index 771f3dcc53..ecf8b393b0 100644 --- a/submodules/TelegramVoip/TelegramVoip_Xcode.xcodeproj/project.pbxproj +++ b/submodules/TelegramVoip/TelegramVoip_Xcode.xcodeproj/project.pbxproj @@ -7,9 +7,8 @@ objects = { /* Begin PBXBuildFile section */ + D03292DF2314239E00338D35 /* libtgvoip.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D03292DE2314239E00338D35 /* libtgvoip.framework */; }; D0AE316922B2694E0058D3BC /* TelegramVoip.h in Headers */ = {isa = PBXBuildFile; fileRef = D0AE316722B2694E0058D3BC /* TelegramVoip.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D0AE317122B269E40058D3BC /* OngoingCallThreadLocalContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = D0AE316F22B269E30058D3BC /* OngoingCallThreadLocalContext.mm */; }; - D0AE317222B269E40058D3BC /* OngoingCallThreadLocalContext.h in Headers */ = {isa = PBXBuildFile; fileRef = D0AE317022B269E40058D3BC /* OngoingCallThreadLocalContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; D0AE317622B26F020058D3BC /* OngoingCallContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0AE317522B26F010058D3BC /* OngoingCallContext.swift */; }; D0AE317922B26F400058D3BC /* Postbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0AE317822B26F400058D3BC /* Postbox.framework */; }; D0AE317B22B26F470058D3BC /* TelegramCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0AE317A22B26F470058D3BC /* TelegramCore.framework */; }; @@ -18,11 +17,10 @@ /* End PBXBuildFile section */ /* Begin PBXFileReference section */ + D03292DE2314239E00338D35 /* libtgvoip.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = libtgvoip.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D0AE316422B2694E0058D3BC /* TelegramVoip.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TelegramVoip.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D0AE316722B2694E0058D3BC /* TelegramVoip.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TelegramVoip.h; sourceTree = ""; }; D0AE316822B2694E0058D3BC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - D0AE316F22B269E30058D3BC /* OngoingCallThreadLocalContext.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = OngoingCallThreadLocalContext.mm; sourceTree = ""; }; - D0AE317022B269E40058D3BC /* OngoingCallThreadLocalContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OngoingCallThreadLocalContext.h; sourceTree = ""; }; D0AE317522B26F010058D3BC /* OngoingCallContext.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OngoingCallContext.swift; sourceTree = ""; }; D0AE317822B26F400058D3BC /* Postbox.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Postbox.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D0AE317A22B26F470058D3BC /* TelegramCore.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = TelegramCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -35,6 +33,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + D03292DF2314239E00338D35 /* libtgvoip.framework in Frameworks */, D0AE317F22B26F6B0058D3BC /* TelegramUIPreferences.framework in Frameworks */, D0AE317D22B26F4B0058D3BC /* SwiftSignalKit.framework in Frameworks */, D0AE317B22B26F470058D3BC /* TelegramCore.framework in Frameworks */, @@ -67,8 +66,6 @@ isa = PBXGroup; children = ( D0AE317522B26F010058D3BC /* OngoingCallContext.swift */, - D0AE317022B269E40058D3BC /* OngoingCallThreadLocalContext.h */, - D0AE316F22B269E30058D3BC /* OngoingCallThreadLocalContext.mm */, D0AE316722B2694E0058D3BC /* TelegramVoip.h */, ); path = Sources; @@ -77,6 +74,7 @@ D0AE317722B26F400058D3BC /* Frameworks */ = { isa = PBXGroup; children = ( + D03292DE2314239E00338D35 /* libtgvoip.framework */, D0AE317E22B26F6B0058D3BC /* TelegramUIPreferences.framework */, D0AE317C22B26F4B0058D3BC /* SwiftSignalKit.framework */, D0AE317A22B26F470058D3BC /* TelegramCore.framework */, @@ -92,7 +90,6 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D0AE317222B269E40058D3BC /* OngoingCallThreadLocalContext.h in Headers */, D0AE316922B2694E0058D3BC /* TelegramVoip.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; @@ -166,7 +163,6 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D0AE317122B269E40058D3BC /* OngoingCallThreadLocalContext.mm in Sources */, D0AE317622B26F020058D3BC /* OngoingCallContext.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/submodules/TemporaryCachedPeerDataManager/TemporaryCachedPeerDataManager.xcodeproj/project.pbxproj b/submodules/TemporaryCachedPeerDataManager/TemporaryCachedPeerDataManager.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..1ab5e86d75 --- /dev/null +++ b/submodules/TemporaryCachedPeerDataManager/TemporaryCachedPeerDataManager.xcodeproj/project.pbxproj @@ -0,0 +1,639 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29BAE3C44700000000 + + isa + PBXFileReference + name + TemporaryCachedPeerDataManager-Debug.xcconfig + path + ../../buck-out/gen/submodules/TemporaryCachedPeerDataManager/TemporaryCachedPeerDataManager-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29762665F100000000 + + isa + PBXFileReference + name + TemporaryCachedPeerDataManager-Profile.xcconfig + path + ../../buck-out/gen/submodules/TemporaryCachedPeerDataManager/TemporaryCachedPeerDataManager-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29E9BD115300000000 + + isa + PBXFileReference + name + TemporaryCachedPeerDataManager-Release.xcconfig + path + ../../buck-out/gen/submodules/TemporaryCachedPeerDataManager/TemporaryCachedPeerDataManager-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29BAE3C44700000000 + 1DD70E29762665F100000000 + 1DD70E29E9BD115300000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29F0C15F9C00000000 + + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29BA06E3A600000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29104362AA00000000 + + isa + PBXFileReference + name + CachedChannelAdmins.swift + path + Sources/CachedChannelAdmins.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B40D8CDB00000000 + + isa + PBXFileReference + name + ChannelMemberCategoryListContext.swift + path + Sources/ChannelMemberCategoryListContext.swift + sourceTree + SOURCE_ROOT + + 1DD70E29C0D7B2F700000000 + + isa + PBXFileReference + name + PeerChannelMemberCategoriesContextsManager.swift + path + Sources/PeerChannelMemberCategoriesContextsManager.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29104362AA00000000 + 1DD70E29B40D8CDB00000000 + 1DD70E29C0D7B2F700000000 + + + B401C979418E82AE00000000 + + isa + PBXGroup + name + TemporaryCachedPeerDataManager + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979418E82AE00000000 + + + E7A30F04104362AA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29104362AA00000000 + + E7A30F04B40D8CDB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B40D8CDB00000000 + + E7A30F04C0D7B2F700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C0D7B2F700000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04104362AA00000000 + E7A30F04B40D8CDB00000000 + E7A30F04C0D7B2F700000000 + + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F04FF334B1F00000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29BAE3C44700000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29762665F100000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29E9BD115300000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E418E82AE00000000 + + isa + PBXNativeTarget + name + TemporaryCachedPeerDataManager + productName + TemporaryCachedPeerDataManager + productReference + 1DD70E29BA06E3A600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793418E82AE00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E418E82AE00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793418E82AE00000000 + + \ No newline at end of file diff --git a/submodules/TemporaryCachedPeerDataManager/TemporaryCachedPeerDataManager.xcodeproj/xcshareddata/xcschemes/TemporaryCachedPeerDataManager.xcscheme b/submodules/TemporaryCachedPeerDataManager/TemporaryCachedPeerDataManager.xcodeproj/xcshareddata/xcschemes/TemporaryCachedPeerDataManager.xcscheme new file mode 100644 index 0000000000..2d9408a33e --- /dev/null +++ b/submodules/TemporaryCachedPeerDataManager/TemporaryCachedPeerDataManager.xcodeproj/xcshareddata/xcschemes/TemporaryCachedPeerDataManager.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TextFormat/TextFormat.xcodeproj/project.pbxproj b/submodules/TextFormat/TextFormat.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..5c70809e31 --- /dev/null +++ b/submodules/TextFormat/TextFormat.xcodeproj/project.pbxproj @@ -0,0 +1,611 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E291E224C9100000000 + + isa + PBXFileReference + name + TextFormat-Debug.xcconfig + path + ../../buck-out/gen/submodules/TextFormat/TextFormat-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2903E403BB00000000 + + isa + PBXFileReference + name + TextFormat-Profile.xcconfig + path + ../../buck-out/gen/submodules/TextFormat/TextFormat-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29777AAF1D00000000 + + isa + PBXFileReference + name + TextFormat-Release.xcconfig + path + ../../buck-out/gen/submodules/TextFormat/TextFormat-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E291E224C9100000000 + 1DD70E2903E403BB00000000 + 1DD70E29777AAF1D00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + 1DD70E2936DE2CF900000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E292395015100000000 + + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29F0C15F9C00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E299927476500000000 + + isa + PBXFileReference + name + AddFormatToStringWithRanges.swift + path + Sources/AddFormatToStringWithRanges.swift + sourceTree + SOURCE_ROOT + + 1DD70E29D54426E100000000 + + isa + PBXFileReference + name + ChatTextInputAttributes.swift + path + Sources/ChatTextInputAttributes.swift + sourceTree + SOURCE_ROOT + + 1DD70E294757B6A800000000 + + isa + PBXFileReference + name + GenerateTextEntities.swift + path + Sources/GenerateTextEntities.swift + sourceTree + SOURCE_ROOT + + 1DD70E29080E447400000000 + + isa + PBXFileReference + name + Markdown.swift + path + Sources/Markdown.swift + sourceTree + SOURCE_ROOT + + 1DD70E294ED72F2C00000000 + + isa + PBXFileReference + name + StringWithAppliedEntities.swift + path + Sources/StringWithAppliedEntities.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E70765FD00000000 + + isa + PBXFileReference + name + TelegramAttributes.swift + path + Sources/TelegramAttributes.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E299927476500000000 + 1DD70E29D54426E100000000 + 1DD70E294757B6A800000000 + 1DD70E29080E447400000000 + 1DD70E294ED72F2C00000000 + 1DD70E29E70765FD00000000 + + + B401C979CEBDAFA400000000 + + isa + PBXGroup + name + TextFormat + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979CEBDAFA400000000 + + + E7A30F049927476500000000 + + isa + PBXBuildFile + fileRef + 1DD70E299927476500000000 + + E7A30F04D54426E100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D54426E100000000 + + E7A30F044757B6A800000000 + + isa + PBXBuildFile + fileRef + 1DD70E294757B6A800000000 + + E7A30F04080E447400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29080E447400000000 + + E7A30F044ED72F2C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E294ED72F2C00000000 + + E7A30F04E70765FD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E70765FD00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F049927476500000000 + E7A30F04D54426E100000000 + E7A30F044757B6A800000000 + E7A30F04080E447400000000 + E7A30F044ED72F2C00000000 + E7A30F04E70765FD00000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04119CDA0700000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E291E224C9100000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2903E403BB00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29777AAF1D00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04ECEBDAFA400000000 + + isa + PBXNativeTarget + name + TextFormat + productName + TextFormat + productReference + 1DD70E29F0C15F9C00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793CEBDAFA400000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04ECEBDAFA400000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793CEBDAFA400000000 + + \ No newline at end of file diff --git a/submodules/TextFormat/TextFormat.xcodeproj/xcshareddata/xcschemes/TextFormat.xcscheme b/submodules/TextFormat/TextFormat.xcodeproj/xcshareddata/xcschemes/TextFormat.xcscheme new file mode 100644 index 0000000000..e807fb14f1 --- /dev/null +++ b/submodules/TextFormat/TextFormat.xcodeproj/xcshareddata/xcschemes/TextFormat.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TextSelectionNode/BUCK b/submodules/TextSelectionNode/BUCK new file mode 100644 index 0000000000..b21fafc146 --- /dev/null +++ b/submodules/TextSelectionNode/BUCK @@ -0,0 +1,16 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "TextSelectionNode", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/TextSelectionNode/TextSelectionNode.xcodeproj/project.pbxproj b/submodules/TextSelectionNode/TextSelectionNode.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..0bea68cd4e --- /dev/null +++ b/submodules/TextSelectionNode/TextSelectionNode.xcodeproj/project.pbxproj @@ -0,0 +1,379 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29E28C013400000000 + + isa + PBXFileReference + name + TextSelectionNode-Debug.xcconfig + path + ../../buck-out/gen/submodules/TextSelectionNode/TextSelectionNode-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2954B31B9E00000000 + + isa + PBXFileReference + name + TextSelectionNode-Profile.xcconfig + path + ../../buck-out/gen/submodules/TextSelectionNode/TextSelectionNode-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29C849C70000000000 + + isa + PBXFileReference + name + TextSelectionNode-Release.xcconfig + path + ../../buck-out/gen/submodules/TextSelectionNode/TextSelectionNode-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29E28C013400000000 + 1DD70E2954B31B9E00000000 + 1DD70E29C849C70000000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + + + 1DD70E29F40A586F00000000 + + isa + PBXFileReference + name + libTextSelectionNode.a + path + libTextSelectionNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29F40A586F00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E294658874600000000 + + isa + PBXFileReference + name + TextSelectionNode.swift + path + Sources/TextSelectionNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E294658874600000000 + + + B401C9795B33A96100000000 + + isa + PBXGroup + name + TextSelectionNode + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9795B33A96100000000 + + + E7A30F044658874600000000 + + isa + PBXBuildFile + fileRef + 1DD70E294658874600000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F044658874600000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29E28C013400000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2954B31B9E00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29C849C70000000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E5B33A96100000000 + + isa + PBXNativeTarget + name + TextSelectionNode + productName + TextSelectionNode + productReference + 1DD70E29F40A586F00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847935B33A96100000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E5B33A96100000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847935B33A96100000000 + + \ No newline at end of file diff --git a/submodules/TextSelectionNode/TextSelectionNode.xcodeproj/xcshareddata/xcschemes/TextSelectionNode.xcscheme b/submodules/TextSelectionNode/TextSelectionNode.xcodeproj/xcshareddata/xcschemes/TextSelectionNode.xcscheme new file mode 100644 index 0000000000..27bdb55d9b --- /dev/null +++ b/submodules/TextSelectionNode/TextSelectionNode.xcodeproj/xcshareddata/xcschemes/TextSelectionNode.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TinyThumbnail/TinyThumbnail.xcodeproj/project.pbxproj b/submodules/TinyThumbnail/TinyThumbnail.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..db18f14a9b --- /dev/null +++ b/submodules/TinyThumbnail/TinyThumbnail.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29E5FC7D8900000000 + + isa + PBXFileReference + name + TinyThumbnail-Debug.xcconfig + path + ../../buck-out/gen/submodules/TinyThumbnail/TinyThumbnail-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E293DF5D6B300000000 + + isa + PBXFileReference + name + TinyThumbnail-Profile.xcconfig + path + ../../buck-out/gen/submodules/TinyThumbnail/TinyThumbnail-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B18C821500000000 + + isa + PBXFileReference + name + TinyThumbnail-Release.xcconfig + path + ../../buck-out/gen/submodules/TinyThumbnail/TinyThumbnail-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29E5FC7D8900000000 + 1DD70E293DF5D6B300000000 + 1DD70E29B18C821500000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29B4B05B7A00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E294FDBE75100000000 + + isa + PBXFileReference + name + TinyThumbnail.swift + path + Sources/TinyThumbnail.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E294FDBE75100000000 + + + B401C979A296ADAC00000000 + + isa + PBXGroup + name + TinyThumbnail + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C979A296ADAC00000000 + + + E7A30F044FDBE75100000000 + + isa + PBXBuildFile + fileRef + 1DD70E294FDBE75100000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F044FDBE75100000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29E5FC7D8900000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E293DF5D6B300000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29B18C821500000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EA296ADAC00000000 + + isa + PBXNativeTarget + name + TinyThumbnail + productName + TinyThumbnail + productReference + 1DD70E29B4B05B7A00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793A296ADAC00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EA296ADAC00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793A296ADAC00000000 + + \ No newline at end of file diff --git a/submodules/TinyThumbnail/TinyThumbnail.xcodeproj/xcshareddata/xcschemes/TinyThumbnail.xcscheme b/submodules/TinyThumbnail/TinyThumbnail.xcodeproj/xcshareddata/xcschemes/TinyThumbnail.xcscheme new file mode 100644 index 0000000000..5e2b59fff1 --- /dev/null +++ b/submodules/TinyThumbnail/TinyThumbnail.xcodeproj/xcshareddata/xcschemes/TinyThumbnail.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/TouchDownGesture/BUCK b/submodules/TouchDownGesture/BUCK new file mode 100644 index 0000000000..f5bba578ab --- /dev/null +++ b/submodules/TouchDownGesture/BUCK @@ -0,0 +1,12 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "TouchDownGesture", + srcs = glob([ + "Sources/**/*.swift", + ]), + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/TouchDownGesture/TouchDownGesture.xcodeproj/project.pbxproj b/submodules/TouchDownGesture/TouchDownGesture.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..12fb2e5616 --- /dev/null +++ b/submodules/TouchDownGesture/TouchDownGesture.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2934D39E0D00000000 + + isa + PBXFileReference + name + TouchDownGesture-Debug.xcconfig + path + ../../buck-out/gen/submodules/TouchDownGesture/TouchDownGesture-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E293386E63700000000 + + isa + PBXFileReference + name + TouchDownGesture-Profile.xcconfig + path + ../../buck-out/gen/submodules/TouchDownGesture/TouchDownGesture-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A71D919900000000 + + isa + PBXFileReference + name + TouchDownGesture-Release.xcconfig + path + ../../buck-out/gen/submodules/TouchDownGesture/TouchDownGesture-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2934D39E0D00000000 + 1DD70E293386E63700000000 + 1DD70E29A71D919900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29A9CE3CE000000000 + + isa + PBXFileReference + name + libTouchDownGesture.a + path + libTouchDownGesture.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29A9CE3CE000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29848C731100000000 + + isa + PBXFileReference + name + TouchDownGestureRecognizer.swift + path + Sources/TouchDownGestureRecognizer.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29848C731100000000 + + + B401C979F71B15A800000000 + + isa + PBXGroup + name + TouchDownGesture + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C979F71B15A800000000 + + + E7A30F04848C731100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29848C731100000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04848C731100000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2934D39E0D00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E293386E63700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29A71D919900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EF71B15A800000000 + + isa + PBXNativeTarget + name + TouchDownGesture + productName + TouchDownGesture + productReference + 1DD70E29A9CE3CE000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793F71B15A800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EF71B15A800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793F71B15A800000000 + + \ No newline at end of file diff --git a/submodules/TouchDownGesture/TouchDownGesture.xcodeproj/xcshareddata/xcschemes/TouchDownGesture.xcscheme b/submodules/TouchDownGesture/TouchDownGesture.xcodeproj/xcshareddata/xcschemes/TouchDownGesture.xcscheme new file mode 100644 index 0000000000..da56d34daa --- /dev/null +++ b/submodules/TouchDownGesture/TouchDownGesture.xcodeproj/xcshareddata/xcschemes/TouchDownGesture.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/Tuples/Tuples.xcodeproj/project.pbxproj b/submodules/Tuples/Tuples.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..e40784b225 --- /dev/null +++ b/submodules/Tuples/Tuples.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29B52AAB8A00000000 + + isa + PBXFileReference + name + Tuples-Debug.xcconfig + path + ../../buck-out/gen/submodules/Tuples/Tuples-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29FA50887400000000 + + isa + PBXFileReference + name + Tuples-Profile.xcconfig + path + ../../buck-out/gen/submodules/Tuples/Tuples-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E296DE733D600000000 + + isa + PBXFileReference + name + Tuples-Release.xcconfig + path + ../../buck-out/gen/submodules/Tuples/Tuples-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29B52AAB8A00000000 + 1DD70E29FA50887400000000 + 1DD70E296DE733D600000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29CD296A8300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29656B644D00000000 + + isa + PBXFileReference + name + Tuple.swift + path + Sources/Tuple.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29656B644D00000000 + + + B401C97995FC5DCB00000000 + + isa + PBXGroup + name + Tuples + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C97995FC5DCB00000000 + + + E7A30F04656B644D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29656B644D00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04656B644D00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29B52AAB8A00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29FA50887400000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E296DE733D600000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E95FC5DCB00000000 + + isa + PBXNativeTarget + name + Tuples + productName + Tuples + productReference + 1DD70E29CD296A8300000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479395FC5DCB00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E95FC5DCB00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479395FC5DCB00000000 + + \ No newline at end of file diff --git a/submodules/Tuples/Tuples.xcodeproj/xcshareddata/xcschemes/Tuples.xcscheme b/submodules/Tuples/Tuples.xcodeproj/xcshareddata/xcschemes/Tuples.xcscheme new file mode 100644 index 0000000000..f4bbd41260 --- /dev/null +++ b/submodules/Tuples/Tuples.xcodeproj/xcshareddata/xcschemes/Tuples.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/UndoUI/BUCK b/submodules/UndoUI/BUCK new file mode 100644 index 0000000000..c5b55d448b --- /dev/null +++ b/submodules/UndoUI/BUCK @@ -0,0 +1,24 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "UndoUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TextFormat:TextFormat", + "//submodules/AccountContext:AccountContext", + "//submodules/RadialStatusNode:RadialStatusNode", + "//submodules/AnimationUI:AnimationUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + ], +) diff --git a/submodules/UndoUI/UndoUI.xcodeproj/project.pbxproj b/submodules/UndoUI/UndoUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..1f71d151df --- /dev/null +++ b/submodules/UndoUI/UndoUI.xcodeproj/project.pbxproj @@ -0,0 +1,859 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2909838F1D00000000 + + isa + PBXFileReference + name + UndoUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/UndoUI/UndoUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E299BFED34700000000 + + isa + PBXFileReference + name + UndoUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/UndoUI/UndoUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E290F957EA900000000 + + isa + PBXFileReference + name + UndoUI-Release.xcconfig + path + ../../buck-out/gen/submodules/UndoUI/UndoUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2909838F1D00000000 + 1DD70E299BFED34700000000 + 1DD70E290F957EA900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E292420028600000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293E4DE92B00000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29AE67341000000000 + + isa + PBXFileReference + name + libUndoUI.a + path + libUndoUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29AE67341000000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29B729780D00000000 + + isa + PBXFileReference + name + UndoOverlayController.swift + path + Sources/UndoOverlayController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E5CC04AF00000000 + + isa + PBXFileReference + name + UndoOverlayControllerNode.swift + path + Sources/UndoOverlayControllerNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E29B729780D00000000 + 1DD70E29E5CC04AF00000000 + + + B401C9799749269800000000 + + isa + PBXGroup + name + UndoUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9799749269800000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04B729780D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B729780D00000000 + + E7A30F04E5CC04AF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E5CC04AF00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F04B729780D00000000 + E7A30F04E5CC04AF00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F043E4DE92B00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2909838F1D00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E299BFED34700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E290F957EA900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E9749269800000000 + + isa + PBXNativeTarget + name + UndoUI + productName + UndoUI + productReference + 1DD70E29AE67341000000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847939749269800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E9749269800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847939749269800000000 + + \ No newline at end of file diff --git a/submodules/UndoUI/UndoUI.xcodeproj/xcshareddata/xcschemes/UndoUI.xcscheme b/submodules/UndoUI/UndoUI.xcodeproj/xcshareddata/xcschemes/UndoUI.xcscheme new file mode 100644 index 0000000000..27a95cfe9f --- /dev/null +++ b/submodules/UndoUI/UndoUI.xcodeproj/xcshareddata/xcschemes/UndoUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/UrlEscaping/UrlEscaping.xcodeproj/project.pbxproj b/submodules/UrlEscaping/UrlEscaping.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..6e533f9172 --- /dev/null +++ b/submodules/UrlEscaping/UrlEscaping.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2987AD5DA800000000 + + isa + PBXFileReference + name + UrlEscaping-Debug.xcconfig + path + ../../buck-out/gen/submodules/UrlEscaping/UrlEscaping-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2936EF2B1200000000 + + isa + PBXFileReference + name + UrlEscaping-Profile.xcconfig + path + ../../buck-out/gen/submodules/UrlEscaping/UrlEscaping-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AA85D67400000000 + + isa + PBXFileReference + name + UrlEscaping-Release.xcconfig + path + ../../buck-out/gen/submodules/UrlEscaping/UrlEscaping-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2987AD5DA800000000 + 1DD70E2936EF2B1200000000 + 1DD70E29AA85D67400000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29597BAFBB00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E297E8B985200000000 + + isa + PBXFileReference + name + UrlEscaping.swift + path + Sources/UrlEscaping.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E297E8B985200000000 + + + B401C979371B736D00000000 + + isa + PBXGroup + name + UrlEscaping + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C979371B736D00000000 + + + E7A30F047E8B985200000000 + + isa + PBXBuildFile + fileRef + 1DD70E297E8B985200000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F047E8B985200000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2987AD5DA800000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2936EF2B1200000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29AA85D67400000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E371B736D00000000 + + isa + PBXNativeTarget + name + UrlEscaping + productName + UrlEscaping + productReference + 1DD70E29597BAFBB00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793371B736D00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E371B736D00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793371B736D00000000 + + \ No newline at end of file diff --git a/submodules/UrlEscaping/UrlEscaping.xcodeproj/xcshareddata/xcschemes/UrlEscaping.xcscheme b/submodules/UrlEscaping/UrlEscaping.xcodeproj/xcshareddata/xcschemes/UrlEscaping.xcscheme new file mode 100644 index 0000000000..c7c16bb5f9 --- /dev/null +++ b/submodules/UrlEscaping/UrlEscaping.xcodeproj/xcshareddata/xcschemes/UrlEscaping.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/UrlHandling/UrlHandling.xcodeproj/project.pbxproj b/submodules/UrlHandling/UrlHandling.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..7f8d1b4ba0 --- /dev/null +++ b/submodules/UrlHandling/UrlHandling.xcodeproj/project.pbxproj @@ -0,0 +1,709 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29FBA992E100000000 + + isa + PBXFileReference + name + UrlHandling-Debug.xcconfig + path + ../../buck-out/gen/submodules/UrlHandling/UrlHandling-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E299CB2F60B00000000 + + isa + PBXFileReference + name + UrlHandling-Profile.xcconfig + path + ../../buck-out/gen/submodules/UrlHandling/UrlHandling-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E291049A16D00000000 + + isa + PBXFileReference + name + UrlHandling-Release.xcconfig + path + ../../buck-out/gen/submodules/UrlHandling/UrlHandling-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29FBA992E100000000 + 1DD70E299CB2F60B00000000 + 1DD70E291049A16D00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E2951398CF200000000 + + + 1DD70E29D81471E200000000 + + isa + PBXFileReference + name + libUrlHandling.a + path + libUrlHandling.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29D81471E200000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29A118EEF900000000 + + isa + PBXFileReference + name + UrlHandling.swift + path + Sources/UrlHandling.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29A118EEF900000000 + + + B401C979C97C935400000000 + + isa + PBXGroup + name + UrlHandling + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979C97C935400000000 + + + E7A30F04A118EEF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A118EEF900000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04A118EEF900000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29FBA992E100000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E299CB2F60B00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E291049A16D00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EC97C935400000000 + + isa + PBXNativeTarget + name + UrlHandling + productName + UrlHandling + productReference + 1DD70E29D81471E200000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793C97C935400000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EC97C935400000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793C97C935400000000 + + \ No newline at end of file diff --git a/submodules/UrlHandling/UrlHandling.xcodeproj/xcshareddata/xcschemes/UrlHandling.xcscheme b/submodules/UrlHandling/UrlHandling.xcodeproj/xcshareddata/xcschemes/UrlHandling.xcscheme new file mode 100644 index 0000000000..92b0ee9620 --- /dev/null +++ b/submodules/UrlHandling/UrlHandling.xcodeproj/xcshareddata/xcschemes/UrlHandling.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/WallpaperResources/WallpaperResources.xcodeproj/project.pbxproj b/submodules/WallpaperResources/WallpaperResources.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..0e99adcde6 --- /dev/null +++ b/submodules/WallpaperResources/WallpaperResources.xcodeproj/project.pbxproj @@ -0,0 +1,883 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E299F2997F200000000 + + isa + PBXFileReference + name + WallpaperResources-Debug.xcconfig + path + ../../buck-out/gen/submodules/WallpaperResources/WallpaperResources-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E296045FADC00000000 + + isa + PBXFileReference + name + WallpaperResources-Profile.xcconfig + path + ../../buck-out/gen/submodules/WallpaperResources/WallpaperResources-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D3DCA63E00000000 + + isa + PBXFileReference + name + WallpaperResources-Release.xcconfig + path + ../../buck-out/gen/submodules/WallpaperResources/WallpaperResources-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E299F2997F200000000 + 1DD70E296045FADC00000000 + 1DD70E29D3DCA63E00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C6E517A300000000 + + isa + PBXFileReference + name + libImageCompression.a + path + libImageCompression.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2968BAC05A00000000 + + isa + PBXFileReference + name + libLocalMediaResources.a + path + libLocalMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29C6E517A300000000 + 1DD70E29247D9AC100000000 + 1DD70E2968BAC05A00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + + + 1DD70E29A7E1559B00000000 + + isa + PBXFileReference + name + libWallpaperResources.a + path + libWallpaperResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29A7E1559B00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29FC18C2C800000000 + + isa + PBXFileReference + name + WallpaperResources.swift + path + Sources/WallpaperResources.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E29FC18C2C800000000 + + + B401C979869F2E6300000000 + + isa + PBXGroup + name + WallpaperResources + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979869F2E6300000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04FC18C2C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FC18C2C800000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F04FC18C2C800000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04C6E517A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C6E517A300000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0468BAC05A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2968BAC05A00000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + E7A30F04D6F14E1000000000 + E7A30F04C6E517A300000000 + E7A30F04DB6520C800000000 + E7A30F04D65BA68200000000 + E7A30F04119CDA0700000000 + E7A30F0468BAC05A00000000 + E7A30F0436DE2CF900000000 + E7A30F045915423000000000 + E7A30F04F33FDAC300000000 + E7A30F0451398CF200000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04CD296A8300000000 + E7A30F04490601EB00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E299F2997F200000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E296045FADC00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29D3DCA63E00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E869F2E6300000000 + + isa + PBXNativeTarget + name + WallpaperResources + productName + WallpaperResources + productReference + 1DD70E29A7E1559B00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793869F2E6300000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E869F2E6300000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793869F2E6300000000 + + \ No newline at end of file diff --git a/submodules/WallpaperResources/WallpaperResources.xcodeproj/xcshareddata/xcschemes/WallpaperResources.xcscheme b/submodules/WallpaperResources/WallpaperResources.xcodeproj/xcshareddata/xcschemes/WallpaperResources.xcscheme new file mode 100644 index 0000000000..7176c028a5 --- /dev/null +++ b/submodules/WallpaperResources/WallpaperResources.xcodeproj/xcshareddata/xcschemes/WallpaperResources.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/WatchBridge/BUCK b/submodules/WatchBridge/BUCK new file mode 100644 index 0000000000..84b03d109d --- /dev/null +++ b/submodules/WatchBridge/BUCK @@ -0,0 +1,36 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "WatchBridge", + srcs = glob([ + "Sources/**/*.swift", + "Sources/**/*.m", + ]), + headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/WatchBridge.h"]), + exported_headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/WatchBridge.h"]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/SSignalKit/SSignalKit:SSignalKit", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/WatchCommon:WatchCommon", + "//submodules/WatchBridgeAudio:WatchBridgeAudio", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/AccountContext:AccountContext", + "//submodules/AvatarNode:AvatarNode", + "//submodules/StickerResources:StickerResources", + "//submodules/PhotoResources:PhotoResources", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/LegacyUI:LegacyUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/WatchConnectivity.framework", + ], +) diff --git a/submodules/WatchBridge/WatchBridge.xcodeproj/project.pbxproj b/submodules/WatchBridge/WatchBridge.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..0c7f994db7 --- /dev/null +++ b/submodules/WatchBridge/WatchBridge.xcodeproj/project.pbxproj @@ -0,0 +1,1027 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29E205009D00000000 + + isa + PBXFileReference + name + WatchBridge-Debug.xcconfig + path + ../../buck-out/gen/submodules/WatchBridge/WatchBridge-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2959E9E4C700000000 + + isa + PBXFileReference + name + WatchBridge-Profile.xcconfig + path + ../../buck-out/gen/submodules/WatchBridge/WatchBridge-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29CD80902900000000 + + isa + PBXFileReference + name + WatchBridge-Release.xcconfig + path + ../../buck-out/gen/submodules/WatchBridge/WatchBridge-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29E205009D00000000 + 1DD70E2959E9E4C700000000 + 1DD70E29CD80902900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2952137F3500000000 + + isa + PBXFileReference + name + libLegacyUI.a + path + libLegacyUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E296BAE375600000000 + + isa + PBXFileReference + name + libWatchBridgeAudio.a + path + libWatchBridgeAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29D6F14E1000000000 + 1DD70E29247D9AC100000000 + 1DD70E2952137F3500000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E296BAE375600000000 + + + 1DD70E29AF8D62A600000000 + + isa + PBXFileReference + name + libWatchBridge.a + path + libWatchBridge.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29AF8D62A600000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29D10AF07900000000 + + isa + PBXFileReference + name + TGBridgeServer.h + path + Sources/TGBridgeServer.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29D10AF07E00000000 + + isa + PBXFileReference + name + TGBridgeServer.m + path + Sources/TGBridgeServer.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E293D63DDBD00000000 + + isa + PBXFileReference + name + WatchBridge.swift + path + Sources/WatchBridge.swift + sourceTree + SOURCE_ROOT + + 1DD70E29E77D346B00000000 + + isa + PBXFileReference + name + WatchCommunicationManager.swift + path + Sources/WatchCommunicationManager.swift + sourceTree + SOURCE_ROOT + + 1DD70E296F7AB14E00000000 + + isa + PBXFileReference + name + WatchRequestHandlers.swift + path + Sources/WatchRequestHandlers.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29D10AF07900000000 + 1DD70E29D10AF07E00000000 + 1DD70E293D63DDBD00000000 + 1DD70E29E77D346B00000000 + 1DD70E296F7AB14E00000000 + + + B401C9797942E51800000000 + + isa + PBXGroup + name + WatchBridge + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C9797942E51800000000 + + + E7A30F04D10AF07E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D10AF07E00000000 + + E7A30F043D63DDBD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293D63DDBD00000000 + + E7A30F04E77D346B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E77D346B00000000 + + E7A30F046F7AB14E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296F7AB14E00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04D10AF07E00000000 + E7A30F043D63DDBD00000000 + E7A30F04E77D346B00000000 + E7A30F046F7AB14E00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F0452137F3500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2952137F3500000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F046BAE375600000000 + + isa + PBXBuildFile + fileRef + 1DD70E296BAE375600000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04D6F14E1000000000 + E7A30F04CD296A8300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F042417E0B200000000 + E7A30F0452137F3500000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04490601EB00000000 + E7A30F046BAE375600000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29E205009D00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2959E9E4C700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29CD80902900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E7942E51800000000 + + isa + PBXNativeTarget + name + WatchBridge + productName + WatchBridge + productReference + 1DD70E29AF8D62A600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847937942E51800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E7942E51800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847937942E51800000000 + + \ No newline at end of file diff --git a/submodules/WatchBridge/WatchBridge.xcodeproj/xcshareddata/xcschemes/WatchBridge.xcscheme b/submodules/WatchBridge/WatchBridge.xcodeproj/xcshareddata/xcschemes/WatchBridge.xcscheme new file mode 100644 index 0000000000..55bc02acb6 --- /dev/null +++ b/submodules/WatchBridge/WatchBridge.xcodeproj/xcshareddata/xcschemes/WatchBridge.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/WatchBridgeAudio/BUCK b/submodules/WatchBridgeAudio/BUCK new file mode 100644 index 0000000000..8f7915792a --- /dev/null +++ b/submodules/WatchBridgeAudio/BUCK @@ -0,0 +1,26 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "WatchBridgeAudio", + srcs = glob([ + "Sources/**/*.swift", + "Sources/**/*.m", + "Sources/**/*.mm", + ]), + headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/WatchBridgeAudio.h"]), + exported_headers = glob([ + "Sources/**/*.h", + ], exclude = ["Sources/WatchBridgeAudio.h"]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/SSignalKit/SSignalKit:SSignalKit", + "//submodules/OpusBinding:OpusBinding", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/AVFoundation.framework", + "$SDKROOT/System/Library/Frameworks/AudioToolbox.framework", + ], +) diff --git a/submodules/WatchBridgeAudio/WatchBridgeAudio.xcodeproj/project.pbxproj b/submodules/WatchBridgeAudio/WatchBridgeAudio.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..5e3168a674 --- /dev/null +++ b/submodules/WatchBridgeAudio/WatchBridgeAudio.xcodeproj/project.pbxproj @@ -0,0 +1,451 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E296874D35700000000 + + isa + PBXFileReference + name + WatchBridgeAudio-Debug.xcconfig + path + ../../buck-out/gen/submodules/WatchBridgeAudio/WatchBridgeAudio-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2903AFF10100000000 + + isa + PBXFileReference + name + WatchBridgeAudio-Profile.xcconfig + path + ../../buck-out/gen/submodules/WatchBridgeAudio/WatchBridgeAudio-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2977469C6300000000 + + isa + PBXFileReference + name + WatchBridgeAudio-Release.xcconfig + path + ../../buck-out/gen/submodules/WatchBridgeAudio/WatchBridgeAudio-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E296874D35700000000 + 1DD70E2903AFF10100000000 + 1DD70E2977469C6300000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29D65BA68200000000 + + + 1DD70E296BAE375600000000 + + isa + PBXFileReference + name + libWatchBridgeAudio.a + path + libWatchBridgeAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E296BAE375600000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29F3F7C1C900000000 + + isa + PBXFileReference + name + LegacyBridgeAudio.swift + path + Sources/LegacyBridgeAudio.swift + sourceTree + SOURCE_ROOT + + 1DD70E2937BBB90400000000 + + isa + PBXFileReference + name + TGBridgeAudioDecoder.h + path + Sources/TGBridgeAudioDecoder.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29BFBB688400000000 + + isa + PBXFileReference + name + TGBridgeAudioDecoder.mm + path + Sources/TGBridgeAudioDecoder.mm + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.cpp.objcpp + + 1DD70E2972EABBDC00000000 + + isa + PBXFileReference + name + TGBridgeAudioEncoder.h + path + Sources/TGBridgeAudioEncoder.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2972EABBE100000000 + + isa + PBXFileReference + name + TGBridgeAudioEncoder.m + path + Sources/TGBridgeAudioEncoder.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29F3F7C1C900000000 + 1DD70E2937BBB90400000000 + 1DD70E29BFBB688400000000 + 1DD70E2972EABBDC00000000 + 1DD70E2972EABBE100000000 + + + B401C979F283359E00000000 + + isa + PBXGroup + name + WatchBridgeAudio + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979F283359E00000000 + + + E7A30F04F3F7C1C900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F3F7C1C900000000 + + E7A30F04BFBB688400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BFBB688400000000 + + E7A30F0472EABBE100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2972EABBE100000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04F3F7C1C900000000 + E7A30F04BFBB688400000000 + E7A30F0472EABBE100000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E296874D35700000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E2903AFF10100000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2977469C6300000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EF283359E00000000 + + isa + PBXNativeTarget + name + WatchBridgeAudio + productName + WatchBridgeAudio + productReference + 1DD70E296BAE375600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793F283359E00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EF283359E00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793F283359E00000000 + + \ No newline at end of file diff --git a/submodules/WatchBridgeAudio/WatchBridgeAudio.xcodeproj/xcshareddata/xcschemes/WatchBridgeAudio.xcscheme b/submodules/WatchBridgeAudio/WatchBridgeAudio.xcodeproj/xcshareddata/xcschemes/WatchBridgeAudio.xcscheme new file mode 100644 index 0000000000..32c1c086e0 --- /dev/null +++ b/submodules/WatchBridgeAudio/WatchBridgeAudio.xcodeproj/xcshareddata/xcschemes/WatchBridgeAudio.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/WatchCommon/BUCK b/submodules/WatchCommon/BUCK index 0640ff594d..2719aa8d80 100644 --- a/submodules/WatchCommon/BUCK +++ b/submodules/WatchCommon/BUCK @@ -7,10 +7,10 @@ static_library( ]), headers = glob([ "Sources/*.h", - ], exclude = ["Sources/WatchCommon.h"]), + ], exclude = ["Sources/WatchCommon.h", "Sources/WatchCommonWatch.h"]), exported_headers = glob([ "Sources/*.h", - ], exclude = ["Sources/WatchCommon.h"]), + ], exclude = ["Sources/WatchCommon.h", "Sources/WatchCommonWatch.h"]), frameworks = [ "$SDKROOT/System/Library/Frameworks/Foundation.framework", ], diff --git a/submodules/WatchCommon/WatchCommon.xcodeproj/project.pbxproj b/submodules/WatchCommon/WatchCommon.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..2b263b3b20 --- /dev/null +++ b/submodules/WatchCommon/WatchCommon.xcodeproj/project.pbxproj @@ -0,0 +1,1257 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29CAF2A9FB00000000 + + isa + PBXFileReference + name + WatchCommon-Debug.xcconfig + path + ../../buck-out/gen/submodules/WatchCommon/WatchCommon-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29BE12AEA500000000 + + isa + PBXFileReference + name + WatchCommon-Profile.xcconfig + path + ../../buck-out/gen/submodules/WatchCommon/WatchCommon-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2931A95A0700000000 + + isa + PBXFileReference + name + WatchCommon-Release.xcconfig + path + ../../buck-out/gen/submodules/WatchCommon/WatchCommon-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29CAF2A9FB00000000 + 1DD70E29BE12AEA500000000 + 1DD70E2931A95A0700000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E298011D88800000000 + + isa + PBXFileReference + name + libWatchCommon.a + path + libWatchCommon.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E298011D88800000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2910FAED4F00000000 + + isa + PBXFileReference + name + TGBridgeActionMediaAttachment.h + path + Sources/TGBridgeActionMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2910FAED5400000000 + + isa + PBXFileReference + name + TGBridgeActionMediaAttachment.m + path + Sources/TGBridgeActionMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E296780922700000000 + + isa + PBXFileReference + name + TGBridgeAudioMediaAttachment.h + path + Sources/TGBridgeAudioMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296780922C00000000 + + isa + PBXFileReference + name + TGBridgeAudioMediaAttachment.m + path + Sources/TGBridgeAudioMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E296F242FC800000000 + + isa + PBXFileReference + name + TGBridgeBotCommandInfo.h + path + Sources/TGBridgeBotCommandInfo.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296F242FCD00000000 + + isa + PBXFileReference + name + TGBridgeBotCommandInfo.m + path + Sources/TGBridgeBotCommandInfo.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29A4102F5300000000 + + isa + PBXFileReference + name + TGBridgeBotInfo.h + path + Sources/TGBridgeBotInfo.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29A4102F5800000000 + + isa + PBXFileReference + name + TGBridgeBotInfo.m + path + Sources/TGBridgeBotInfo.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29CC46724E00000000 + + isa + PBXFileReference + name + TGBridgeChat.h + path + Sources/TGBridgeChat.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29CC46725300000000 + + isa + PBXFileReference + name + TGBridgeChat.m + path + Sources/TGBridgeChat.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29BD9A98BA00000000 + + isa + PBXFileReference + name + TGBridgeChatMessages.h + path + Sources/TGBridgeChatMessages.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29BD9A98BF00000000 + + isa + PBXFileReference + name + TGBridgeChatMessages.m + path + Sources/TGBridgeChatMessages.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E295AF3E12100000000 + + isa + PBXFileReference + name + TGBridgeCommon.h + path + Sources/TGBridgeCommon.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E295AF3E12600000000 + + isa + PBXFileReference + name + TGBridgeCommon.m + path + Sources/TGBridgeCommon.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2932A9981D00000000 + + isa + PBXFileReference + name + TGBridgeContactMediaAttachment.h + path + Sources/TGBridgeContactMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2932A9982200000000 + + isa + PBXFileReference + name + TGBridgeContactMediaAttachment.m + path + Sources/TGBridgeContactMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2943D90B6D00000000 + + isa + PBXFileReference + name + TGBridgeContext.h + path + Sources/TGBridgeContext.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2943D90B7200000000 + + isa + PBXFileReference + name + TGBridgeContext.m + path + Sources/TGBridgeContext.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29613B100A00000000 + + isa + PBXFileReference + name + TGBridgeDocumentMediaAttachment.h + path + Sources/TGBridgeDocumentMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29613B100F00000000 + + isa + PBXFileReference + name + TGBridgeDocumentMediaAttachment.m + path + Sources/TGBridgeDocumentMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29772A4CE200000000 + + isa + PBXFileReference + name + TGBridgeForwardedMessageMediaAttachment.h + path + Sources/TGBridgeForwardedMessageMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29772A4CE700000000 + + isa + PBXFileReference + name + TGBridgeForwardedMessageMediaAttachment.m + path + Sources/TGBridgeForwardedMessageMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2936F99F4200000000 + + isa + PBXFileReference + name + TGBridgeImageMediaAttachment.h + path + Sources/TGBridgeImageMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2936F99F4700000000 + + isa + PBXFileReference + name + TGBridgeImageMediaAttachment.m + path + Sources/TGBridgeImageMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29294008B000000000 + + isa + PBXFileReference + name + TGBridgeLocationMediaAttachment.h + path + Sources/TGBridgeLocationMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29294008B500000000 + + isa + PBXFileReference + name + TGBridgeLocationMediaAttachment.m + path + Sources/TGBridgeLocationMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29750E2FB800000000 + + isa + PBXFileReference + name + TGBridgeLocationVenue.h + path + Sources/TGBridgeLocationVenue.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29750E2FBD00000000 + + isa + PBXFileReference + name + TGBridgeLocationVenue.m + path + Sources/TGBridgeLocationVenue.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2952F66BE500000000 + + isa + PBXFileReference + name + TGBridgeMediaAttachment.h + path + Sources/TGBridgeMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2952F66BEA00000000 + + isa + PBXFileReference + name + TGBridgeMediaAttachment.m + path + Sources/TGBridgeMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2906439FC500000000 + + isa + PBXFileReference + name + TGBridgeMessage.h + path + Sources/TGBridgeMessage.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2906439FCA00000000 + + isa + PBXFileReference + name + TGBridgeMessage.m + path + Sources/TGBridgeMessage.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29A971DC6600000000 + + isa + PBXFileReference + name + TGBridgeMessageEntities.h + path + Sources/TGBridgeMessageEntities.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29A971DC6B00000000 + + isa + PBXFileReference + name + TGBridgeMessageEntities.m + path + Sources/TGBridgeMessageEntities.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29026AB5E900000000 + + isa + PBXFileReference + name + TGBridgeMessageEntitiesAttachment.h + path + Sources/TGBridgeMessageEntitiesAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29026AB5EE00000000 + + isa + PBXFileReference + name + TGBridgeMessageEntitiesAttachment.m + path + Sources/TGBridgeMessageEntitiesAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2947AA647000000000 + + isa + PBXFileReference + name + TGBridgePeerIdAdapter.h + path + Sources/TGBridgePeerIdAdapter.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E3E3C1A600000000 + + isa + PBXFileReference + name + TGBridgePeerNotificationSettings.h + path + Sources/TGBridgePeerNotificationSettings.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29E3E3C1AB00000000 + + isa + PBXFileReference + name + TGBridgePeerNotificationSettings.m + path + Sources/TGBridgePeerNotificationSettings.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29484836CB00000000 + + isa + PBXFileReference + name + TGBridgeReplyMarkupMediaAttachment.h + path + Sources/TGBridgeReplyMarkupMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29484836D000000000 + + isa + PBXFileReference + name + TGBridgeReplyMarkupMediaAttachment.m + path + Sources/TGBridgeReplyMarkupMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29CC504DA800000000 + + isa + PBXFileReference + name + TGBridgeReplyMessageMediaAttachment.h + path + Sources/TGBridgeReplyMessageMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29CC504DAD00000000 + + isa + PBXFileReference + name + TGBridgeReplyMessageMediaAttachment.m + path + Sources/TGBridgeReplyMessageMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2914A1B7F400000000 + + isa + PBXFileReference + name + TGBridgeSubscriptions.h + path + Sources/TGBridgeSubscriptions.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2914A1B7F900000000 + + isa + PBXFileReference + name + TGBridgeSubscriptions.m + path + Sources/TGBridgeSubscriptions.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29811188A800000000 + + isa + PBXFileReference + name + TGBridgeUnsupportedMediaAttachment.h + path + Sources/TGBridgeUnsupportedMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29811188AD00000000 + + isa + PBXFileReference + name + TGBridgeUnsupportedMediaAttachment.m + path + Sources/TGBridgeUnsupportedMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29EB9A7A0100000000 + + isa + PBXFileReference + name + TGBridgeUser.h + path + Sources/TGBridgeUser.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29EB9A7A0600000000 + + isa + PBXFileReference + name + TGBridgeUser.m + path + Sources/TGBridgeUser.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29A2A3D82200000000 + + isa + PBXFileReference + name + TGBridgeVideoMediaAttachment.h + path + Sources/TGBridgeVideoMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29A2A3D82700000000 + + isa + PBXFileReference + name + TGBridgeVideoMediaAttachment.m + path + Sources/TGBridgeVideoMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E299B2EC69A00000000 + + isa + PBXFileReference + name + TGBridgeWebPageMediaAttachment.h + path + Sources/TGBridgeWebPageMediaAttachment.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E299B2EC69F00000000 + + isa + PBXFileReference + name + TGBridgeWebPageMediaAttachment.m + path + Sources/TGBridgeWebPageMediaAttachment.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2910FAED4F00000000 + 1DD70E2910FAED5400000000 + 1DD70E296780922700000000 + 1DD70E296780922C00000000 + 1DD70E296F242FC800000000 + 1DD70E296F242FCD00000000 + 1DD70E29A4102F5300000000 + 1DD70E29A4102F5800000000 + 1DD70E29CC46724E00000000 + 1DD70E29CC46725300000000 + 1DD70E29BD9A98BA00000000 + 1DD70E29BD9A98BF00000000 + 1DD70E295AF3E12100000000 + 1DD70E295AF3E12600000000 + 1DD70E2932A9981D00000000 + 1DD70E2932A9982200000000 + 1DD70E2943D90B6D00000000 + 1DD70E2943D90B7200000000 + 1DD70E29613B100A00000000 + 1DD70E29613B100F00000000 + 1DD70E29772A4CE200000000 + 1DD70E29772A4CE700000000 + 1DD70E2936F99F4200000000 + 1DD70E2936F99F4700000000 + 1DD70E29294008B000000000 + 1DD70E29294008B500000000 + 1DD70E29750E2FB800000000 + 1DD70E29750E2FBD00000000 + 1DD70E2952F66BE500000000 + 1DD70E2952F66BEA00000000 + 1DD70E2906439FC500000000 + 1DD70E2906439FCA00000000 + 1DD70E29A971DC6600000000 + 1DD70E29A971DC6B00000000 + 1DD70E29026AB5E900000000 + 1DD70E29026AB5EE00000000 + 1DD70E2947AA647000000000 + 1DD70E29E3E3C1A600000000 + 1DD70E29E3E3C1AB00000000 + 1DD70E29484836CB00000000 + 1DD70E29484836D000000000 + 1DD70E29CC504DA800000000 + 1DD70E29CC504DAD00000000 + 1DD70E2914A1B7F400000000 + 1DD70E2914A1B7F900000000 + 1DD70E29811188A800000000 + 1DD70E29811188AD00000000 + 1DD70E29EB9A7A0100000000 + 1DD70E29EB9A7A0600000000 + 1DD70E29A2A3D82200000000 + 1DD70E29A2A3D82700000000 + 1DD70E299B2EC69A00000000 + 1DD70E299B2EC69F00000000 + + + B401C9797ACF6B7A00000000 + + isa + PBXGroup + name + WatchCommon + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C9797ACF6B7A00000000 + + + E7A30F0410FAED5400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2910FAED5400000000 + + E7A30F046780922C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296780922C00000000 + + E7A30F046F242FCD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296F242FCD00000000 + + E7A30F04A4102F5800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A4102F5800000000 + + E7A30F04CC46725300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CC46725300000000 + + E7A30F04BD9A98BF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BD9A98BF00000000 + + E7A30F045AF3E12600000000 + + isa + PBXBuildFile + fileRef + 1DD70E295AF3E12600000000 + + E7A30F0432A9982200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2932A9982200000000 + + E7A30F0443D90B7200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2943D90B7200000000 + + E7A30F04613B100F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29613B100F00000000 + + E7A30F04772A4CE700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29772A4CE700000000 + + E7A30F0436F99F4700000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936F99F4700000000 + + E7A30F04294008B500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29294008B500000000 + + E7A30F04750E2FBD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29750E2FBD00000000 + + E7A30F0452F66BEA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2952F66BEA00000000 + + E7A30F0406439FCA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2906439FCA00000000 + + E7A30F04A971DC6B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A971DC6B00000000 + + E7A30F04026AB5EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29026AB5EE00000000 + + E7A30F04E3E3C1AB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29E3E3C1AB00000000 + + E7A30F04484836D000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29484836D000000000 + + E7A30F04CC504DAD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CC504DAD00000000 + + E7A30F0414A1B7F900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2914A1B7F900000000 + + E7A30F04811188AD00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29811188AD00000000 + + E7A30F04EB9A7A0600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EB9A7A0600000000 + + E7A30F04A2A3D82700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A2A3D82700000000 + + E7A30F049B2EC69F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299B2EC69F00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0410FAED5400000000 + E7A30F046780922C00000000 + E7A30F046F242FCD00000000 + E7A30F04A4102F5800000000 + E7A30F04CC46725300000000 + E7A30F04BD9A98BF00000000 + E7A30F045AF3E12600000000 + E7A30F0432A9982200000000 + E7A30F0443D90B7200000000 + E7A30F04613B100F00000000 + E7A30F04772A4CE700000000 + E7A30F0436F99F4700000000 + E7A30F04294008B500000000 + E7A30F04750E2FBD00000000 + E7A30F0452F66BEA00000000 + E7A30F0406439FCA00000000 + E7A30F04A971DC6B00000000 + E7A30F04026AB5EE00000000 + E7A30F04E3E3C1AB00000000 + E7A30F04484836D000000000 + E7A30F04CC504DAD00000000 + E7A30F0414A1B7F900000000 + E7A30F04811188AD00000000 + E7A30F04EB9A7A0600000000 + E7A30F04A2A3D82700000000 + E7A30F049B2EC69F00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29CAF2A9FB00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29BE12AEA500000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2931A95A0700000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E7ACF6B7A00000000 + + isa + PBXNativeTarget + name + WatchCommon + productName + WatchCommon + productReference + 1DD70E298011D88800000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C847937ACF6B7A00000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E7ACF6B7A00000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C847937ACF6B7A00000000 + + \ No newline at end of file diff --git a/submodules/WatchCommon/WatchCommon.xcodeproj/xcshareddata/xcschemes/WatchCommon.xcscheme b/submodules/WatchCommon/WatchCommon.xcodeproj/xcshareddata/xcschemes/WatchCommon.xcscheme new file mode 100644 index 0000000000..8045304831 --- /dev/null +++ b/submodules/WatchCommon/WatchCommon.xcodeproj/xcshareddata/xcschemes/WatchCommon.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/WebSearchUI/BUCK b/submodules/WebSearchUI/BUCK new file mode 100644 index 0000000000..7a0a4582ad --- /dev/null +++ b/submodules/WebSearchUI/BUCK @@ -0,0 +1,33 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "WebSearchUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared", + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + "//submodules/Postbox:Postbox#shared", + "//submodules/TelegramCore:TelegramCore#shared", + "//submodules/TelegramPresentationData:TelegramPresentationData", + "//submodules/AccountContext:AccountContext", + "//submodules/LegacyComponents:LegacyComponents", + "//submodules/TelegramUIPreferences:TelegramUIPreferences", + "//submodules/MergeLists:MergeLists", + "//submodules/GalleryUI:GalleryUI", + "//submodules/ChatListSearchItemHeader:ChatListSearchItemHeader", + "//submodules/TelegramUniversalVideoContent:TelegramUniversalVideoContent", + "//submodules/CheckNode:CheckNode", + "//submodules/PhotoResources:PhotoResources", + "//submodules/SearchBarNode:SearchBarNode", + "//submodules/ItemListUI:ItemListUI", + "//submodules/LegacyMediaPickerUI:LegacyMediaPickerUI", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/QuickLook.framework", + ], +) diff --git a/submodules/WebSearchUI/WebSearchUI.xcodeproj/project.pbxproj b/submodules/WebSearchUI/WebSearchUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..7359d13faf --- /dev/null +++ b/submodules/WebSearchUI/WebSearchUI.xcodeproj/project.pbxproj @@ -0,0 +1,1805 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2972E87D2500000000 + + isa + PBXFileReference + name + WebSearchUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/WebSearchUI/WebSearchUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E293FE05F4F00000000 + + isa + PBXFileReference + name + WebSearchUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/WebSearchUI/WebSearchUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29B3770AB100000000 + + isa + PBXFileReference + name + WebSearchUI-Release.xcconfig + path + ../../buck-out/gen/submodules/WebSearchUI/WebSearchUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2972E87D2500000000 + 1DD70E293FE05F4F00000000 + 1DD70E29B3770AB100000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E299D2580DA00000000 + + isa + PBXFileReference + name + libAccountContext.a + path + libAccountContext.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291E16CC6C00000000 + + isa + PBXFileReference + name + libActionSheetPeerItem.a + path + libActionSheetPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BF0846EE00000000 + + isa + PBXFileReference + name + libActivityIndicator.a + path + libActivityIndicator.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292420028600000000 + + isa + PBXFileReference + name + libAnimationUI.a + path + libAnimationUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A54A195300000000 + + isa + PBXFileReference + name + libAvatarNode.a + path + libAvatarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FD72F45600000000 + + isa + PBXFileReference + name + libChatListSearchItemHeader.a + path + libChatListSearchItemHeader.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E297AB043C800000000 + + isa + PBXFileReference + name + libChatListSearchRecentPeersNode.a + path + libChatListSearchRecentPeersNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2997B4D6D800000000 + + isa + PBXFileReference + name + libCheckNode.a + path + libCheckNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292417E0B200000000 + + isa + PBXFileReference + name + libDeviceAccess.a + path + libDeviceAccess.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295915423000000000 + + isa + PBXFileReference + name + libDeviceLocationManager.a + path + libDeviceLocationManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29F29DEA1400000000 + + isa + PBXFileReference + name + libGalleryUI.a + path + libGalleryUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2971ED41B100000000 + + isa + PBXFileReference + name + libHorizontalPeerItem.a + path + libHorizontalPeerItem.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D6F14E1000000000 + + isa + PBXFileReference + name + libImageBlur.a + path + libImageBlur.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C6E517A300000000 + + isa + PBXFileReference + name + libImageCompression.a + path + libImageCompression.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29247D9AC100000000 + + isa + PBXFileReference + name + libImageTransparency.a + path + libImageTransparency.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E295A26607D00000000 + + isa + PBXFileReference + name + libItemListUI.a + path + libItemListUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E296C39078B00000000 + + isa + PBXFileReference + name + libLegacyMediaPickerUI.a + path + libLegacyMediaPickerUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2952137F3500000000 + + isa + PBXFileReference + name + libLegacyUI.a + path + libLegacyUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AC43662400000000 + + isa + PBXFileReference + name + libListSectionHeaderNode.a + path + libListSectionHeaderNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2968BAC05A00000000 + + isa + PBXFileReference + name + libLocalMediaResources.a + path + libLocalMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CE34063500000000 + + isa + PBXFileReference + name + libLocalizedPeerData.a + path + libLocalizedPeerData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2936DE2CF900000000 + + isa + PBXFileReference + name + libMediaResources.a + path + libMediaResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C37F741500000000 + + isa + PBXFileReference + name + libMergeLists.a + path + libMergeLists.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29AF00DC4900000000 + + isa + PBXFileReference + name + libOpenInExternalAppUI.a + path + libOpenInExternalAppUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29928D142900000000 + + isa + PBXFileReference + name + libPeerOnlineMarkerNode.a + path + libPeerOnlineMarkerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D233F68C00000000 + + isa + PBXFileReference + name + libPeerPresenceStatusManager.a + path + libPeerPresenceStatusManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29490601EB00000000 + + isa + PBXFileReference + name + libPhotoResources.a + path + libPhotoResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E290F1A3C6400000000 + + isa + PBXFileReference + name + libPlatformRestrictionMatching.a + path + libPlatformRestrictionMatching.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DB6520C800000000 + + isa + PBXFileReference + name + libPostbox.dylib + path + libPostbox.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E29CBE117ED00000000 + + isa + PBXFileReference + name + libProgressNavigationButtonNode.a + path + libProgressNavigationButtonNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293E4DE92B00000000 + + isa + PBXFileReference + name + libRadialStatusNode.a + path + libRadialStatusNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E291D58331200000000 + + isa + PBXFileReference + name + libSaveToCameraRoll.a + path + libSaveToCameraRoll.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CF967D4300000000 + + isa + PBXFileReference + name + libScreenCaptureDetection.a + path + libScreenCaptureDetection.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29EA9CBB5B00000000 + + isa + PBXFileReference + name + libSearchBarNode.a + path + libSearchBarNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29097DBE9200000000 + + isa + PBXFileReference + name + libSelectablePeerNode.a + path + libSelectablePeerNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2981AE180900000000 + + isa + PBXFileReference + name + libShareController.a + path + libShareController.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E293594DCC000000000 + + isa + PBXFileReference + name + libStickerResources.a + path + libStickerResources.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29D65BA68200000000 + + isa + PBXFileReference + name + libSwiftSignalKit.dylib + path + libSwiftSignalKit.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E296A346AC200000000 + + isa + PBXFileReference + name + libSwipeToDismissGesture.a + path + libSwipeToDismissGesture.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2925BBFEEE00000000 + + isa + PBXFileReference + name + libSwitchNode.a + path + libSwitchNode.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F33FDAC300000000 + + isa + PBXFileReference + name + libTelegramAudio.a + path + libTelegramAudio.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29119CDA0700000000 + + isa + PBXFileReference + name + libTelegramCore.dylib + path + libTelegramCore.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + 1DD70E2984A59C1D00000000 + + isa + PBXFileReference + name + libTelegramPresentationData.a + path + libTelegramPresentationData.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29DD3C940F00000000 + + isa + PBXFileReference + name + libTelegramStringFormatting.a + path + libTelegramStringFormatting.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E292395015100000000 + + isa + PBXFileReference + name + libTelegramUIPreferences.a + path + libTelegramUIPreferences.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29C7E0F39600000000 + + isa + PBXFileReference + name + libTelegramUniversalVideoContent.a + path + libTelegramUniversalVideoContent.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29BA06E3A600000000 + + isa + PBXFileReference + name + libTemporaryCachedPeerDataManager.a + path + libTemporaryCachedPeerDataManager.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29F0C15F9C00000000 + + isa + PBXFileReference + name + libTextFormat.a + path + libTextFormat.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29B4B05B7A00000000 + + isa + PBXFileReference + name + libTinyThumbnail.a + path + libTinyThumbnail.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29CD296A8300000000 + + isa + PBXFileReference + name + libTuples.a + path + libTuples.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E2951398CF200000000 + + isa + PBXFileReference + name + libUniversalMediaPlayer.a + path + libUniversalMediaPlayer.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29597BAFBB00000000 + + isa + PBXFileReference + name + libUrlEscaping.a + path + libUrlEscaping.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + 1DD70E29A6BAE8A300000000 + + isa + PBXFileReference + name + libWebsiteType.a + path + libWebsiteType.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E299D2580DA00000000 + 1DD70E291E16CC6C00000000 + 1DD70E29BF0846EE00000000 + 1DD70E292420028600000000 + 1DD70E29A54A195300000000 + 1DD70E29FD72F45600000000 + 1DD70E297AB043C800000000 + 1DD70E2997B4D6D800000000 + 1DD70E292417E0B200000000 + 1DD70E295915423000000000 + 1DD70E29FF334B1F00000000 + 1DD70E29F29DEA1400000000 + 1DD70E2971ED41B100000000 + 1DD70E29D6F14E1000000000 + 1DD70E29C6E517A300000000 + 1DD70E29247D9AC100000000 + 1DD70E295A26607D00000000 + 1DD70E296C39078B00000000 + 1DD70E2952137F3500000000 + 1DD70E29AC43662400000000 + 1DD70E2968BAC05A00000000 + 1DD70E29CE34063500000000 + 1DD70E2936DE2CF900000000 + 1DD70E29C37F741500000000 + 1DD70E29AF00DC4900000000 + 1DD70E29928D142900000000 + 1DD70E29D233F68C00000000 + 1DD70E29490601EB00000000 + 1DD70E290F1A3C6400000000 + 1DD70E29DB6520C800000000 + 1DD70E29CBE117ED00000000 + 1DD70E293E4DE92B00000000 + 1DD70E291D58331200000000 + 1DD70E29CF967D4300000000 + 1DD70E29EA9CBB5B00000000 + 1DD70E29097DBE9200000000 + 1DD70E2981AE180900000000 + 1DD70E293594DCC000000000 + 1DD70E29D65BA68200000000 + 1DD70E296A346AC200000000 + 1DD70E2925BBFEEE00000000 + 1DD70E29F33FDAC300000000 + 1DD70E29119CDA0700000000 + 1DD70E2984A59C1D00000000 + 1DD70E29DD3C940F00000000 + 1DD70E292395015100000000 + 1DD70E29C7E0F39600000000 + 1DD70E29BA06E3A600000000 + 1DD70E29F0C15F9C00000000 + 1DD70E29B4B05B7A00000000 + 1DD70E29CD296A8300000000 + 1DD70E2951398CF200000000 + 1DD70E29597BAFBB00000000 + 1DD70E29A6BAE8A300000000 + + + 1DD70E29DF12291E00000000 + + isa + PBXFileReference + name + libWebSearchUI.a + path + libWebSearchUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29DF12291E00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E291289FAA500000000 + + isa + PBXFileReference + name + FrameworkBundle.swift + path + Sources/FrameworkBundle.swift + sourceTree + SOURCE_ROOT + + 1DD70E29EB1ECA2500000000 + + isa + PBXFileReference + name + LegacyWebSearchEditor.swift + path + Sources/LegacyWebSearchEditor.swift + sourceTree + SOURCE_ROOT + + 1DD70E2999E4D30400000000 + + isa + PBXFileReference + name + LegacyWebSearchGallery.swift + path + Sources/LegacyWebSearchGallery.swift + sourceTree + SOURCE_ROOT + + 1DD70E296E94698E00000000 + + isa + PBXFileReference + name + WebSearchBadgeNode.swift + path + Sources/WebSearchBadgeNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2910DAA35D00000000 + + isa + PBXFileReference + name + WebSearchController.swift + path + Sources/WebSearchController.swift + sourceTree + SOURCE_ROOT + + 1DD70E29615707FF00000000 + + isa + PBXFileReference + name + WebSearchControllerNode.swift + path + Sources/WebSearchControllerNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2935BBAF1700000000 + + isa + PBXFileReference + name + WebSearchGalleryController.swift + path + Sources/WebSearchGalleryController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2923730D8F00000000 + + isa + PBXFileReference + name + WebSearchGalleryFooterContentNode.swift + path + Sources/WebSearchGalleryFooterContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E29409F379900000000 + + isa + PBXFileReference + name + WebSearchInterfaceState.swift + path + Sources/WebSearchInterfaceState.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DA32CA9400000000 + + isa + PBXFileReference + name + WebSearchItem.swift + path + Sources/WebSearchItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29EBE5193000000000 + + isa + PBXFileReference + name + WebSearchNavigationContentNode.swift + path + Sources/WebSearchNavigationContentNode.swift + sourceTree + SOURCE_ROOT + + 1DD70E2968D5F35400000000 + + isa + PBXFileReference + name + WebSearchRecentQueries.swift + path + Sources/WebSearchRecentQueries.swift + sourceTree + SOURCE_ROOT + + 1DD70E294DABADE900000000 + + isa + PBXFileReference + name + WebSearchRecentQueryItem.swift + path + Sources/WebSearchRecentQueryItem.swift + sourceTree + SOURCE_ROOT + + 1DD70E29DFCE264B00000000 + + isa + PBXFileReference + name + WebSearchVideoGalleryItem.swift + path + Sources/WebSearchVideoGalleryItem.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E291289FAA500000000 + 1DD70E29EB1ECA2500000000 + 1DD70E2999E4D30400000000 + 1DD70E296E94698E00000000 + 1DD70E2910DAA35D00000000 + 1DD70E29615707FF00000000 + 1DD70E2935BBAF1700000000 + 1DD70E2923730D8F00000000 + 1DD70E29409F379900000000 + 1DD70E29DA32CA9400000000 + 1DD70E29EBE5193000000000 + 1DD70E2968D5F35400000000 + 1DD70E294DABADE900000000 + 1DD70E29DFCE264B00000000 + + + B401C979F5B6E99000000000 + + isa + PBXGroup + name + WebSearchUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C979F5B6E99000000000 + + + E7A30F041289FAA500000000 + + isa + PBXBuildFile + fileRef + 1DD70E291289FAA500000000 + + E7A30F04EB1ECA2500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EB1ECA2500000000 + + E7A30F0499E4D30400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2999E4D30400000000 + + E7A30F046E94698E00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296E94698E00000000 + + E7A30F0410DAA35D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2910DAA35D00000000 + + E7A30F04615707FF00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29615707FF00000000 + + E7A30F0435BBAF1700000000 + + isa + PBXBuildFile + fileRef + 1DD70E2935BBAF1700000000 + + E7A30F0423730D8F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2923730D8F00000000 + + E7A30F04409F379900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29409F379900000000 + + E7A30F04DA32CA9400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DA32CA9400000000 + + E7A30F04EBE5193000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EBE5193000000000 + + E7A30F0468D5F35400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2968D5F35400000000 + + E7A30F044DABADE900000000 + + isa + PBXBuildFile + fileRef + 1DD70E294DABADE900000000 + + E7A30F04DFCE264B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DFCE264B00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F041289FAA500000000 + E7A30F04EB1ECA2500000000 + E7A30F0499E4D30400000000 + E7A30F046E94698E00000000 + E7A30F0410DAA35D00000000 + E7A30F04615707FF00000000 + E7A30F0435BBAF1700000000 + E7A30F0423730D8F00000000 + E7A30F04409F379900000000 + E7A30F04DA32CA9400000000 + E7A30F04EBE5193000000000 + E7A30F0468D5F35400000000 + E7A30F044DABADE900000000 + E7A30F04DFCE264B00000000 + + + E7A30F04D65BA68200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D65BA68200000000 + + E7A30F045915423000000000 + + isa + PBXBuildFile + fileRef + 1DD70E295915423000000000 + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + E7A30F04DB6520C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DB6520C800000000 + + E7A30F04F33FDAC300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F33FDAC300000000 + + E7A30F04119CDA0700000000 + + isa + PBXBuildFile + fileRef + 1DD70E29119CDA0700000000 + + E7A30F0451398CF200000000 + + isa + PBXBuildFile + fileRef + 1DD70E2951398CF200000000 + + E7A30F0436DE2CF900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936DE2CF900000000 + + E7A30F042395015100000000 + + isa + PBXBuildFile + fileRef + 1DD70E292395015100000000 + + E7A30F0484A59C1D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2984A59C1D00000000 + + E7A30F04CE34063500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CE34063500000000 + + E7A30F040F1A3C6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E290F1A3C6400000000 + + E7A30F04F0C15F9C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F0C15F9C00000000 + + E7A30F04DD3C940F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DD3C940F00000000 + + E7A30F04BA06E3A600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BA06E3A600000000 + + E7A30F049D2580DA00000000 + + isa + PBXBuildFile + fileRef + 1DD70E299D2580DA00000000 + + E7A30F04AC43662400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AC43662400000000 + + E7A30F04FD72F45600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FD72F45600000000 + + E7A30F0497B4D6D800000000 + + isa + PBXBuildFile + fileRef + 1DD70E2997B4D6D800000000 + + E7A30F04D6F14E1000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D6F14E1000000000 + + E7A30F04247D9AC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29247D9AC100000000 + + E7A30F04B4B05B7A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29B4B05B7A00000000 + + E7A30F04CD296A8300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CD296A8300000000 + + E7A30F04490601EB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29490601EB00000000 + + E7A30F04597BAFBB00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29597BAFBB00000000 + + E7A30F04AF00DC4900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29AF00DC4900000000 + + E7A30F04CF967D4300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CF967D4300000000 + + E7A30F043594DCC000000000 + + isa + PBXBuildFile + fileRef + 1DD70E293594DCC000000000 + + E7A30F042420028600000000 + + isa + PBXBuildFile + fileRef + 1DD70E292420028600000000 + + E7A30F04A54A195300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A54A195300000000 + + E7A30F041E16CC6C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E291E16CC6C00000000 + + E7A30F04BF0846EE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29BF0846EE00000000 + + E7A30F04928D142900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29928D142900000000 + + E7A30F04097DBE9200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29097DBE9200000000 + + E7A30F0471ED41B100000000 + + isa + PBXBuildFile + fileRef + 1DD70E2971ED41B100000000 + + E7A30F04C37F741500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C37F741500000000 + + E7A30F047AB043C800000000 + + isa + PBXBuildFile + fileRef + 1DD70E297AB043C800000000 + + E7A30F04D233F68C00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D233F68C00000000 + + E7A30F043E4DE92B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E293E4DE92B00000000 + + E7A30F042417E0B200000000 + + isa + PBXBuildFile + fileRef + 1DD70E292417E0B200000000 + + E7A30F041D58331200000000 + + isa + PBXBuildFile + fileRef + 1DD70E291D58331200000000 + + E7A30F0481AE180900000000 + + isa + PBXBuildFile + fileRef + 1DD70E2981AE180900000000 + + E7A30F046A346AC200000000 + + isa + PBXBuildFile + fileRef + 1DD70E296A346AC200000000 + + E7A30F04C7E0F39600000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C7E0F39600000000 + + E7A30F04A6BAE8A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29A6BAE8A300000000 + + E7A30F04F29DEA1400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29F29DEA1400000000 + + E7A30F04CBE117ED00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29CBE117ED00000000 + + E7A30F0425BBFEEE00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2925BBFEEE00000000 + + E7A30F045A26607D00000000 + + isa + PBXBuildFile + fileRef + 1DD70E295A26607D00000000 + + E7A30F0452137F3500000000 + + isa + PBXBuildFile + fileRef + 1DD70E2952137F3500000000 + + E7A30F04C6E517A300000000 + + isa + PBXBuildFile + fileRef + 1DD70E29C6E517A300000000 + + E7A30F0468BAC05A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2968BAC05A00000000 + + E7A30F046C39078B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E296C39078B00000000 + + E7A30F04EA9CBB5B00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EA9CBB5B00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04D65BA68200000000 + E7A30F045915423000000000 + E7A30F04FF334B1F00000000 + E7A30F04DB6520C800000000 + E7A30F04F33FDAC300000000 + E7A30F04119CDA0700000000 + E7A30F0451398CF200000000 + E7A30F0436DE2CF900000000 + E7A30F042395015100000000 + E7A30F0484A59C1D00000000 + E7A30F04CE34063500000000 + E7A30F040F1A3C6400000000 + E7A30F04F0C15F9C00000000 + E7A30F04DD3C940F00000000 + E7A30F04BA06E3A600000000 + E7A30F049D2580DA00000000 + E7A30F04AC43662400000000 + E7A30F04FD72F45600000000 + E7A30F0497B4D6D800000000 + E7A30F04D6F14E1000000000 + E7A30F04247D9AC100000000 + E7A30F04B4B05B7A00000000 + E7A30F04CD296A8300000000 + E7A30F04490601EB00000000 + E7A30F04597BAFBB00000000 + E7A30F04AF00DC4900000000 + E7A30F04CF967D4300000000 + E7A30F043594DCC000000000 + E7A30F042420028600000000 + E7A30F04A54A195300000000 + E7A30F041E16CC6C00000000 + E7A30F04BF0846EE00000000 + E7A30F04928D142900000000 + E7A30F04097DBE9200000000 + E7A30F0471ED41B100000000 + E7A30F04C37F741500000000 + E7A30F047AB043C800000000 + E7A30F04D233F68C00000000 + E7A30F043E4DE92B00000000 + E7A30F042417E0B200000000 + E7A30F041D58331200000000 + E7A30F0481AE180900000000 + E7A30F046A346AC200000000 + E7A30F04C7E0F39600000000 + E7A30F04A6BAE8A300000000 + E7A30F04F29DEA1400000000 + E7A30F04CBE117ED00000000 + E7A30F0425BBFEEE00000000 + E7A30F045A26607D00000000 + E7A30F0452137F3500000000 + E7A30F04C6E517A300000000 + E7A30F0468BAC05A00000000 + E7A30F046C39078B00000000 + E7A30F04EA9CBB5B00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2972E87D2500000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E293FE05F4F00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29B3770AB100000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EF5B6E99000000000 + + isa + PBXNativeTarget + name + WebSearchUI + productName + WebSearchUI + productReference + 1DD70E29DF12291E00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793F5B6E99000000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EF5B6E99000000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793F5B6E99000000000 + + \ No newline at end of file diff --git a/submodules/WebSearchUI/WebSearchUI.xcodeproj/xcshareddata/xcschemes/WebSearchUI.xcscheme b/submodules/WebSearchUI/WebSearchUI.xcodeproj/xcshareddata/xcschemes/WebSearchUI.xcscheme new file mode 100644 index 0000000000..ca3cab0cc3 --- /dev/null +++ b/submodules/WebSearchUI/WebSearchUI.xcodeproj/xcshareddata/xcschemes/WebSearchUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/WebUI/BUCK b/submodules/WebUI/BUCK new file mode 100644 index 0000000000..73067e9373 --- /dev/null +++ b/submodules/WebUI/BUCK @@ -0,0 +1,17 @@ +load("//Config:buck_rule_macros.bzl", "static_library") + +static_library( + name = "WebUI", + srcs = glob([ + "Sources/**/*.swift", + ]), + deps = [ + "//submodules/AsyncDisplayKit:AsyncDisplayKit#shared", + "//submodules/Display:Display#shared", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/WebKit.framework", + ], +) diff --git a/submodules/WebUI/WebUI.xcodeproj/project.pbxproj b/submodules/WebUI/WebUI.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..7b1c3e788c --- /dev/null +++ b/submodules/WebUI/WebUI.xcodeproj/project.pbxproj @@ -0,0 +1,399 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29DD71AEED00000000 + + isa + PBXFileReference + name + WebUI-Debug.xcconfig + path + ../../buck-out/gen/submodules/WebUI/WebUI-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292CE43F1700000000 + + isa + PBXFileReference + name + WebUI-Profile.xcconfig + path + ../../buck-out/gen/submodules/WebUI/WebUI-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29A07AEA7900000000 + + isa + PBXFileReference + name + WebUI-Release.xcconfig + path + ../../buck-out/gen/submodules/WebUI/WebUI-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29DD71AEED00000000 + 1DD70E292CE43F1700000000 + 1DD70E29A07AEA7900000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FF334B1F00000000 + + isa + PBXFileReference + name + libDisplay.dylib + path + libDisplay.dylib + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + compiled.mach-o.dylib + + B401C97968022A5500000000 + + isa + PBXGroup + name + Frameworks + sourceTree + ]]> + children + + 1DD70E29FF334B1F00000000 + + + 1DD70E294F64C29600000000 + + isa + PBXFileReference + name + libWebUI.a + path + libWebUI.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E294F64C29600000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29EB00189500000000 + + isa + PBXFileReference + name + WebController.swift + path + Sources/WebController.swift + sourceTree + SOURCE_ROOT + + 1DD70E2914CF213700000000 + + isa + PBXFileReference + name + WebControllerNode.swift + path + Sources/WebControllerNode.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29EB00189500000000 + 1DD70E2914CF213700000000 + + + B401C97904F960C800000000 + + isa + PBXGroup + name + WebUI + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C97968022A5500000000 + B401C979C806358400000000 + B401C97904F960C800000000 + + + E7A30F04EB00189500000000 + + isa + PBXBuildFile + fileRef + 1DD70E29EB00189500000000 + + E7A30F0414CF213700000000 + + isa + PBXBuildFile + fileRef + 1DD70E2914CF213700000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04EB00189500000000 + E7A30F0414CF213700000000 + + + E7A30F04FF334B1F00000000 + + isa + PBXBuildFile + fileRef + 1DD70E29FF334B1F00000000 + + FAF5FAC90000000000000000 + + isa + PBXCopyFilesBuildPhase + files + + E7A30F04FF334B1F00000000 + + name + Fake Swift Dependencies (Copy Files Phase) + runOnlyForDeploymentPostprocessing + 1 + dstSubfolderSpec + 16 + dstPath + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29DD71AEED00000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E292CE43F1700000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29A07AEA7900000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E04F960C800000000 + + isa + PBXNativeTarget + name + WebUI + productName + WebUI + productReference + 1DD70E294F64C29600000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + FAF5FAC90000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479304F960C800000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E04F960C800000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479304F960C800000000 + + \ No newline at end of file diff --git a/submodules/WebUI/WebUI.xcodeproj/xcshareddata/xcschemes/WebUI.xcscheme b/submodules/WebUI/WebUI.xcodeproj/xcshareddata/xcschemes/WebUI.xcscheme new file mode 100644 index 0000000000..14e707a342 --- /dev/null +++ b/submodules/WebUI/WebUI.xcodeproj/xcshareddata/xcschemes/WebUI.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/WebsiteType/WebsiteType.xcodeproj/project.pbxproj b/submodules/WebsiteType/WebsiteType.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..c353101ab6 --- /dev/null +++ b/submodules/WebsiteType/WebsiteType.xcodeproj/project.pbxproj @@ -0,0 +1,327 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E292DE7DDC000000000 + + isa + PBXFileReference + name + WebsiteType-Debug.xcconfig + path + ../../buck-out/gen/submodules/WebsiteType/WebsiteType-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29388A052A00000000 + + isa + PBXFileReference + name + WebsiteType-Profile.xcconfig + path + ../../buck-out/gen/submodules/WebsiteType/WebsiteType-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29AC20B08C00000000 + + isa + PBXFileReference + name + WebsiteType-Release.xcconfig + path + ../../buck-out/gen/submodules/WebsiteType/WebsiteType-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E292DE7DDC000000000 + 1DD70E29388A052A00000000 + 1DD70E29AC20B08C00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29A6BAE8A300000000 + + isa + PBXFileReference + name + libWebsiteType.a + path + libWebsiteType.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29A6BAE8A300000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2936341D3A00000000 + + isa + PBXFileReference + name + WebsiteType.swift + path + Sources/WebsiteType.swift + sourceTree + SOURCE_ROOT + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2936341D3A00000000 + + + B401C979E523C65500000000 + + isa + PBXGroup + name + WebsiteType + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C979E523C65500000000 + + + E7A30F0436341D3A00000000 + + isa + PBXBuildFile + fileRef + 1DD70E2936341D3A00000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0436341D3A00000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E292DE7DDC000000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29388A052A00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E29AC20B08C00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EE523C65500000000 + + isa + PBXNativeTarget + name + WebsiteType + productName + WebsiteType + productReference + 1DD70E29A6BAE8A300000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793E523C65500000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EE523C65500000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793E523C65500000000 + + \ No newline at end of file diff --git a/submodules/WebsiteType/WebsiteType.xcodeproj/xcshareddata/xcschemes/WebsiteType.xcscheme b/submodules/WebsiteType/WebsiteType.xcodeproj/xcshareddata/xcschemes/WebsiteType.xcscheme new file mode 100644 index 0000000000..fd3db71e51 --- /dev/null +++ b/submodules/WebsiteType/WebsiteType.xcodeproj/xcshareddata/xcschemes/WebsiteType.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/YuvConversion/YuvConversion.xcodeproj/project.pbxproj b/submodules/YuvConversion/YuvConversion.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..11051c6cbe --- /dev/null +++ b/submodules/YuvConversion/YuvConversion.xcodeproj/project.pbxproj @@ -0,0 +1,343 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E2933A9CD4500000000 + + isa + PBXFileReference + name + YuvConversion-Debug.xcconfig + path + ../../buck-out/gen/submodules/YuvConversion/YuvConversion-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E29D58E276F00000000 + + isa + PBXFileReference + name + YuvConversion-Profile.xcconfig + path + ../../buck-out/gen/submodules/YuvConversion/YuvConversion-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E294924D2D100000000 + + isa + PBXFileReference + name + YuvConversion-Release.xcconfig + path + ../../buck-out/gen/submodules/YuvConversion/YuvConversion-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E2933A9CD4500000000 + 1DD70E29D58E276F00000000 + 1DD70E294924D2D100000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29FB702A3E00000000 + + isa + PBXFileReference + name + libYuvConversion.a + path + libYuvConversion.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29FB702A3E00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E29050E183400000000 + + isa + PBXFileReference + name + YUV.h + path + Sources/YUV.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29050E183900000000 + + isa + PBXFileReference + name + YUV.m + path + Sources/YUV.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E29050E183400000000 + 1DD70E29050E183900000000 + + + B401C97901C35D7000000000 + + isa + PBXGroup + name + YuvConversion + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C97901C35D7000000000 + + + E7A30F04050E183900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29050E183900000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F04050E183900000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E2933A9CD4500000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E29D58E276F00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E294924D2D100000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04E01C35D7000000000 + + isa + PBXNativeTarget + name + YuvConversion + productName + YuvConversion + productReference + 1DD70E29FB702A3E00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C8479301C35D7000000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04E01C35D7000000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C8479301C35D7000000000 + + \ No newline at end of file diff --git a/submodules/YuvConversion/YuvConversion.xcodeproj/xcshareddata/xcschemes/YuvConversion.xcscheme b/submodules/YuvConversion/YuvConversion.xcodeproj/xcshareddata/xcschemes/YuvConversion.xcscheme new file mode 100644 index 0000000000..f44e5ccee7 --- /dev/null +++ b/submodules/YuvConversion/YuvConversion.xcodeproj/xcshareddata/xcschemes/YuvConversion.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/ffmpeg/BUCK b/submodules/ffmpeg/BUCK index f4f3346dd3..5fa2191fdc 100644 --- a/submodules/ffmpeg/BUCK +++ b/submodules/ffmpeg/BUCK @@ -106,14 +106,13 @@ ffmpeg_header_paths = [ "libswresample/swresample.h", ] -build_variant = "release" -library_archs = "arm64" if build_variant == "release" else "arm64 armv7 x86_64 i386" +library_archs = "arm64 armv7 x86_64" if native.read_config("custom", "mode") == "project" else "arm64 armv7" genrule( name = "libffmpeg_build", srcs = glob([ "FFMpeg/**/*", - ]), + ], exclude = ["FFMpeg/**/.*"]), bash = "$SRCDIR/FFMpeg/build-ffmpeg.sh release \"" + library_archs + "\" $OUT $SRCDIR/FFMpeg", out = "libffmpeg", visibility = [ diff --git a/submodules/ffmpeg/FFMpeg/build-ffmpeg.sh b/submodules/ffmpeg/FFMpeg/build-ffmpeg.sh index e7c155dc02..5086bbe443 100755 --- a/submodules/ffmpeg/FFMpeg/build-ffmpeg.sh +++ b/submodules/ffmpeg/FFMpeg/build-ffmpeg.sh @@ -133,7 +133,7 @@ then CFLAGS="$CFLAGS -mios-simulator-version-min=$DEPLOYMENT_TARGET" else PLATFORM="iPhoneOS" - CFLAGS="$CFLAGS -mios-version-min=$DEPLOYMENT_TARGET -fembed-bitcode" + CFLAGS="$CFLAGS -mios-version-min=$DEPLOYMENT_TARGET" if [ "$ARCH" = "arm64" ] then EXPORT="GASPP_FIX_XCODE5=1" diff --git a/submodules/libphonenumber/libphonenumber.xcodeproj/project.pbxproj b/submodules/libphonenumber/libphonenumber.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..92e460009d --- /dev/null +++ b/submodules/libphonenumber/libphonenumber.xcodeproj/project.pbxproj @@ -0,0 +1,789 @@ + + + + + archiveVersion + 1 + classes + + + objectVersion + 46 + objects + + 1DD70E29E45BABE300000000 + + isa + PBXFileReference + name + libphonenumber-Debug.xcconfig + path + ../../buck-out/gen/submodules/libphonenumber/libphonenumber-Debug.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E292142D68D00000000 + + isa + PBXFileReference + name + libphonenumber-Profile.xcconfig + path + ../../buck-out/gen/submodules/libphonenumber/libphonenumber-Profile.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + 1DD70E2994D981EF00000000 + + isa + PBXFileReference + name + libphonenumber-Release.xcconfig + path + ../../buck-out/gen/submodules/libphonenumber/libphonenumber-Release.xcconfig + sourceTree + SOURCE_ROOT + explicitFileType + text.xcconfig + + B401C9792F7F325000000000 + + isa + PBXGroup + name + Buck (Do Not Modify) + sourceTree + ]]> + children + + 1DD70E29E45BABE300000000 + 1DD70E292142D68D00000000 + 1DD70E2994D981EF00000000 + + + B401C979B781F65D00000000 + + isa + PBXGroup + name + Configurations + sourceTree + ]]> + children + + B401C9792F7F325000000000 + + + 1DD70E29CEF2788A00000000 + + isa + PBXFileReference + name + liblibphonenumber.a + path + liblibphonenumber.a + sourceTree + BUILT_PRODUCTS_DIR + explicitFileType + archive.ar + + B401C979C806358400000000 + + isa + PBXGroup + name + Products + sourceTree + ]]> + children + + 1DD70E29CEF2788A00000000 + + + 1DD70E29001F47FB00000000 + + isa + PBXFileReference + name + BUCK + path + BUCK + sourceTree + SOURCE_ROOT + explicitFileType + text.script.python + + 1DD70E2933905A3100000000 + + isa + PBXFileReference + name + NBAsYouTypeFormatter.h + path + Sources/NBAsYouTypeFormatter.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2933905A3600000000 + + isa + PBXFileReference + name + NBAsYouTypeFormatter.m + path + Sources/NBAsYouTypeFormatter.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29061A1CBC00000000 + + isa + PBXFileReference + name + NBMetadataCore.h + path + Sources/NBMetadataCore.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29061A1CC100000000 + + isa + PBXFileReference + name + NBMetadataCore.m + path + Sources/NBMetadataCore.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29799A195D00000000 + + isa + PBXFileReference + name + NBMetadataCoreMapper.h + path + Sources/NBMetadataCoreMapper.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29799A196200000000 + + isa + PBXFileReference + name + NBMetadataCoreMapper.m + path + Sources/NBMetadataCoreMapper.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E293EE93FEE00000000 + + isa + PBXFileReference + name + NBMetadataCoreTest.h + path + Sources/NBMetadataCoreTest.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E293EE93FF300000000 + + isa + PBXFileReference + name + NBMetadataCoreTest.m + path + Sources/NBMetadataCoreTest.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E296A3A8F0F00000000 + + isa + PBXFileReference + name + NBMetadataCoreTestMapper.h + path + Sources/NBMetadataCoreTestMapper.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E296A3A8F1400000000 + + isa + PBXFileReference + name + NBMetadataCoreTestMapper.m + path + Sources/NBMetadataCoreTestMapper.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29D4E4884B00000000 + + isa + PBXFileReference + name + NBMetadataHelper.h + path + Sources/NBMetadataHelper.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29D4E4885000000000 + + isa + PBXFileReference + name + NBMetadataHelper.m + path + Sources/NBMetadataHelper.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2986378D6E00000000 + + isa + PBXFileReference + name + NBNumberFormat.h + path + Sources/NBNumberFormat.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2986378D7300000000 + + isa + PBXFileReference + name + NBNumberFormat.m + path + Sources/NBNumberFormat.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E299959954300000000 + + isa + PBXFileReference + name + NBPhoneMetaData.h + path + Sources/NBPhoneMetaData.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E299959954800000000 + + isa + PBXFileReference + name + NBPhoneMetaData.m + path + Sources/NBPhoneMetaData.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29223172C400000000 + + isa + PBXFileReference + name + NBPhoneMetaDataGenerator.h + path + Sources/NBPhoneMetaDataGenerator.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29223172C900000000 + + isa + PBXFileReference + name + NBPhoneMetaDataGenerator.m + path + Sources/NBPhoneMetaDataGenerator.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29DE47113D00000000 + + isa + PBXFileReference + name + NBPhoneNumber.h + path + Sources/NBPhoneNumber.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29DE47114200000000 + + isa + PBXFileReference + name + NBPhoneNumber.m + path + Sources/NBPhoneNumber.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E29DBDFB14F00000000 + + isa + PBXFileReference + name + NBPhoneNumberDefines.h + path + Sources/NBPhoneNumberDefines.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E29DBDFB15400000000 + + isa + PBXFileReference + name + NBPhoneNumberDefines.m + path + Sources/NBPhoneNumberDefines.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E297B48422E00000000 + + isa + PBXFileReference + name + NBPhoneNumberDesc.h + path + Sources/NBPhoneNumberDesc.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E297B48423300000000 + + isa + PBXFileReference + name + NBPhoneNumberDesc.m + path + Sources/NBPhoneNumberDesc.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E2999199B5F00000000 + + isa + PBXFileReference + name + NBPhoneNumberUtil.h + path + Sources/NBPhoneNumberUtil.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + 1DD70E2999199B6400000000 + + isa + PBXFileReference + name + NBPhoneNumberUtil.m + path + Sources/NBPhoneNumberUtil.m + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.objc + + 1DD70E298A34800C00000000 + + isa + PBXFileReference + name + libphonenumber.h + path + Sources/libphonenumber.h + sourceTree + SOURCE_ROOT + lastKnownFileType + sourcecode.c.h + + B401C979EAB5339800000000 + + isa + PBXGroup + name + Sources + sourceTree + ]]> + children + + 1DD70E2933905A3100000000 + 1DD70E2933905A3600000000 + 1DD70E29061A1CBC00000000 + 1DD70E29061A1CC100000000 + 1DD70E29799A195D00000000 + 1DD70E29799A196200000000 + 1DD70E293EE93FEE00000000 + 1DD70E293EE93FF300000000 + 1DD70E296A3A8F0F00000000 + 1DD70E296A3A8F1400000000 + 1DD70E29D4E4884B00000000 + 1DD70E29D4E4885000000000 + 1DD70E2986378D6E00000000 + 1DD70E2986378D7300000000 + 1DD70E299959954300000000 + 1DD70E299959954800000000 + 1DD70E29223172C400000000 + 1DD70E29223172C900000000 + 1DD70E29DE47113D00000000 + 1DD70E29DE47114200000000 + 1DD70E29DBDFB14F00000000 + 1DD70E29DBDFB15400000000 + 1DD70E297B48422E00000000 + 1DD70E297B48423300000000 + 1DD70E2999199B5F00000000 + 1DD70E2999199B6400000000 + 1DD70E298A34800C00000000 + + + B401C979FECFD69200000000 + + isa + PBXGroup + name + libphonenumber + sourceTree + ]]> + children + + 1DD70E29001F47FB00000000 + B401C979EAB5339800000000 + + + B401C979EFB6AC4600000000 + + isa + PBXGroup + name + mainGroup + sourceTree + ]]> + children + + B401C979B781F65D00000000 + B401C979C806358400000000 + B401C979FECFD69200000000 + + + E7A30F0433905A3600000000 + + isa + PBXBuildFile + fileRef + 1DD70E2933905A3600000000 + + E7A30F04061A1CC100000000 + + isa + PBXBuildFile + fileRef + 1DD70E29061A1CC100000000 + + E7A30F04799A196200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29799A196200000000 + + E7A30F043EE93FF300000000 + + isa + PBXBuildFile + fileRef + 1DD70E293EE93FF300000000 + + E7A30F046A3A8F1400000000 + + isa + PBXBuildFile + fileRef + 1DD70E296A3A8F1400000000 + + E7A30F04D4E4885000000000 + + isa + PBXBuildFile + fileRef + 1DD70E29D4E4885000000000 + + E7A30F0486378D7300000000 + + isa + PBXBuildFile + fileRef + 1DD70E2986378D7300000000 + + E7A30F049959954800000000 + + isa + PBXBuildFile + fileRef + 1DD70E299959954800000000 + + E7A30F04223172C900000000 + + isa + PBXBuildFile + fileRef + 1DD70E29223172C900000000 + + E7A30F04DE47114200000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DE47114200000000 + + E7A30F04DBDFB15400000000 + + isa + PBXBuildFile + fileRef + 1DD70E29DBDFB15400000000 + + E7A30F047B48423300000000 + + isa + PBXBuildFile + fileRef + 1DD70E297B48423300000000 + + E7A30F0499199B6400000000 + + isa + PBXBuildFile + fileRef + 1DD70E2999199B6400000000 + + 1870857F0000000000000000 + + isa + PBXSourcesBuildPhase + files + + E7A30F0433905A3600000000 + E7A30F04061A1CC100000000 + E7A30F04799A196200000000 + E7A30F043EE93FF300000000 + E7A30F046A3A8F1400000000 + E7A30F04D4E4885000000000 + E7A30F0486378D7300000000 + E7A30F049959954800000000 + E7A30F04223172C900000000 + E7A30F04DE47114200000000 + E7A30F04DBDFB15400000000 + E7A30F047B48423300000000 + E7A30F0499199B6400000000 + + + 4952437303EDA63300000000 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + baseConfigurationReference + 1DD70E29E45BABE300000000 + + 4952437350C7218900000000 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + baseConfigurationReference + 1DD70E292142D68D00000000 + + 49524373A439BFE700000000 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + baseConfigurationReference + 1DD70E2994D981EF00000000 + + 218C37090000000000000000 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000000 + 4952437350C7218900000000 + 49524373A439BFE700000000 + + defaultConfigurationIsVisible + + + E66DC04EFECFD69200000000 + + isa + PBXNativeTarget + name + libphonenumber + productName + libphonenumber + productReference + 1DD70E29CEF2788A00000000 + productType + com.apple.product-type.library.static + dependencies + + + buildPhases + + 1870857F0000000000000000 + + buildConfigurationList + 218C37090000000000000000 + + 4952437303EDA63300000001 + + isa + XCBuildConfiguration + name + Debug + buildSettings + + + + 4952437350C7218900000001 + + isa + XCBuildConfiguration + name + Profile + buildSettings + + + + 49524373A439BFE700000001 + + isa + XCBuildConfiguration + name + Release + buildSettings + + + + 218C37090000000000000001 + + isa + XCConfigurationList + buildConfigurations + + 4952437303EDA63300000001 + 4952437350C7218900000001 + 49524373A439BFE700000001 + + defaultConfigurationIsVisible + + + 96C84793FECFD69200000000 + + isa + PBXProject + mainGroup + B401C979EFB6AC4600000000 + targets + + E66DC04EFECFD69200000000 + + buildConfigurationList + 218C37090000000000000001 + compatibilityVersion + Xcode 3.2 + attributes + + LastUpgradeCheck + 9999 + + + + rootObject + 96C84793FECFD69200000000 + + \ No newline at end of file diff --git a/submodules/libphonenumber/libphonenumber.xcodeproj/xcshareddata/xcschemes/libphonenumber.xcscheme b/submodules/libphonenumber/libphonenumber.xcodeproj/xcshareddata/xcschemes/libphonenumber.xcscheme new file mode 100644 index 0000000000..2310cea9da --- /dev/null +++ b/submodules/libphonenumber/libphonenumber.xcodeproj/xcshareddata/xcschemes/libphonenumber.xcscheme @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/submodules/libtgvoip/BUCK b/submodules/libtgvoip/BUCK new file mode 100644 index 0000000000..e9accaf3fc --- /dev/null +++ b/submodules/libtgvoip/BUCK @@ -0,0 +1,59 @@ +load("//Config:buck_rule_macros.bzl", "static_library", "glob_map", "glob_sub_map", "merge_maps") + +static_library( + name = "libtgvoip", + srcs = glob([ + "*.m", + "*.mm", + "*.cpp", + "audio/*.cpp", + "video/*.cpp", + "os/darwin/*.m", + "os/darwin/*.mm", + "os/darwin/*.cpp", + "os/posix/*.cpp", + "webrtc_dsp/**/*.c", + "webrtc_dsp/**/*.cc", + "webrtc_dsp/**/*.cpp", + ], exclude = ["os/darwin/*OSX*"]), + has_cpp = True, + headers = merge_maps([ + glob_map(glob([ + "*.h", + "audio/*.h", + "video/*.h", + ])), + glob_map(glob([ + "os/darwin/*.h", + ], exclude = ["os/darwin/*OSX*"])), + glob_sub_map("webrtc_dsp/", [ + "webrtc_dsp/**/*.h", + ]), + ]), + exported_headers = glob([ + "OngoingCallThreadLocalContext.h" + ]), + + compiler_flags = [ + "-DTGVOIP_USE_CUSTOM_CRYPTO", + "-DWEBRTC_APM_DEBUG_DUMP=0", + "-DWEBRTC_POSIX", + "-DTGVOIP_HAVE_TGLOG", + "-DWEBRTC_NS_FLOAT", + "-DWEBRTC_IOS", + "-DWEBRTC_HAS_NEON", + ], + deps = [ + "//submodules/MtProtoKit:MtProtoKit#shared", + "//submodules/Opus:opus", + ], + frameworks = [ + "$SDKROOT/System/Library/Frameworks/Foundation.framework", + "$SDKROOT/System/Library/Frameworks/UIKit.framework", + "$SDKROOT/System/Library/Frameworks/AudioToolbox.framework", + "$SDKROOT/System/Library/Frameworks/VideoToolbox.framework", + "$SDKROOT/System/Library/Frameworks/CoreTelephony.framework", + "$SDKROOT/System/Library/Frameworks/CoreMedia.framework", + "$SDKROOT/System/Library/Frameworks/AVFoundation.framework", + ], +) \ No newline at end of file diff --git a/submodules/TelegramVoip/Sources/OngoingCallThreadLocalContext.h b/submodules/libtgvoip/OngoingCallThreadLocalContext.h similarity index 100% rename from submodules/TelegramVoip/Sources/OngoingCallThreadLocalContext.h rename to submodules/libtgvoip/OngoingCallThreadLocalContext.h diff --git a/submodules/TelegramVoip/Sources/OngoingCallThreadLocalContext.mm b/submodules/libtgvoip/OngoingCallThreadLocalContext.mm similarity index 99% rename from submodules/TelegramVoip/Sources/OngoingCallThreadLocalContext.mm rename to submodules/libtgvoip/OngoingCallThreadLocalContext.mm index ec4f6368ed..995f3d9e91 100644 --- a/submodules/TelegramVoip/Sources/OngoingCallThreadLocalContext.mm +++ b/submodules/libtgvoip/OngoingCallThreadLocalContext.mm @@ -1,8 +1,8 @@ #import "OngoingCallThreadLocalContext.h" -#import "../../libtgvoip/VoIPController.h" -#import "../../libtgvoip/VoIPServerConfig.h" -#import "../../libtgvoip/os/darwin/SetupLogging.h" +#import "VoIPController.h" +#import "VoIPServerConfig.h" +#import "os/darwin/SetupLogging.h" #ifdef BUCK #import diff --git a/submodules/libtgvoip/libtgvoip_Xcode.xcodeproj/project.pbxproj b/submodules/libtgvoip/libtgvoip_Xcode.xcodeproj/project.pbxproj index 9ad7eb16dc..5ec8e45788 100644 --- a/submodules/libtgvoip/libtgvoip_Xcode.xcodeproj/project.pbxproj +++ b/submodules/libtgvoip/libtgvoip_Xcode.xcodeproj/project.pbxproj @@ -326,6 +326,8 @@ 69F791582222AC2800FE53C4 /* SampleBufferDisplayLayerRenderer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 69F791562222AC2800FE53C4 /* SampleBufferDisplayLayerRenderer.mm */; }; 69F791592222AC2800FE53C4 /* SampleBufferDisplayLayerRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 69F791572222AC2800FE53C4 /* SampleBufferDisplayLayerRenderer.h */; }; 69FB0B2D20F6860E00827817 /* MessageThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69FB0B2420F6860D00827817 /* MessageThread.cpp */; }; + D03292E22314249D00338D35 /* OngoingCallThreadLocalContext.h in Headers */ = {isa = PBXBuildFile; fileRef = D03292E02314249C00338D35 /* OngoingCallThreadLocalContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D03292E32314249D00338D35 /* OngoingCallThreadLocalContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = D03292E12314249D00338D35 /* OngoingCallThreadLocalContext.mm */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -1050,6 +1052,8 @@ 69FB0B2420F6860D00827817 /* MessageThread.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MessageThread.cpp; sourceTree = ""; }; 69FB0B2C20F6860D00827817 /* MessageThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageThread.h; sourceTree = ""; }; D00ACA4D20222F5D0045D427 /* SetupLogging.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SetupLogging.h; sourceTree = ""; }; + D03292E02314249C00338D35 /* OngoingCallThreadLocalContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OngoingCallThreadLocalContext.h; sourceTree = ""; }; + D03292E12314249D00338D35 /* OngoingCallThreadLocalContext.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = OngoingCallThreadLocalContext.mm; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -1079,6 +1083,8 @@ 692AB8861E6759BF00706ACC /* libtgvoip */ = { isa = PBXGroup; children = ( + D03292E02314249C00338D35 /* OngoingCallThreadLocalContext.h */, + D03292E12314249D00338D35 /* OngoingCallThreadLocalContext.mm */, 692AB8871E6759DD00706ACC /* audio */, 692AB88C1E6759DD00706ACC /* BlockingQueue.cpp */, 692AB88D1E6759DD00706ACC /* BlockingQueue.h */, @@ -2371,6 +2377,7 @@ 69F791502220A76500FE53C4 /* TGVVideoRenderer.h in Headers */, 69B607D422318BBE00ED7D94 /* ScreamCongestionController.h in Headers */, 6929CD102233ED81009B7378 /* PrivateDefines.h in Headers */, + D03292E22314249D00338D35 /* OngoingCallThreadLocalContext.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2415,6 +2422,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, ); mainGroup = 69F8422C1E67540700C110F7; @@ -2544,6 +2552,7 @@ 697E9CEA21A4ED6D00E03846 /* echo_path_variability.cc in Sources */, 697E9B7921A4ED6B00E03846 /* filter_ar.c in Sources */, 692AB9041E6759DD00706ACC /* VoIPServerConfig.cpp in Sources */, + D03292E32314249D00338D35 /* OngoingCallThreadLocalContext.mm in Sources */, 697E9B7D21A4ED6B00E03846 /* ilbc_specific_functions.c in Sources */, 697E9C7021A4ED6C00E03846 /* pitch_search_internal.cc in Sources */, 697E9C7D21A4ED6C00E03846 /* lp_residual.cc in Sources */, diff --git a/submodules/webp/BUCK b/submodules/webp/BUCK index c42b0c222d..c8f7bc56c0 100644 --- a/submodules/webp/BUCK +++ b/submodules/webp/BUCK @@ -28,7 +28,7 @@ apple_library( ) static_library( - name = "WebP", + name = "WebPImage", srcs = glob([ "WebP/*.m", ]),