├── ScreenCaptureDetector ├── Assets │ └── .gitkeep └── Classes │ └── .gitkeep ├── _Pods.xcodeproj ├── Example ├── ScreenCaptureDetector │ ├── Images.xcassets │ │ ├── Contents.json │ │ ├── icon.imageset │ │ │ ├── icon.png │ │ │ └── Contents.json │ │ ├── screendetector.dataset │ │ │ ├── screendetector.gif │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── ViewController.swift │ ├── Info.plist │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.xib │ └── AppDelegate.swift ├── Pods │ ├── Target Support Files │ │ ├── ScreenCaptureDetector │ │ │ ├── ScreenCaptureDetector.modulemap │ │ │ ├── ScreenCaptureDetector-dummy.m │ │ │ ├── ScreenCaptureDetector-prefix.pch │ │ │ ├── ScreenCaptureDetector-umbrella.h │ │ │ ├── ScreenCaptureDetector.debug.xcconfig │ │ │ ├── ScreenCaptureDetector.release.xcconfig │ │ │ └── ScreenCaptureDetector-Info.plist │ │ ├── Pods-ScreenCaptureDetector_Tests │ │ │ ├── Pods-ScreenCaptureDetector_Tests-acknowledgements.markdown │ │ │ ├── Pods-ScreenCaptureDetector_Tests.modulemap │ │ │ ├── Pods-ScreenCaptureDetector_Tests-dummy.m │ │ │ ├── Pods-ScreenCaptureDetector_Tests-umbrella.h │ │ │ ├── Pods-ScreenCaptureDetector_Tests.debug.xcconfig │ │ │ ├── Pods-ScreenCaptureDetector_Tests.release.xcconfig │ │ │ ├── Pods-ScreenCaptureDetector_Tests-Info.plist │ │ │ └── Pods-ScreenCaptureDetector_Tests-acknowledgements.plist │ │ └── Pods-ScreenCaptureDetector_Example │ │ │ ├── Pods-ScreenCaptureDetector_Example.modulemap │ │ │ ├── Pods-ScreenCaptureDetector_Example-dummy.m │ │ │ ├── Pods-ScreenCaptureDetector_Example-umbrella.h │ │ │ ├── Pods-ScreenCaptureDetector_Example.debug.xcconfig │ │ │ ├── Pods-ScreenCaptureDetector_Example.release.xcconfig │ │ │ ├── Pods-ScreenCaptureDetector_Example-Info.plist │ │ │ ├── Pods-ScreenCaptureDetector_Example-acknowledgements.markdown │ │ │ ├── Pods-ScreenCaptureDetector_Example-acknowledgements.plist │ │ │ └── Pods-ScreenCaptureDetector_Example-frameworks.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── ScreenCaptureDetector.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── ScreenCaptureDetector.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ScreenCaptureDetector-Example.xcscheme │ └── project.pbxproj ├── ScreenCaptureDetector.xcworkspace │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── contents.xcworkspacedata ├── Podfile.lock └── Tests │ ├── Info.plist │ └── Tests.swift ├── .travis.yml ├── Source ├── NotificationName+Extension .swift ├── ScreenCaptureDelegate.swift ├── ScreenCaptureDelegateDefaultImpl.swift └── ScreenCaptureRecordingDetector.swift ├── .gitignore ├── LICENSE ├── ScreenCaptureDetector.podspec └── README.md /ScreenCaptureDetector/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScreenCaptureDetector/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector/Images.xcassets/icon.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amrangry/ScreenCaptureDetector/HEAD/Example/ScreenCaptureDetector/Images.xcassets/icon.imageset/icon.png -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector.modulemap: -------------------------------------------------------------------------------- 1 | framework module ScreenCaptureDetector { 2 | umbrella header "ScreenCaptureDetector-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector/Images.xcassets/screendetector.dataset/screendetector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amrangry/ScreenCaptureDetector/HEAD/Example/ScreenCaptureDetector/Images.xcassets/screendetector.dataset/screendetector.gif -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ScreenCaptureDetector : NSObject 3 | @end 4 | @implementation PodsDummy_ScreenCaptureDetector 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'ScreenCaptureDetector_Example' do 4 | pod 'ScreenCaptureDetector', :path => '../' 5 | 6 | target 'ScreenCaptureDetector_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector/Images.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ScreenCaptureDetector_Tests { 2 | umbrella header "Pods-ScreenCaptureDetector_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ScreenCaptureDetector_Example { 2 | umbrella header "Pods-ScreenCaptureDetector_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ScreenCaptureDetector_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ScreenCaptureDetector_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ScreenCaptureDetector_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ScreenCaptureDetector_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector/Images.xcassets/screendetector.dataset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "data" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "screendetector.gif" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ScreenCaptureDetector (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - ScreenCaptureDetector (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | ScreenCaptureDetector: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | ScreenCaptureDetector: f6a47afaa45cb0afd7b62a96567fc40a6deafd3b 13 | 14 | PODFILE CHECKSUM: ddc31c36825c35a6b22897c0975e8f2846e8c5fb 15 | 16 | COCOAPODS: 1.9.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ScreenCaptureDetector (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - ScreenCaptureDetector (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | ScreenCaptureDetector: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | ScreenCaptureDetector: f6a47afaa45cb0afd7b62a96567fc40a6deafd3b 13 | 14 | PODFILE CHECKSUM: ddc31c36825c35a6b22897c0975e8f2846e8c5fb 15 | 16 | COCOAPODS: 1.9.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double ScreenCaptureDetectorVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char ScreenCaptureDetectorVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_ScreenCaptureDetector_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_ScreenCaptureDetector_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_ScreenCaptureDetector_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_ScreenCaptureDetector_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/ScreenCaptureDetector.xcworkspace -scheme ScreenCaptureDetector-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/ScreenCaptureDetector 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/ScreenCaptureDetector 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // ScreenCaptureDetector 4 | // 5 | // Created by amrangry on 04/23/2020. 6 | // Copyright (c) 2020 amrangry. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | // Do any additional setup after loading the view, typically from a nib. 16 | } 17 | 18 | override func didReceiveMemoryWarning() { 19 | super.didReceiveMemoryWarning() 20 | // Dispose of any resources that can be recreated. 21 | } 22 | 23 | } 24 | 25 | -------------------------------------------------------------------------------- /Source/NotificationName+Extension .swift: -------------------------------------------------------------------------------- 1 | // 2 | // NotificationName+Extension .swift 3 | // ADKATech.com 4 | // 5 | // Created by AmrAngry on 4/25/20. 6 | // Copyright © 2020 ADKA Tech. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public extension Notification.Name { 12 | /// This notification is posted after the user start recording screen or mirror application screen 13 | static let screenCapturingStarted = Notification.Name(rawValue: "screenCapturingStarted") 14 | /// This notification is posted after the user end recording screen or mirror application screen 15 | static let screenCapturingEnded = Notification.Name(rawValue: "screenCapturingEnded") 16 | } 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ScreenCaptureDetector" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ScreenCaptureDetector/ScreenCaptureDetector.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "ScreenCaptureDetector" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ScreenCaptureDetector" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ScreenCaptureDetector/ScreenCaptureDetector.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "ScreenCaptureDetector" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ScreenCaptureDetector.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ScreenCaptureDetector", 3 | "version": "0.1.0", 4 | "summary": "A short description of ScreenCaptureDetector.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/amrangry/ScreenCaptureDetector", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "amrangry": "amr.elghadban@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/amrangry/ScreenCaptureDetector.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "ScreenCaptureDetector/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import ScreenCaptureDetector 3 | 4 | class Tests: XCTestCase { 5 | 6 | override func setUp() { 7 | super.setUp() 8 | // Put setup code here. This method is called before the invocation of each test method in the class. 9 | } 10 | 11 | override func tearDown() { 12 | // Put teardown code here. This method is called after the invocation of each test method in the class. 13 | super.tearDown() 14 | } 15 | 16 | func testExample() { 17 | // This is an example of a functional test case. 18 | XCTAssert(true, "Pass") 19 | } 20 | 21 | func testPerformanceExample() { 22 | // This is an example of a performance test case. 23 | self.measure() { 24 | // Put the code you want to measure the time of here. 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ScreenCaptureDetector" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ScreenCaptureDetector/ScreenCaptureDetector.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "ScreenCaptureDetector" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ScreenCaptureDetector" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ScreenCaptureDetector/ScreenCaptureDetector.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "ScreenCaptureDetector" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Source/ScreenCaptureDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ScreenCaptureDelegate.swift 3 | // ADKATech.com 4 | // 5 | // Created by AmrAngry on 4/25/20. 6 | // Copyright © 2020 ADKA Tech. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | //swiftlint:disable:next class_delegate_protocol 12 | protocol ScreenCaptureDelegate: NSObject { 13 | func didStartCapture() 14 | func didEndCapture() 15 | func didTakeScreenshot() 16 | } 17 | 18 | extension ScreenCaptureDelegate { 19 | 20 | func didStartCapture() { 21 | #if DEBUG 22 | print("extension defualt implement didStartCapture") 23 | #endif 24 | } 25 | 26 | func didEndCapture() { 27 | #if DEBUG 28 | print("extension defualt implement didEndCapture") 29 | #endif 30 | } 31 | 32 | func didTakeScreenshot() { 33 | #if DEBUG 34 | print("extension defualt implement didTakeScreenshot") 35 | #endif 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.1 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | # Xcode - User files 26 | xcuserdata/ 27 | xcuserdata/* 28 | *.xcuserdata 29 | *.xcuserstate 30 | UserInterfaceState.xcuserstate 31 | 32 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 33 | # Carthage/Checkouts 34 | 35 | Carthage/Build 36 | 37 | # We recommend against adding the Pods directory to your .gitignore. However 38 | # you should judge for yourself, the pros and cons are mentioned at: 39 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 40 | # 41 | # Note: if you ignore the Pods directory, make sure to uncomment 42 | # `pod install` in .travis.yml 43 | # 44 | # Pods/ 45 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020 amrangry 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## ScreenCaptureDetector 5 | 6 | Copyright (c) 2020 amrangry 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationPortraitUpsideDown 38 | UIInterfaceOrientationLandscapeRight 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Source/ScreenCaptureDelegateDefaultImpl.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ScreenCaptureHandler.swift 3 | // ADKATech.com 4 | // 5 | // Created by AmrAngry on 4/25/20. 6 | // Copyright © 2020 ADKA Tech. All rights reserved. 7 | // 8 | 9 | 10 | import Foundation 11 | import UIKit 12 | 13 | final class ScreenCaptureDelegateDefaultImpl: NSObject { 14 | 15 | static let `default` = ScreenCaptureDelegateDefaultImpl() 16 | 17 | var customView: UIView 18 | var window: UIWindow? { 19 | didSet { 20 | customView.frame = window?.bounds ?? CGRect.init(x: 0, y: 0, width: 200, height: 200) 21 | customView.layoutIfNeeded() 22 | } 23 | } 24 | 25 | override init() { 26 | 27 | customView = UIView() 28 | customView.backgroundColor = .red 29 | 30 | if let applicationWindow = UIApplication.shared.windows.first { 31 | window = applicationWindow 32 | customView.frame = window?.bounds ?? CGRect.init(x: 0, y: 0, width: 200, height: 200) 33 | customView.layoutIfNeeded() 34 | } 35 | 36 | super.init() 37 | } 38 | 39 | convenience init(suspendView view: UIView) { 40 | self.init() 41 | customView = view 42 | } 43 | 44 | convenience init(suspendView view: UIView, drawOver: UIView?) { 45 | self.init() 46 | customView = view 47 | window = drawOver as? UIWindow 48 | } 49 | 50 | } 51 | 52 | extension ScreenCaptureDelegateDefaultImpl: ScreenCaptureDelegate { 53 | func didStartCapture() { 54 | let views = window?.subviews 55 | 56 | if views?.contains(customView) ?? false { 57 | window?.bringSubviewToFront(customView) 58 | } else { 59 | window?.addSubview(customView) 60 | } 61 | //self.window?.addSubview(ScreenCaptureRecordingDetector.shared.imageview) 62 | } 63 | 64 | func didEndCapture() { 65 | customView.removeFromSuperview() 66 | } 67 | } 68 | 69 | -------------------------------------------------------------------------------- /ScreenCaptureDetector.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint ScreenCaptureDetector.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'ScreenCaptureDetector' 11 | s.version = '0.1.1' 12 | s.summary = 'helper tool intervene if App being captured via mirror screen or recorded in addition to screenshot alert' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | 21 | s.description = <<-DESC 22 | ScreenCaptureDetector is heler tool that can detect if the application is being capture via mirror screen or recorded in addition to screenshot alert by running task in background check every 1 sec check 23 | * adds an overlay to your app when it is capture or mirrored 24 | DESC 25 | 26 | # s.description = <<-DESC 27 | # TODO: Add long description of the pod here. 28 | # DESC 29 | 30 | s.homepage = 'https://github.com/amrangry/ScreenCaptureDetector' 31 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 32 | s.license = { :type => 'MIT', :file => 'LICENSE' } 33 | s.author = { 'amrangry' => 'amr.elghadban@gmail.com' } 34 | s.source = { :git => 'https://github.com/amrangry/ScreenCaptureDetector.git', :tag => s.version.to_s } 35 | s.social_media_url = 'https://twitter.com/amr_elghadban' 36 | s.ios.deployment_target = '12.0' 37 | #s.source_files = 'ScreenCaptureDetector/Classes/**/*' 38 | s.source_files = 'Source/**/*.swift' 39 | s.swift_version = '5.0' 40 | s.platforms = { 41 | "ios": "12.0" 42 | } 43 | # s.resource_bundles = { 44 | # 'ScreenCaptureDetector' => ['ScreenCaptureDetector/Assets/*.png'] 45 | # } 46 | 47 | # s.public_header_files = 'Pod/Classes/**/*.h' 48 | # s.frameworks = 'UIKit', 'MapKit' 49 | # s.dependency 'AFNetworking', '~> 2.3' 50 | end 51 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2020 amrangry <amr.elghadban@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | ScreenCaptureDetector 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 22 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // ScreenCaptureDetector 4 | // 5 | // Created by amrangry on 04/23/2020. 6 | // Copyright (c) 2020 amrangry. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import ScreenCaptureDetector 11 | 12 | @UIApplicationMain 13 | class AppDelegate: UIResponder, UIApplicationDelegate { 14 | 15 | var window: UIWindow? 16 | var view: UIView = UIView() 17 | 18 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 19 | // Override point for customization after application launch. 20 | 21 | /* 22 | ///How to use using NotificationCenter 23 | let monitor = ScreenCaptureRecordingDetector() 24 | monitor.delegate = nil 25 | monitor.startMonitor() 26 | NotificationCenter.default.addObserver(self, selector: #selector(showScreen), name: .screenCapturingStarted, object: nil) 27 | NotificationCenter.default.addObserver(self, selector: #selector(dimissScreen), name: .screenCapturingEnded, object: nil) 28 | */ 29 | 30 | /* 31 | ///How to use using Custom view 32 | let appDelegate = UIApplication.shared.delegate as? AppDelegate 33 | let overWindow = appDelegate?.window 34 | let customView = UIView.init(frame: overWindow?.bounds ?? CGRect.init(x: 0, y: 0, width: 200, height: 200)) 35 | customView.backgroundColor = .yellow 36 | 37 | let screenCaptureDelegate = ScreenCaptureDelegateDefaultImpl.init(suspendView: customView, drawOver: overWindow) 38 | let monitor = ScreenCaptureRecordingDetector(delegate: screenCaptureDelegate) 39 | monitor.startMonitor() 40 | */ 41 | 42 | ///How to use using default instance 43 | let monitor = ScreenCaptureRecordingDetector.createDafaultInstnace() 44 | monitor.startMonitor() 45 | return true 46 | } 47 | 48 | @objc func showScreen() { 49 | view.frame = window?.bounds ?? CGRect.init(x: 0, y: 0, width: 200, height: 200) 50 | view.backgroundColor = .blue 51 | 52 | let views = window?.subviews 53 | 54 | if views?.contains(view) ?? false { 55 | window?.bringSubviewToFront(view) 56 | } else { 57 | window?.addSubview(view) 58 | } 59 | 60 | } 61 | 62 | @objc func dimissScreen() { 63 | view.removeFromSuperview() 64 | let views = window?.subviews 65 | print(views?.count ?? 0) 66 | } 67 | 68 | func applicationWillResignActive(_ application: UIApplication) { 69 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 70 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 71 | } 72 | 73 | func applicationDidEnterBackground(_ application: UIApplication) { 74 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 75 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 76 | } 77 | 78 | func applicationWillEnterForeground(_ application: UIApplication) { 79 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 80 | } 81 | 82 | func applicationDidBecomeActive(_ application: UIApplication) { 83 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 84 | } 85 | 86 | func applicationWillTerminate(_ application: UIApplication) { 87 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 88 | } 89 | 90 | 91 | } 92 | 93 | 94 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |

3 | 4 |

5 | 6 | # ScreenCaptureDetector 7 | 8 | [![CI Status](https://img.shields.io/travis/amrangry/ScreenCaptureDetector.svg?style=flat)](https://travis-ci.org/amrangry/ScreenCaptureDetector) 9 | [![Version](https://img.shields.io/cocoapods/v/ScreenCaptureDetector.svg?style=flat)](https://cocoapods.org/pods/ScreenCaptureDetector) 10 | [![License](https://img.shields.io/cocoapods/l/ScreenCaptureDetector.svg?style=flat)](https://cocoapods.org/pods/ScreenCaptureDetector) 11 | [![Platform](https://img.shields.io/cocoapods/p/ScreenCaptureDetector.svg?style=flat)](https://cocoapods.org/pods/ScreenCaptureDetector) 12 | 13 | --- 14 | 15 | ## About 16 | --- 17 | ScreenCaptureDetector is heler tool that can detect if the application is being capture via mirror screen or recorded in addition to screenshot alert 18 | * adds an overlay to your app when it is capture or mirrored 19 | 20 | 21 | ## Picture says a thousand words 22 | --- 23 | 24 | ![Alt text](https://github.com/amrangry/ScreenCaptureDetector/blob/master/Example/ScreenCaptureDetector/Images.xcassets/screendetector.dataset/screendetector.gif?raw=true "Screen Player") 25 | 26 | 27 | ## Example 28 | 29 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 30 | 31 | ## Requirements 32 | 33 | Swift 5 34 | 35 | ## Installation 36 | 37 | CocoaPods 38 | 39 | ScreenCaptureDetector is available through [CocoaPods](https://cocoapods.org). To install 40 | it, simply add the following line to your Podfile: 41 | 42 | ```ruby 43 | pod 'ScreenCaptureDetector' 44 | ``` 45 | 46 | ## How To Use 47 | 48 | Simply import ScreenCaptureDetector in AppDelegate: 49 | import ScreenCaptureDetector 50 | 51 | Add the following to AppDelegate's didFinishLaunchingWithOptions: 52 | ```ruby 53 | ///How to use using default instance 54 | let monitor = ScreenCaptureRecordingDetector.createDafaultInstnace() 55 | monitor.startMonitor() 56 | ``` 57 | Or "Recommended" 58 | ```ruby 59 | 60 | 1- conform protocol ScreenCaptureDelegate that has 3 optional func : 61 | func didStartCapture() 62 | func didEndCapture() 63 | func didTakeScreenshot() 64 | 65 | 2- passing the conformed class to the init method of ScreenCaptureRecordingDetector 66 | 3- calling method startMonitor() to start 67 | 4- calling method endMonitor() to stop 68 | 69 | ``` 70 | Or 71 | ```ruby 72 | ///How to use using NotificationCenter 73 | let monitor = ScreenCaptureRecordingDetector() 74 | monitor.delegate = nil 75 | monitor.startMonitor() 76 | NotificationCenter.default.addObserver(self, selector: #selector(showScreen), name: .screenCapturingStarted, object: nil) 77 | NotificationCenter.default.addObserver(self, selector: #selector(dimissScreen), name: .screenCapturingEnded, object: nil) 78 | 79 | ``` 80 | Or 81 | ```ruby 82 | ///How to use using Custom view 83 | let appDelegate = UIApplication.shared.delegate as? AppDelegate 84 | let overWindow = appDelegate?.window 85 | let customView = UIView.init(frame: overWindow?.bounds ?? CGRect.init(x: 0, y: 0, width: 200, height: 200)) 86 | customView.backgroundColor = .yellow 87 | 88 | let screenCaptureDelegate = ScreenCaptureDelegateDefaultImpl(suspendView: customView, drawOver: overWindow) 89 | let monitor = ScreenCaptureRecordingDetector(delegate: screenCaptureDelegate) 90 | monitor.startMonitor() 91 | ``` 92 | ## Environment 93 | --- 94 | ```ruby 95 | Xcode Version 11.3.1 96 | ``` 97 | ```ruby 98 | Swift 5.0 99 | ``` 100 | 101 | ## Author 102 | [Send Email](mailto:amr.elghadban@gmail.com?subject=I%20checked%20your%20GitHub%20repo!): amr.elghadban@gmail.com 103 | 104 | [![Twitter Follow](https://img.shields.io/twitter/follow/amr_elghadban?style=social)](https://twitter.com/intent/follow?screen_name=amr_elghadban) 105 | 106 | [![Linkedin](https://img.shields.io/badge/Lets%20Connect%20via-LinkedIn-blue)](https://www.linkedin.com/in/amrelghadban/) 107 | 108 | WebSite: [https://amrangry.github.io/](https://amrangry.github.io/) 109 | 110 | ## Contributing 🤘 111 | All your feedback and help to improve this project is very welcome. Please create issues for your bugs, ideas and enhancement requests, or better yet, contribute directly by creating a PR. 😎 112 | 113 | When reporting an issue, please add a detailed instruction, and if possible a code snippet or test that can be used as a reproducer of your problem. 💥 114 | 115 | When creating a pull request, please adhere to the current coding style where possible, and create tests with your code so it keeps providing an awesome test coverage level 💪 116 | 117 | ## License 118 |
119 | MIT License. 120 | Distributed under MIT License. 121 | Copyright 2025 Amr Elghadban 122 |
123 | 124 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector.xcodeproj/xcshareddata/xcschemes/ScreenCaptureDetector-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 51 | 52 | 53 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 76 | 78 | 84 | 85 | 86 | 87 | 93 | 95 | 101 | 102 | 103 | 104 | 106 | 107 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /Source/ScreenCaptureRecordingDetector.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ScreenCaptureRecordingDetector.swift 3 | // ADKATech.com 4 | // 5 | // Created by AmrAngry on 4/23/20. 6 | // Copyright © 2020 ADKA Tech. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | /// ScreenCaptureRecordingDetector Class 12 | /// reponsible for start and end monitoring for screencapture 13 | final public class ScreenCaptureRecordingDetector { 14 | 15 | /// default instance for handling the Capture screen 16 | // public static let `default` = ScreenCaptureRecordingDetector() 17 | // open class var `default`: ScreenCaptureRecordingDetector { get } 18 | 19 | var delegate: ScreenCaptureDelegate? //swiftlint:disable:this weak_delegate 20 | internal var gameTimer: Timer? 21 | internal var stop: Bool? 22 | internal let screen: UIScreen = UIScreen.main 23 | private var screenshotNotification: NSObjectProtocol? 24 | 25 | /// True if this screen is being captured (e.g. recorded, AirPlayed, mirrored, etc.) 26 | /// False if mirroring is disabled or unsupported 27 | /// Readonly properity 28 | public var isCaptured: Bool { 29 | return isCapture() 30 | } 31 | 32 | deinit { 33 | purgeDependancies() 34 | } 35 | 36 | private init() { 37 | screenshotNotification = NotificationCenter.default.addObserver(forName: UIApplication.userDidTakeScreenshotNotification, object: nil, queue: OperationQueue.main) { [weak self] notification in 38 | 39 | guard let `self` = self else { 40 | return 41 | } 42 | #if DEBUG 43 | print("Post \(notification.name)") 44 | #endif 45 | self.delegate?.didTakeScreenshot() 46 | } 47 | 48 | } 49 | 50 | convenience init(delegate: ScreenCaptureDelegate) { 51 | self.init() 52 | self.delegate = delegate 53 | } 54 | 55 | /// Create instnace that has default implementation 56 | /// @return ScreenCaptureRecordingDetector 57 | public static func createDafaultInstnace() -> ScreenCaptureRecordingDetector { 58 | let handler = ScreenCaptureDelegateDefaultImpl.default 59 | let instance = ScreenCaptureRecordingDetector(delegate: handler) 60 | return instance 61 | } 62 | 63 | /// start monitoring for screen capture 64 | public func startMonitor() { 65 | if #available(iOS 10.0, *) { 66 | Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { timer in 67 | if self.stop ?? false { 68 | timer.invalidate() 69 | } 70 | self.checkForScreenCapture() 71 | } 72 | } else { 73 | // Fallback on earlier versions 74 | if !(gameTimer?.isValid ?? false) { 75 | gameTimer = Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(runTimedCode), userInfo: nil, repeats: true) 76 | // gameTimer?.fire() 77 | } 78 | } 79 | } 80 | 81 | /// End monitoring for screen capture 82 | public func endMonitor() { 83 | stop = false 84 | purgeDependancies() 85 | } 86 | 87 | @objc internal func runTimedCode() { 88 | if stop ?? false { 89 | gameTimer?.invalidate() 90 | } 91 | } 92 | 93 | private func checkForScreenCapture() { 94 | let isCaptured = isCapture() 95 | ///value that indicates whether the contents of the screen are being cloned to another destination. 96 | // let isMirrord = screen.mirrored ///property which detects if the screen is being mirrored by an external display. 97 | print(isCaptured) 98 | // print(isMirrord) 99 | // gameTimer?.invalidate() 100 | if isCaptured { 101 | NotificationCenter.default.post(name: .screenCapturingStarted, object: isCaptured) 102 | delegate?.didStartCapture() 103 | } else { 104 | NotificationCenter.default.post(name: .screenCapturingEnded, object: isCaptured) 105 | delegate?.didEndCapture() 106 | } 107 | } 108 | 109 | private func isCapture() -> Bool { 110 | var isCaptured: Bool = false 111 | if #available(iOS 11.0, *) { 112 | isCaptured = screen.isCaptured //screen capture is active 113 | } else { 114 | // Fallback on earlier versions 115 | isCaptured = (screen.mirrored != nil) ? true:false // mirroring is active 116 | } 117 | 118 | return isCaptured 119 | } 120 | 121 | func purgeDependancies() { 122 | // NotificationCenter.default.removeObserver(screenshotNotification as Any, name: UIApplication.userDidTakeScreenshotNotification, object: nil) 123 | NotificationCenter.default.removeObserver(screenshotNotification as Any) 124 | gameTimer?.invalidate() 125 | } 126 | 127 | // - (BOOL)isRecording { 128 | // for (UIScreen *screen in UIScreen.screens) { 129 | // if ([screen respondsToSelector:@selector(isCaptured)]) { 130 | // // iOS 11+ has isCaptured method. 131 | // if ([screen performSelector:@selector(isCaptured)]) { 132 | // return YES; // screen capture is active 133 | // } else if (screen.mirroredScreen) { 134 | // return YES; // mirroring is active 135 | // } 136 | // } else { 137 | // // iOS version below 11.0 138 | // if (screen.mirroredScreen) 139 | // return YES; 140 | // } 141 | // } 142 | // return NO; 143 | // } 144 | 145 | } 146 | 147 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | function on_error { 7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" 8 | } 9 | trap 'on_error $LINENO' ERR 10 | 11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 13 | # frameworks to, so exit 0 (signalling the script phase was successful). 14 | exit 0 15 | fi 16 | 17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 19 | 20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 21 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 22 | 23 | # Used as a return value for each invocation of `strip_invalid_archs` function. 24 | STRIP_BINARY_RETVAL=0 25 | 26 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 27 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 28 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 29 | 30 | # Copies and strips a vendored framework 31 | install_framework() 32 | { 33 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 34 | local source="${BUILT_PRODUCTS_DIR}/$1" 35 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 36 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 37 | elif [ -r "$1" ]; then 38 | local source="$1" 39 | fi 40 | 41 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 42 | 43 | if [ -L "${source}" ]; then 44 | echo "Symlinked..." 45 | source="$(readlink "${source}")" 46 | fi 47 | 48 | # Use filter instead of exclude so missing patterns don't throw errors. 49 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 50 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 51 | 52 | local basename 53 | basename="$(basename -s .framework "$1")" 54 | binary="${destination}/${basename}.framework/${basename}" 55 | 56 | if ! [ -r "$binary" ]; then 57 | binary="${destination}/${basename}" 58 | elif [ -L "${binary}" ]; then 59 | echo "Destination binary is symlinked..." 60 | dirname="$(dirname "${binary}")" 61 | binary="${dirname}/$(readlink "${binary}")" 62 | fi 63 | 64 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 65 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 66 | strip_invalid_archs "$binary" 67 | fi 68 | 69 | # Resign the code if required by the build settings to avoid unstable apps 70 | code_sign_if_enabled "${destination}/$(basename "$1")" 71 | 72 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 73 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 74 | local swift_runtime_libs 75 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) 76 | for lib in $swift_runtime_libs; do 77 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 78 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 79 | code_sign_if_enabled "${destination}/${lib}" 80 | done 81 | fi 82 | } 83 | 84 | # Copies and strips a vendored dSYM 85 | install_dsym() { 86 | local source="$1" 87 | warn_missing_arch=${2:-true} 88 | if [ -r "$source" ]; then 89 | # Copy the dSYM into the targets temp dir. 90 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 91 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 92 | 93 | local basename 94 | basename="$(basename -s .dSYM "$source")" 95 | binary_name="$(ls "$source/Contents/Resources/DWARF")" 96 | binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" 97 | 98 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 99 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 100 | strip_invalid_archs "$binary" "$warn_missing_arch" 101 | fi 102 | 103 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 104 | # Move the stripped file into its final destination. 105 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 106 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 107 | else 108 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 109 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" 110 | fi 111 | fi 112 | } 113 | 114 | # Copies the bcsymbolmap files of a vendored framework 115 | install_bcsymbolmap() { 116 | local bcsymbolmap_path="$1" 117 | local destination="${BUILT_PRODUCTS_DIR}" 118 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" 119 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 120 | } 121 | 122 | # Signs a framework with the provided identity 123 | code_sign_if_enabled() { 124 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 125 | # Use the current code_sign_identity 126 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 127 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 128 | 129 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 130 | code_sign_cmd="$code_sign_cmd &" 131 | fi 132 | echo "$code_sign_cmd" 133 | eval "$code_sign_cmd" 134 | fi 135 | } 136 | 137 | # Strip invalid architectures 138 | strip_invalid_archs() { 139 | binary="$1" 140 | warn_missing_arch=${2:-true} 141 | # Get architectures for current target binary 142 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 143 | # Intersect them with the architectures we are building for 144 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 145 | # If there are no archs supported by this binary then warn the user 146 | if [[ -z "$intersected_archs" ]]; then 147 | if [[ "$warn_missing_arch" == "true" ]]; then 148 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 149 | fi 150 | STRIP_BINARY_RETVAL=0 151 | return 152 | fi 153 | stripped="" 154 | for arch in $binary_archs; do 155 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 156 | # Strip non-valid architectures in-place 157 | lipo -remove "$arch" -output "$binary" "$binary" 158 | stripped="$stripped $arch" 159 | fi 160 | done 161 | if [[ "$stripped" ]]; then 162 | echo "Stripped $binary of architectures:$stripped" 163 | fi 164 | STRIP_BINARY_RETVAL=1 165 | } 166 | 167 | install_artifact() { 168 | artifact="$1" 169 | base="$(basename "$artifact")" 170 | case $base in 171 | *.framework) 172 | install_framework "$artifact" 173 | ;; 174 | *.dSYM) 175 | # Suppress arch warnings since XCFrameworks will include many dSYM files 176 | install_dsym "$artifact" "false" 177 | ;; 178 | *.bcsymbolmap) 179 | install_bcsymbolmap "$artifact" 180 | ;; 181 | *) 182 | echo "error: Unrecognized artifact "$artifact"" 183 | ;; 184 | esac 185 | } 186 | 187 | copy_artifacts() { 188 | file_list="$1" 189 | while read artifact; do 190 | install_artifact "$artifact" 191 | done <$file_list 192 | } 193 | 194 | ARTIFACT_LIST_FILE="${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt" 195 | if [ -r "${ARTIFACT_LIST_FILE}" ]; then 196 | copy_artifacts "${ARTIFACT_LIST_FILE}" 197 | fi 198 | 199 | if [[ "$CONFIGURATION" == "Debug" ]]; then 200 | install_framework "${BUILT_PRODUCTS_DIR}/ScreenCaptureDetector/ScreenCaptureDetector.framework" 201 | fi 202 | if [[ "$CONFIGURATION" == "Release" ]]; then 203 | install_framework "${BUILT_PRODUCTS_DIR}/ScreenCaptureDetector/ScreenCaptureDetector.framework" 204 | fi 205 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 206 | wait 207 | fi 208 | -------------------------------------------------------------------------------- /Example/ScreenCaptureDetector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 11 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 12 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 13 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 14 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 15 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 16 | BA8BE801DED31ABF985B19AA /* Pods_ScreenCaptureDetector_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CACA0DAB3CCDA4D015A85E1C /* Pods_ScreenCaptureDetector_Tests.framework */; }; 17 | BBA03215D6F7F728E2E764D5 /* Pods_ScreenCaptureDetector_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E14D9E0D4470E56A5E3DE4E2 /* Pods_ScreenCaptureDetector_Example.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 26 | remoteInfo = ScreenCaptureDetector; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 1328611054A04F74FBB60CB7 /* Pods-ScreenCaptureDetector_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScreenCaptureDetector_Example.debug.xcconfig"; path = "Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example.debug.xcconfig"; sourceTree = ""; }; 32 | 1C6AC94DEDF9C8585955FB03 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 33 | 2DE014A07632AA531BB325D6 /* ScreenCaptureDetector.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = ScreenCaptureDetector.podspec; path = ../ScreenCaptureDetector.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 34 | 3869873D3215F78457D8C71E /* Pods-ScreenCaptureDetector_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScreenCaptureDetector_Tests.debug.xcconfig"; path = "Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests.debug.xcconfig"; sourceTree = ""; }; 35 | 59171F8A606EF129A216C4A2 /* Pods-ScreenCaptureDetector_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScreenCaptureDetector_Tests.release.xcconfig"; path = "Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests.release.xcconfig"; sourceTree = ""; }; 36 | 607FACD01AFB9204008FA782 /* ScreenCaptureDetector_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ScreenCaptureDetector_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 37 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 38 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 39 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 40 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 41 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 42 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 43 | 607FACE51AFB9204008FA782 /* ScreenCaptureDetector_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ScreenCaptureDetector_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 44 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 45 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 46 | 85DBAE2BCF54C6AF3101D7CB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 47 | C6ACF696307E84E3FAF37FA4 /* Pods-ScreenCaptureDetector_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScreenCaptureDetector_Example.release.xcconfig"; path = "Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example.release.xcconfig"; sourceTree = ""; }; 48 | CACA0DAB3CCDA4D015A85E1C /* Pods_ScreenCaptureDetector_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScreenCaptureDetector_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | E14D9E0D4470E56A5E3DE4E2 /* Pods_ScreenCaptureDetector_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScreenCaptureDetector_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | BBA03215D6F7F728E2E764D5 /* Pods_ScreenCaptureDetector_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | BA8BE801DED31ABF985B19AA /* Pods_ScreenCaptureDetector_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 38FF05BF2CC6DC134452705C /* Frameworks */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | E14D9E0D4470E56A5E3DE4E2 /* Pods_ScreenCaptureDetector_Example.framework */, 76 | CACA0DAB3CCDA4D015A85E1C /* Pods_ScreenCaptureDetector_Tests.framework */, 77 | ); 78 | name = Frameworks; 79 | sourceTree = ""; 80 | }; 81 | 5B0A63922E29CD2E52DF459E /* Pods */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | 1328611054A04F74FBB60CB7 /* Pods-ScreenCaptureDetector_Example.debug.xcconfig */, 85 | C6ACF696307E84E3FAF37FA4 /* Pods-ScreenCaptureDetector_Example.release.xcconfig */, 86 | 3869873D3215F78457D8C71E /* Pods-ScreenCaptureDetector_Tests.debug.xcconfig */, 87 | 59171F8A606EF129A216C4A2 /* Pods-ScreenCaptureDetector_Tests.release.xcconfig */, 88 | ); 89 | path = Pods; 90 | sourceTree = ""; 91 | }; 92 | 607FACC71AFB9204008FA782 = { 93 | isa = PBXGroup; 94 | children = ( 95 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 96 | 607FACD21AFB9204008FA782 /* Example for ScreenCaptureDetector */, 97 | 607FACE81AFB9204008FA782 /* Tests */, 98 | 607FACD11AFB9204008FA782 /* Products */, 99 | 5B0A63922E29CD2E52DF459E /* Pods */, 100 | 38FF05BF2CC6DC134452705C /* Frameworks */, 101 | ); 102 | sourceTree = ""; 103 | }; 104 | 607FACD11AFB9204008FA782 /* Products */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 607FACD01AFB9204008FA782 /* ScreenCaptureDetector_Example.app */, 108 | 607FACE51AFB9204008FA782 /* ScreenCaptureDetector_Tests.xctest */, 109 | ); 110 | name = Products; 111 | sourceTree = ""; 112 | }; 113 | 607FACD21AFB9204008FA782 /* Example for ScreenCaptureDetector */ = { 114 | isa = PBXGroup; 115 | children = ( 116 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 117 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 118 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 119 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 120 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 121 | 607FACD31AFB9204008FA782 /* Supporting Files */, 122 | ); 123 | name = "Example for ScreenCaptureDetector"; 124 | path = ScreenCaptureDetector; 125 | sourceTree = ""; 126 | }; 127 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 128 | isa = PBXGroup; 129 | children = ( 130 | 607FACD41AFB9204008FA782 /* Info.plist */, 131 | ); 132 | name = "Supporting Files"; 133 | sourceTree = ""; 134 | }; 135 | 607FACE81AFB9204008FA782 /* Tests */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 139 | 607FACE91AFB9204008FA782 /* Supporting Files */, 140 | ); 141 | path = Tests; 142 | sourceTree = ""; 143 | }; 144 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 145 | isa = PBXGroup; 146 | children = ( 147 | 607FACEA1AFB9204008FA782 /* Info.plist */, 148 | ); 149 | name = "Supporting Files"; 150 | sourceTree = ""; 151 | }; 152 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 153 | isa = PBXGroup; 154 | children = ( 155 | 2DE014A07632AA531BB325D6 /* ScreenCaptureDetector.podspec */, 156 | 85DBAE2BCF54C6AF3101D7CB /* README.md */, 157 | 1C6AC94DEDF9C8585955FB03 /* LICENSE */, 158 | ); 159 | name = "Podspec Metadata"; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* ScreenCaptureDetector_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ScreenCaptureDetector_Example" */; 168 | buildPhases = ( 169 | 163FAF589E281267971A4938 /* [CP] Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | 20A428C606833C070F6886BE /* [CP] Embed Pods Frameworks */, 174 | ); 175 | buildRules = ( 176 | ); 177 | dependencies = ( 178 | ); 179 | name = ScreenCaptureDetector_Example; 180 | productName = ScreenCaptureDetector; 181 | productReference = 607FACD01AFB9204008FA782 /* ScreenCaptureDetector_Example.app */; 182 | productType = "com.apple.product-type.application"; 183 | }; 184 | 607FACE41AFB9204008FA782 /* ScreenCaptureDetector_Tests */ = { 185 | isa = PBXNativeTarget; 186 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ScreenCaptureDetector_Tests" */; 187 | buildPhases = ( 188 | 999270ADDB74906D18238338 /* [CP] Check Pods Manifest.lock */, 189 | 607FACE11AFB9204008FA782 /* Sources */, 190 | 607FACE21AFB9204008FA782 /* Frameworks */, 191 | 607FACE31AFB9204008FA782 /* Resources */, 192 | ); 193 | buildRules = ( 194 | ); 195 | dependencies = ( 196 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 197 | ); 198 | name = ScreenCaptureDetector_Tests; 199 | productName = Tests; 200 | productReference = 607FACE51AFB9204008FA782 /* ScreenCaptureDetector_Tests.xctest */; 201 | productType = "com.apple.product-type.bundle.unit-test"; 202 | }; 203 | /* End PBXNativeTarget section */ 204 | 205 | /* Begin PBXProject section */ 206 | 607FACC81AFB9204008FA782 /* Project object */ = { 207 | isa = PBXProject; 208 | attributes = { 209 | LastSwiftUpdateCheck = 0830; 210 | LastUpgradeCheck = 1130; 211 | ORGANIZATIONNAME = CocoaPods; 212 | TargetAttributes = { 213 | 607FACCF1AFB9204008FA782 = { 214 | CreatedOnToolsVersion = 6.3.1; 215 | LastSwiftMigration = 1130; 216 | ProvisioningStyle = Automatic; 217 | }; 218 | 607FACE41AFB9204008FA782 = { 219 | CreatedOnToolsVersion = 6.3.1; 220 | LastSwiftMigration = 1130; 221 | TestTargetID = 607FACCF1AFB9204008FA782; 222 | }; 223 | }; 224 | }; 225 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "ScreenCaptureDetector" */; 226 | compatibilityVersion = "Xcode 3.2"; 227 | developmentRegion = en; 228 | hasScannedForEncodings = 0; 229 | knownRegions = ( 230 | en, 231 | Base, 232 | ); 233 | mainGroup = 607FACC71AFB9204008FA782; 234 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 235 | projectDirPath = ""; 236 | projectRoot = ""; 237 | targets = ( 238 | 607FACCF1AFB9204008FA782 /* ScreenCaptureDetector_Example */, 239 | 607FACE41AFB9204008FA782 /* ScreenCaptureDetector_Tests */, 240 | ); 241 | }; 242 | /* End PBXProject section */ 243 | 244 | /* Begin PBXResourcesBuildPhase section */ 245 | 607FACCE1AFB9204008FA782 /* Resources */ = { 246 | isa = PBXResourcesBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 250 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 251 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | 607FACE31AFB9204008FA782 /* Resources */ = { 256 | isa = PBXResourcesBuildPhase; 257 | buildActionMask = 2147483647; 258 | files = ( 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | /* End PBXResourcesBuildPhase section */ 263 | 264 | /* Begin PBXShellScriptBuildPhase section */ 265 | 163FAF589E281267971A4938 /* [CP] Check Pods Manifest.lock */ = { 266 | isa = PBXShellScriptBuildPhase; 267 | buildActionMask = 2147483647; 268 | files = ( 269 | ); 270 | inputFileListPaths = ( 271 | ); 272 | inputPaths = ( 273 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 274 | "${PODS_ROOT}/Manifest.lock", 275 | ); 276 | name = "[CP] Check Pods Manifest.lock"; 277 | outputFileListPaths = ( 278 | ); 279 | outputPaths = ( 280 | "$(DERIVED_FILE_DIR)/Pods-ScreenCaptureDetector_Example-checkManifestLockResult.txt", 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | shellPath = /bin/sh; 284 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 285 | showEnvVarsInLog = 0; 286 | }; 287 | 20A428C606833C070F6886BE /* [CP] Embed Pods Frameworks */ = { 288 | isa = PBXShellScriptBuildPhase; 289 | buildActionMask = 2147483647; 290 | files = ( 291 | ); 292 | inputPaths = ( 293 | "${PODS_ROOT}/Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example-frameworks.sh", 294 | "${BUILT_PRODUCTS_DIR}/ScreenCaptureDetector/ScreenCaptureDetector.framework", 295 | ); 296 | name = "[CP] Embed Pods Frameworks"; 297 | outputPaths = ( 298 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ScreenCaptureDetector.framework", 299 | ); 300 | runOnlyForDeploymentPostprocessing = 0; 301 | shellPath = /bin/sh; 302 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example-frameworks.sh\"\n"; 303 | showEnvVarsInLog = 0; 304 | }; 305 | 999270ADDB74906D18238338 /* [CP] Check Pods Manifest.lock */ = { 306 | isa = PBXShellScriptBuildPhase; 307 | buildActionMask = 2147483647; 308 | files = ( 309 | ); 310 | inputFileListPaths = ( 311 | ); 312 | inputPaths = ( 313 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 314 | "${PODS_ROOT}/Manifest.lock", 315 | ); 316 | name = "[CP] Check Pods Manifest.lock"; 317 | outputFileListPaths = ( 318 | ); 319 | outputPaths = ( 320 | "$(DERIVED_FILE_DIR)/Pods-ScreenCaptureDetector_Tests-checkManifestLockResult.txt", 321 | ); 322 | runOnlyForDeploymentPostprocessing = 0; 323 | shellPath = /bin/sh; 324 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 325 | showEnvVarsInLog = 0; 326 | }; 327 | /* End PBXShellScriptBuildPhase section */ 328 | 329 | /* Begin PBXSourcesBuildPhase section */ 330 | 607FACCC1AFB9204008FA782 /* Sources */ = { 331 | isa = PBXSourcesBuildPhase; 332 | buildActionMask = 2147483647; 333 | files = ( 334 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 335 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 336 | ); 337 | runOnlyForDeploymentPostprocessing = 0; 338 | }; 339 | 607FACE11AFB9204008FA782 /* Sources */ = { 340 | isa = PBXSourcesBuildPhase; 341 | buildActionMask = 2147483647; 342 | files = ( 343 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 344 | ); 345 | runOnlyForDeploymentPostprocessing = 0; 346 | }; 347 | /* End PBXSourcesBuildPhase section */ 348 | 349 | /* Begin PBXTargetDependency section */ 350 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 351 | isa = PBXTargetDependency; 352 | target = 607FACCF1AFB9204008FA782 /* ScreenCaptureDetector_Example */; 353 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 354 | }; 355 | /* End PBXTargetDependency section */ 356 | 357 | /* Begin PBXVariantGroup section */ 358 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 359 | isa = PBXVariantGroup; 360 | children = ( 361 | 607FACDA1AFB9204008FA782 /* Base */, 362 | ); 363 | name = Main.storyboard; 364 | sourceTree = ""; 365 | }; 366 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 367 | isa = PBXVariantGroup; 368 | children = ( 369 | 607FACDF1AFB9204008FA782 /* Base */, 370 | ); 371 | name = LaunchScreen.xib; 372 | sourceTree = ""; 373 | }; 374 | /* End PBXVariantGroup section */ 375 | 376 | /* Begin XCBuildConfiguration section */ 377 | 607FACED1AFB9204008FA782 /* Debug */ = { 378 | isa = XCBuildConfiguration; 379 | buildSettings = { 380 | ALWAYS_SEARCH_USER_PATHS = NO; 381 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 382 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 383 | CLANG_CXX_LIBRARY = "libc++"; 384 | CLANG_ENABLE_MODULES = YES; 385 | CLANG_ENABLE_OBJC_ARC = YES; 386 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 387 | CLANG_WARN_BOOL_CONVERSION = YES; 388 | CLANG_WARN_COMMA = YES; 389 | CLANG_WARN_CONSTANT_CONVERSION = YES; 390 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 391 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 392 | CLANG_WARN_EMPTY_BODY = YES; 393 | CLANG_WARN_ENUM_CONVERSION = YES; 394 | CLANG_WARN_INFINITE_RECURSION = YES; 395 | CLANG_WARN_INT_CONVERSION = YES; 396 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 397 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 398 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 399 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 400 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 401 | CLANG_WARN_STRICT_PROTOTYPES = YES; 402 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 403 | CLANG_WARN_UNREACHABLE_CODE = YES; 404 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 405 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 406 | COPY_PHASE_STRIP = NO; 407 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 408 | ENABLE_STRICT_OBJC_MSGSEND = YES; 409 | ENABLE_TESTABILITY = YES; 410 | GCC_C_LANGUAGE_STANDARD = gnu99; 411 | GCC_DYNAMIC_NO_PIC = NO; 412 | GCC_NO_COMMON_BLOCKS = YES; 413 | GCC_OPTIMIZATION_LEVEL = 0; 414 | GCC_PREPROCESSOR_DEFINITIONS = ( 415 | "DEBUG=1", 416 | "$(inherited)", 417 | ); 418 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 419 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 420 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 421 | GCC_WARN_UNDECLARED_SELECTOR = YES; 422 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 423 | GCC_WARN_UNUSED_FUNCTION = YES; 424 | GCC_WARN_UNUSED_VARIABLE = YES; 425 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 426 | MTL_ENABLE_DEBUG_INFO = YES; 427 | ONLY_ACTIVE_ARCH = YES; 428 | SDKROOT = iphoneos; 429 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 430 | }; 431 | name = Debug; 432 | }; 433 | 607FACEE1AFB9204008FA782 /* Release */ = { 434 | isa = XCBuildConfiguration; 435 | buildSettings = { 436 | ALWAYS_SEARCH_USER_PATHS = NO; 437 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 438 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 439 | CLANG_CXX_LIBRARY = "libc++"; 440 | CLANG_ENABLE_MODULES = YES; 441 | CLANG_ENABLE_OBJC_ARC = YES; 442 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 443 | CLANG_WARN_BOOL_CONVERSION = YES; 444 | CLANG_WARN_COMMA = YES; 445 | CLANG_WARN_CONSTANT_CONVERSION = YES; 446 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 447 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 448 | CLANG_WARN_EMPTY_BODY = YES; 449 | CLANG_WARN_ENUM_CONVERSION = YES; 450 | CLANG_WARN_INFINITE_RECURSION = YES; 451 | CLANG_WARN_INT_CONVERSION = YES; 452 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 453 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 454 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 455 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 456 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 457 | CLANG_WARN_STRICT_PROTOTYPES = YES; 458 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 459 | CLANG_WARN_UNREACHABLE_CODE = YES; 460 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 461 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 462 | COPY_PHASE_STRIP = NO; 463 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 464 | ENABLE_NS_ASSERTIONS = NO; 465 | ENABLE_STRICT_OBJC_MSGSEND = YES; 466 | GCC_C_LANGUAGE_STANDARD = gnu99; 467 | GCC_NO_COMMON_BLOCKS = YES; 468 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 469 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 470 | GCC_WARN_UNDECLARED_SELECTOR = YES; 471 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 472 | GCC_WARN_UNUSED_FUNCTION = YES; 473 | GCC_WARN_UNUSED_VARIABLE = YES; 474 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 475 | MTL_ENABLE_DEBUG_INFO = NO; 476 | SDKROOT = iphoneos; 477 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 478 | VALIDATE_PRODUCT = YES; 479 | }; 480 | name = Release; 481 | }; 482 | 607FACF01AFB9204008FA782 /* Debug */ = { 483 | isa = XCBuildConfiguration; 484 | baseConfigurationReference = 1328611054A04F74FBB60CB7 /* Pods-ScreenCaptureDetector_Example.debug.xcconfig */; 485 | buildSettings = { 486 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 487 | CODE_SIGN_IDENTITY = "Apple Development"; 488 | CODE_SIGN_STYLE = Automatic; 489 | DEVELOPMENT_TEAM = ""; 490 | INFOPLIST_FILE = ScreenCaptureDetector/Info.plist; 491 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 492 | MODULE_NAME = ExampleApp; 493 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.ScreenCaptureDetector-Example"; 494 | PRODUCT_NAME = "$(TARGET_NAME)"; 495 | PROVISIONING_PROFILE_SPECIFIER = ""; 496 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 497 | SWIFT_VERSION = 5.0; 498 | TARGETED_DEVICE_FAMILY = "1,2"; 499 | }; 500 | name = Debug; 501 | }; 502 | 607FACF11AFB9204008FA782 /* Release */ = { 503 | isa = XCBuildConfiguration; 504 | baseConfigurationReference = C6ACF696307E84E3FAF37FA4 /* Pods-ScreenCaptureDetector_Example.release.xcconfig */; 505 | buildSettings = { 506 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 507 | CODE_SIGN_IDENTITY = "Apple Development"; 508 | CODE_SIGN_STYLE = Automatic; 509 | DEVELOPMENT_TEAM = ""; 510 | INFOPLIST_FILE = ScreenCaptureDetector/Info.plist; 511 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 512 | MODULE_NAME = ExampleApp; 513 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.ScreenCaptureDetector-Example"; 514 | PRODUCT_NAME = "$(TARGET_NAME)"; 515 | PROVISIONING_PROFILE_SPECIFIER = ""; 516 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 517 | SWIFT_VERSION = 5.0; 518 | TARGETED_DEVICE_FAMILY = "1,2"; 519 | }; 520 | name = Release; 521 | }; 522 | 607FACF31AFB9204008FA782 /* Debug */ = { 523 | isa = XCBuildConfiguration; 524 | baseConfigurationReference = 3869873D3215F78457D8C71E /* Pods-ScreenCaptureDetector_Tests.debug.xcconfig */; 525 | buildSettings = { 526 | FRAMEWORK_SEARCH_PATHS = ( 527 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 528 | "$(inherited)", 529 | ); 530 | GCC_PREPROCESSOR_DEFINITIONS = ( 531 | "DEBUG=1", 532 | "$(inherited)", 533 | ); 534 | INFOPLIST_FILE = Tests/Info.plist; 535 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 536 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 537 | PRODUCT_NAME = "$(TARGET_NAME)"; 538 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 539 | SWIFT_VERSION = 5.0; 540 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ScreenCaptureDetector_Example.app/ScreenCaptureDetector_Example"; 541 | }; 542 | name = Debug; 543 | }; 544 | 607FACF41AFB9204008FA782 /* Release */ = { 545 | isa = XCBuildConfiguration; 546 | baseConfigurationReference = 59171F8A606EF129A216C4A2 /* Pods-ScreenCaptureDetector_Tests.release.xcconfig */; 547 | buildSettings = { 548 | FRAMEWORK_SEARCH_PATHS = ( 549 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 550 | "$(inherited)", 551 | ); 552 | INFOPLIST_FILE = Tests/Info.plist; 553 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 554 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 555 | PRODUCT_NAME = "$(TARGET_NAME)"; 556 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 557 | SWIFT_VERSION = 5.0; 558 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ScreenCaptureDetector_Example.app/ScreenCaptureDetector_Example"; 559 | }; 560 | name = Release; 561 | }; 562 | /* End XCBuildConfiguration section */ 563 | 564 | /* Begin XCConfigurationList section */ 565 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "ScreenCaptureDetector" */ = { 566 | isa = XCConfigurationList; 567 | buildConfigurations = ( 568 | 607FACED1AFB9204008FA782 /* Debug */, 569 | 607FACEE1AFB9204008FA782 /* Release */, 570 | ); 571 | defaultConfigurationIsVisible = 0; 572 | defaultConfigurationName = Release; 573 | }; 574 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ScreenCaptureDetector_Example" */ = { 575 | isa = XCConfigurationList; 576 | buildConfigurations = ( 577 | 607FACF01AFB9204008FA782 /* Debug */, 578 | 607FACF11AFB9204008FA782 /* Release */, 579 | ); 580 | defaultConfigurationIsVisible = 0; 581 | defaultConfigurationName = Release; 582 | }; 583 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ScreenCaptureDetector_Tests" */ = { 584 | isa = XCConfigurationList; 585 | buildConfigurations = ( 586 | 607FACF31AFB9204008FA782 /* Debug */, 587 | 607FACF41AFB9204008FA782 /* Release */, 588 | ); 589 | defaultConfigurationIsVisible = 0; 590 | defaultConfigurationName = Release; 591 | }; 592 | /* End XCConfigurationList section */ 593 | }; 594 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 595 | } 596 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 057CE8483031A13D034B5A2B1DA138BC /* Pods-ScreenCaptureDetector_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 604F0FD0913D8EC917885E4336966C0F /* Pods-ScreenCaptureDetector_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 11576C6C25A50F8D3837BA269B8E03CD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 12 | 25342513FC9714C2427772D1A64A5F64 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 13 | 3C7F6CE1B32AFC6CC0CFDE6470095B3D /* Pods-ScreenCaptureDetector_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 971D92F51401221E46446DAD26AAD373 /* Pods-ScreenCaptureDetector_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 429504B0A641B95EE17604ACFDA6806B /* Pods-ScreenCaptureDetector_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC8A64AA30AA8483E457CA8DC9E5D464 /* Pods-ScreenCaptureDetector_Example-dummy.m */; }; 15 | 452EA549C9A758C56166859B9A7278D2 /* ScreenCaptureDetector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE599752F97C999F64EEEFF42599C448 /* ScreenCaptureDetector-dummy.m */; }; 16 | 84880DE924546F4C00F44AA5 /* ScreenCaptureRecordingDetector.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84880DE524546F4C00F44AA5 /* ScreenCaptureRecordingDetector.swift */; }; 17 | 84880DEA24546F4C00F44AA5 /* ScreenCaptureDelegateDefaultImpl.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84880DE624546F4C00F44AA5 /* ScreenCaptureDelegateDefaultImpl.swift */; }; 18 | 84880DEB24546F4C00F44AA5 /* NotificationName+Extension .swift in Sources */ = {isa = PBXBuildFile; fileRef = 84880DE724546F4C00F44AA5 /* NotificationName+Extension .swift */; }; 19 | 84880DEC24546F4C00F44AA5 /* ScreenCaptureDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84880DE824546F4C00F44AA5 /* ScreenCaptureDelegate.swift */; }; 20 | 98FC059D2F6A2DCE6A68B6C760329A35 /* Pods-ScreenCaptureDetector_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40581CDC01C745532E0C24FE36467C27 /* Pods-ScreenCaptureDetector_Tests-dummy.m */; }; 21 | D5EE4D5F5F3CE610F28610A233F96940 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 22 | EE1D5349CD6BD7844EE45F9D9692246B /* ScreenCaptureDetector-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4DAF4E77D2A4E57F211B3C85A576A2 /* ScreenCaptureDetector-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 23 | /* End PBXBuildFile section */ 24 | 25 | /* Begin PBXContainerItemProxy section */ 26 | BF343FF1C95EC4650126131206F359A0 /* PBXContainerItemProxy */ = { 27 | isa = PBXContainerItemProxy; 28 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 29 | proxyType = 1; 30 | remoteGlobalIDString = F064115CC9D8A6DE30628B36FA62E42F; 31 | remoteInfo = "Pods-ScreenCaptureDetector_Example"; 32 | }; 33 | EE9B7D3D7936A347653BE6C0FF7D4271 /* PBXContainerItemProxy */ = { 34 | isa = PBXContainerItemProxy; 35 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 36 | proxyType = 1; 37 | remoteGlobalIDString = BA4C5C59D0B2E73C2767E8753C269401; 38 | remoteInfo = ScreenCaptureDetector; 39 | }; 40 | /* End PBXContainerItemProxy section */ 41 | 42 | /* Begin PBXFileReference section */ 43 | 09ABE6D4D771735AE937140063072180 /* Pods-ScreenCaptureDetector_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ScreenCaptureDetector_Tests-acknowledgements.plist"; sourceTree = ""; }; 44 | 0DD2B5481B01B8B81F7A14809223C55C /* Pods-ScreenCaptureDetector_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ScreenCaptureDetector_Tests-Info.plist"; sourceTree = ""; }; 45 | 0F2617D87961BB459B6A66D4ECE77B70 /* Pods_ScreenCaptureDetector_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScreenCaptureDetector_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | 1440DCD007F271A19587E8EC0D9974BC /* Pods-ScreenCaptureDetector_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ScreenCaptureDetector_Tests.modulemap"; sourceTree = ""; }; 47 | 1C59CE54F59BC768F009D5AB5A5D6A40 /* ScreenCaptureDetector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = ScreenCaptureDetector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 48 | 205DE81C628B525B5B7C49B501BAED97 /* Pods-ScreenCaptureDetector_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ScreenCaptureDetector_Example-frameworks.sh"; sourceTree = ""; }; 49 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 50 | 3B574CD931BB3DBA1DBBD35C82717DE1 /* Pods-ScreenCaptureDetector_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ScreenCaptureDetector_Example-acknowledgements.markdown"; sourceTree = ""; }; 51 | 3BE41448D191DAD58C01247A94637E35 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 52 | 40581CDC01C745532E0C24FE36467C27 /* Pods-ScreenCaptureDetector_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ScreenCaptureDetector_Tests-dummy.m"; sourceTree = ""; }; 53 | 4B94C3804C274D54D1CA44F31C9D4544 /* ScreenCaptureDetector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ScreenCaptureDetector-prefix.pch"; sourceTree = ""; }; 54 | 4EDE441B77440962016051EDA87B5F7B /* Pods-ScreenCaptureDetector_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ScreenCaptureDetector_Example-acknowledgements.plist"; sourceTree = ""; }; 55 | 5EE89A85BDA39154E20E965D04617DA8 /* Pods-ScreenCaptureDetector_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ScreenCaptureDetector_Tests-acknowledgements.markdown"; sourceTree = ""; }; 56 | 604F0FD0913D8EC917885E4336966C0F /* Pods-ScreenCaptureDetector_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ScreenCaptureDetector_Tests-umbrella.h"; sourceTree = ""; }; 57 | 7BA648119C85DB2159C8E48B37F288F2 /* Pods-ScreenCaptureDetector_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ScreenCaptureDetector_Example.release.xcconfig"; sourceTree = ""; }; 58 | 802904DB3B713C135511BF44C9A04FD4 /* Pods-ScreenCaptureDetector_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ScreenCaptureDetector_Tests.debug.xcconfig"; sourceTree = ""; }; 59 | 84880DE524546F4C00F44AA5 /* ScreenCaptureRecordingDetector.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScreenCaptureRecordingDetector.swift; sourceTree = ""; }; 60 | 84880DE624546F4C00F44AA5 /* ScreenCaptureDelegateDefaultImpl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScreenCaptureDelegateDefaultImpl.swift; sourceTree = ""; }; 61 | 84880DE724546F4C00F44AA5 /* NotificationName+Extension .swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NotificationName+Extension .swift"; sourceTree = ""; }; 62 | 84880DE824546F4C00F44AA5 /* ScreenCaptureDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScreenCaptureDelegate.swift; sourceTree = ""; }; 63 | 85CA04028D6C59077129AB6899D679C9 /* Pods_ScreenCaptureDetector_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScreenCaptureDetector_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 64 | 86710DF0644B0590B5A5890468DAC364 /* ScreenCaptureDetector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ScreenCaptureDetector.debug.xcconfig; sourceTree = ""; }; 65 | 8D1B6418167F6C4250FF9D2A0BC6AF59 /* ScreenCaptureDetector-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ScreenCaptureDetector-Info.plist"; sourceTree = ""; }; 66 | 9429756B979BE67039A6B5C8F9316850 /* Pods-ScreenCaptureDetector_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ScreenCaptureDetector_Tests.release.xcconfig"; sourceTree = ""; }; 67 | 952EEC17772764C7865647CC4C36C62F /* Pods-ScreenCaptureDetector_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ScreenCaptureDetector_Example.debug.xcconfig"; sourceTree = ""; }; 68 | 971D92F51401221E46446DAD26AAD373 /* Pods-ScreenCaptureDetector_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ScreenCaptureDetector_Example-umbrella.h"; sourceTree = ""; }; 69 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 70 | 9F4BB72DDDBE048277CBB11675C215D4 /* Pods-ScreenCaptureDetector_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ScreenCaptureDetector_Example-Info.plist"; sourceTree = ""; }; 71 | A24D43DBE68D52AAEF8758F6B21D2087 /* ScreenCaptureDetector.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ScreenCaptureDetector.modulemap; sourceTree = ""; }; 72 | AB486E4E11D0E6898A6DD9970E54217C /* ScreenCaptureDetector.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ScreenCaptureDetector.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 73 | AE599752F97C999F64EEEFF42599C448 /* ScreenCaptureDetector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ScreenCaptureDetector-dummy.m"; sourceTree = ""; }; 74 | C74E2C3F3D77AD0D13B0063B8E2D56C1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 75 | E41786B493E9C7DF2F8FD9C224EDD52C /* Pods-ScreenCaptureDetector_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ScreenCaptureDetector_Example.modulemap"; sourceTree = ""; }; 76 | EB78825C34D705431C8176F575C5C53C /* ScreenCaptureDetector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ScreenCaptureDetector.release.xcconfig; sourceTree = ""; }; 77 | FA4DAF4E77D2A4E57F211B3C85A576A2 /* ScreenCaptureDetector-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ScreenCaptureDetector-umbrella.h"; sourceTree = ""; }; 78 | FC8A64AA30AA8483E457CA8DC9E5D464 /* Pods-ScreenCaptureDetector_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ScreenCaptureDetector_Example-dummy.m"; sourceTree = ""; }; 79 | /* End PBXFileReference section */ 80 | 81 | /* Begin PBXFrameworksBuildPhase section */ 82 | 882973716E437EA12D71FDD5830AA5BD /* Frameworks */ = { 83 | isa = PBXFrameworksBuildPhase; 84 | buildActionMask = 2147483647; 85 | files = ( 86 | D5EE4D5F5F3CE610F28610A233F96940 /* Foundation.framework in Frameworks */, 87 | ); 88 | runOnlyForDeploymentPostprocessing = 0; 89 | }; 90 | 99B537047E3D2D0ED6C0413147CDFD71 /* Frameworks */ = { 91 | isa = PBXFrameworksBuildPhase; 92 | buildActionMask = 2147483647; 93 | files = ( 94 | 25342513FC9714C2427772D1A64A5F64 /* Foundation.framework in Frameworks */, 95 | ); 96 | runOnlyForDeploymentPostprocessing = 0; 97 | }; 98 | DE82A77217816DD0CA1BA7E79CDBC885 /* Frameworks */ = { 99 | isa = PBXFrameworksBuildPhase; 100 | buildActionMask = 2147483647; 101 | files = ( 102 | 11576C6C25A50F8D3837BA269B8E03CD /* Foundation.framework in Frameworks */, 103 | ); 104 | runOnlyForDeploymentPostprocessing = 0; 105 | }; 106 | /* End PBXFrameworksBuildPhase section */ 107 | 108 | /* Begin PBXGroup section */ 109 | 16764ACF52DAF176F9CE9F5801A8685B /* Pods-ScreenCaptureDetector_Tests */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | 1440DCD007F271A19587E8EC0D9974BC /* Pods-ScreenCaptureDetector_Tests.modulemap */, 113 | 5EE89A85BDA39154E20E965D04617DA8 /* Pods-ScreenCaptureDetector_Tests-acknowledgements.markdown */, 114 | 09ABE6D4D771735AE937140063072180 /* Pods-ScreenCaptureDetector_Tests-acknowledgements.plist */, 115 | 40581CDC01C745532E0C24FE36467C27 /* Pods-ScreenCaptureDetector_Tests-dummy.m */, 116 | 0DD2B5481B01B8B81F7A14809223C55C /* Pods-ScreenCaptureDetector_Tests-Info.plist */, 117 | 604F0FD0913D8EC917885E4336966C0F /* Pods-ScreenCaptureDetector_Tests-umbrella.h */, 118 | 802904DB3B713C135511BF44C9A04FD4 /* Pods-ScreenCaptureDetector_Tests.debug.xcconfig */, 119 | 9429756B979BE67039A6B5C8F9316850 /* Pods-ScreenCaptureDetector_Tests.release.xcconfig */, 120 | ); 121 | name = "Pods-ScreenCaptureDetector_Tests"; 122 | path = "Target Support Files/Pods-ScreenCaptureDetector_Tests"; 123 | sourceTree = ""; 124 | }; 125 | 3260674728E54C37DF84C56A06B5B885 /* Pods-ScreenCaptureDetector_Example */ = { 126 | isa = PBXGroup; 127 | children = ( 128 | E41786B493E9C7DF2F8FD9C224EDD52C /* Pods-ScreenCaptureDetector_Example.modulemap */, 129 | 3B574CD931BB3DBA1DBBD35C82717DE1 /* Pods-ScreenCaptureDetector_Example-acknowledgements.markdown */, 130 | 4EDE441B77440962016051EDA87B5F7B /* Pods-ScreenCaptureDetector_Example-acknowledgements.plist */, 131 | FC8A64AA30AA8483E457CA8DC9E5D464 /* Pods-ScreenCaptureDetector_Example-dummy.m */, 132 | 205DE81C628B525B5B7C49B501BAED97 /* Pods-ScreenCaptureDetector_Example-frameworks.sh */, 133 | 9F4BB72DDDBE048277CBB11675C215D4 /* Pods-ScreenCaptureDetector_Example-Info.plist */, 134 | 971D92F51401221E46446DAD26AAD373 /* Pods-ScreenCaptureDetector_Example-umbrella.h */, 135 | 952EEC17772764C7865647CC4C36C62F /* Pods-ScreenCaptureDetector_Example.debug.xcconfig */, 136 | 7BA648119C85DB2159C8E48B37F288F2 /* Pods-ScreenCaptureDetector_Example.release.xcconfig */, 137 | ); 138 | name = "Pods-ScreenCaptureDetector_Example"; 139 | path = "Target Support Files/Pods-ScreenCaptureDetector_Example"; 140 | sourceTree = ""; 141 | }; 142 | 38290A6B2E2FB11E2C48793206B0A4AD /* Support Files */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | A24D43DBE68D52AAEF8758F6B21D2087 /* ScreenCaptureDetector.modulemap */, 146 | AE599752F97C999F64EEEFF42599C448 /* ScreenCaptureDetector-dummy.m */, 147 | 8D1B6418167F6C4250FF9D2A0BC6AF59 /* ScreenCaptureDetector-Info.plist */, 148 | 4B94C3804C274D54D1CA44F31C9D4544 /* ScreenCaptureDetector-prefix.pch */, 149 | FA4DAF4E77D2A4E57F211B3C85A576A2 /* ScreenCaptureDetector-umbrella.h */, 150 | 86710DF0644B0590B5A5890468DAC364 /* ScreenCaptureDetector.debug.xcconfig */, 151 | EB78825C34D705431C8176F575C5C53C /* ScreenCaptureDetector.release.xcconfig */, 152 | ); 153 | name = "Support Files"; 154 | path = "Example/Pods/Target Support Files/ScreenCaptureDetector"; 155 | sourceTree = ""; 156 | }; 157 | 412B7BE7E15DA954F9049738C5251039 /* Targets Support Files */ = { 158 | isa = PBXGroup; 159 | children = ( 160 | 3260674728E54C37DF84C56A06B5B885 /* Pods-ScreenCaptureDetector_Example */, 161 | 16764ACF52DAF176F9CE9F5801A8685B /* Pods-ScreenCaptureDetector_Tests */, 162 | ); 163 | name = "Targets Support Files"; 164 | sourceTree = ""; 165 | }; 166 | 58B765451A458678FE9405C8D115C008 /* Pod */ = { 167 | isa = PBXGroup; 168 | children = ( 169 | 3BE41448D191DAD58C01247A94637E35 /* LICENSE */, 170 | C74E2C3F3D77AD0D13B0063B8E2D56C1 /* README.md */, 171 | 1C59CE54F59BC768F009D5AB5A5D6A40 /* ScreenCaptureDetector.podspec */, 172 | ); 173 | name = Pod; 174 | sourceTree = ""; 175 | }; 176 | 66765C285B32C678C2781CD8500D0556 /* ScreenCaptureDetector */ = { 177 | isa = PBXGroup; 178 | children = ( 179 | 84E128D92452273200F5ACEF /* Source */, 180 | 58B765451A458678FE9405C8D115C008 /* Pod */, 181 | 38290A6B2E2FB11E2C48793206B0A4AD /* Support Files */, 182 | ); 183 | name = ScreenCaptureDetector; 184 | path = ../..; 185 | sourceTree = ""; 186 | }; 187 | 84E128D92452273200F5ACEF /* Source */ = { 188 | isa = PBXGroup; 189 | children = ( 190 | 84880DE724546F4C00F44AA5 /* NotificationName+Extension .swift */, 191 | 84880DE824546F4C00F44AA5 /* ScreenCaptureDelegate.swift */, 192 | 84880DE624546F4C00F44AA5 /* ScreenCaptureDelegateDefaultImpl.swift */, 193 | 84880DE524546F4C00F44AA5 /* ScreenCaptureRecordingDetector.swift */, 194 | ); 195 | path = Source; 196 | sourceTree = ""; 197 | }; 198 | A4838EB9D4DBF45586C68C1D3C8C0328 /* Products */ = { 199 | isa = PBXGroup; 200 | children = ( 201 | 0F2617D87961BB459B6A66D4ECE77B70 /* Pods_ScreenCaptureDetector_Example.framework */, 202 | 85CA04028D6C59077129AB6899D679C9 /* Pods_ScreenCaptureDetector_Tests.framework */, 203 | AB486E4E11D0E6898A6DD9970E54217C /* ScreenCaptureDetector.framework */, 204 | ); 205 | name = Products; 206 | sourceTree = ""; 207 | }; 208 | C0834CEBB1379A84116EF29F93051C60 /* iOS */ = { 209 | isa = PBXGroup; 210 | children = ( 211 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */, 212 | ); 213 | name = iOS; 214 | sourceTree = ""; 215 | }; 216 | CF1408CF629C7361332E53B88F7BD30C = { 217 | isa = PBXGroup; 218 | children = ( 219 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 220 | EF09D045474FEF9B85DE3389B960AA70 /* Development Pods */, 221 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 222 | A4838EB9D4DBF45586C68C1D3C8C0328 /* Products */, 223 | 412B7BE7E15DA954F9049738C5251039 /* Targets Support Files */, 224 | ); 225 | sourceTree = ""; 226 | }; 227 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 228 | isa = PBXGroup; 229 | children = ( 230 | C0834CEBB1379A84116EF29F93051C60 /* iOS */, 231 | ); 232 | name = Frameworks; 233 | sourceTree = ""; 234 | }; 235 | EF09D045474FEF9B85DE3389B960AA70 /* Development Pods */ = { 236 | isa = PBXGroup; 237 | children = ( 238 | 66765C285B32C678C2781CD8500D0556 /* ScreenCaptureDetector */, 239 | ); 240 | name = "Development Pods"; 241 | sourceTree = ""; 242 | }; 243 | /* End PBXGroup section */ 244 | 245 | /* Begin PBXHeadersBuildPhase section */ 246 | 47C5BD0D9FF43638A77069E809D0D700 /* Headers */ = { 247 | isa = PBXHeadersBuildPhase; 248 | buildActionMask = 2147483647; 249 | files = ( 250 | 057CE8483031A13D034B5A2B1DA138BC /* Pods-ScreenCaptureDetector_Tests-umbrella.h in Headers */, 251 | ); 252 | runOnlyForDeploymentPostprocessing = 0; 253 | }; 254 | 91FBCAE5AC00AC33F79818EF95AFAE7B /* Headers */ = { 255 | isa = PBXHeadersBuildPhase; 256 | buildActionMask = 2147483647; 257 | files = ( 258 | 3C7F6CE1B32AFC6CC0CFDE6470095B3D /* Pods-ScreenCaptureDetector_Example-umbrella.h in Headers */, 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | D6D36BA5803A326F5C57DE0DB2F669DD /* Headers */ = { 263 | isa = PBXHeadersBuildPhase; 264 | buildActionMask = 2147483647; 265 | files = ( 266 | EE1D5349CD6BD7844EE45F9D9692246B /* ScreenCaptureDetector-umbrella.h in Headers */, 267 | ); 268 | runOnlyForDeploymentPostprocessing = 0; 269 | }; 270 | /* End PBXHeadersBuildPhase section */ 271 | 272 | /* Begin PBXNativeTarget section */ 273 | 90C165A6A89789B1C3536B96D83DFC10 /* Pods-ScreenCaptureDetector_Tests */ = { 274 | isa = PBXNativeTarget; 275 | buildConfigurationList = 651AC4747E576767394974798268C097 /* Build configuration list for PBXNativeTarget "Pods-ScreenCaptureDetector_Tests" */; 276 | buildPhases = ( 277 | 47C5BD0D9FF43638A77069E809D0D700 /* Headers */, 278 | 45A01B66D09CB06293B7DB1C1AAE2A08 /* Sources */, 279 | DE82A77217816DD0CA1BA7E79CDBC885 /* Frameworks */, 280 | 6F7DCE431A78B870EE2A89ECD6A99DF0 /* Resources */, 281 | ); 282 | buildRules = ( 283 | ); 284 | dependencies = ( 285 | 3AA6AF880AE768AC3842FB242FCFF7A8 /* PBXTargetDependency */, 286 | ); 287 | name = "Pods-ScreenCaptureDetector_Tests"; 288 | productName = "Pods-ScreenCaptureDetector_Tests"; 289 | productReference = 85CA04028D6C59077129AB6899D679C9 /* Pods_ScreenCaptureDetector_Tests.framework */; 290 | productType = "com.apple.product-type.framework"; 291 | }; 292 | BA4C5C59D0B2E73C2767E8753C269401 /* ScreenCaptureDetector */ = { 293 | isa = PBXNativeTarget; 294 | buildConfigurationList = D7D863E89CB4DBF3F7B099D649E6648F /* Build configuration list for PBXNativeTarget "ScreenCaptureDetector" */; 295 | buildPhases = ( 296 | D6D36BA5803A326F5C57DE0DB2F669DD /* Headers */, 297 | 3D4ACCAA998F37579E600A4842FADC09 /* Sources */, 298 | 99B537047E3D2D0ED6C0413147CDFD71 /* Frameworks */, 299 | 9FB2F7F6928DB759497B5C5987791A74 /* Resources */, 300 | ); 301 | buildRules = ( 302 | ); 303 | dependencies = ( 304 | ); 305 | name = ScreenCaptureDetector; 306 | productName = ScreenCaptureDetector; 307 | productReference = AB486E4E11D0E6898A6DD9970E54217C /* ScreenCaptureDetector.framework */; 308 | productType = "com.apple.product-type.framework"; 309 | }; 310 | F064115CC9D8A6DE30628B36FA62E42F /* Pods-ScreenCaptureDetector_Example */ = { 311 | isa = PBXNativeTarget; 312 | buildConfigurationList = 13F9CBF7DAA4A1DA31910C2547394D52 /* Build configuration list for PBXNativeTarget "Pods-ScreenCaptureDetector_Example" */; 313 | buildPhases = ( 314 | 91FBCAE5AC00AC33F79818EF95AFAE7B /* Headers */, 315 | A52D037F9820D3971A746EF815EF0F60 /* Sources */, 316 | 882973716E437EA12D71FDD5830AA5BD /* Frameworks */, 317 | 29524C46E0C6E60691D32CA199EF7BA5 /* Resources */, 318 | ); 319 | buildRules = ( 320 | ); 321 | dependencies = ( 322 | 9BBD15726DA0BD490C6DD93C7E16EB89 /* PBXTargetDependency */, 323 | ); 324 | name = "Pods-ScreenCaptureDetector_Example"; 325 | productName = "Pods-ScreenCaptureDetector_Example"; 326 | productReference = 0F2617D87961BB459B6A66D4ECE77B70 /* Pods_ScreenCaptureDetector_Example.framework */; 327 | productType = "com.apple.product-type.framework"; 328 | }; 329 | /* End PBXNativeTarget section */ 330 | 331 | /* Begin PBXProject section */ 332 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 333 | isa = PBXProject; 334 | attributes = { 335 | LastSwiftUpdateCheck = 1100; 336 | LastUpgradeCheck = 1100; 337 | TargetAttributes = { 338 | BA4C5C59D0B2E73C2767E8753C269401 = { 339 | LastSwiftMigration = 1130; 340 | }; 341 | F064115CC9D8A6DE30628B36FA62E42F = { 342 | LastSwiftMigration = 1130; 343 | }; 344 | }; 345 | }; 346 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 347 | compatibilityVersion = "Xcode 3.2"; 348 | developmentRegion = en; 349 | hasScannedForEncodings = 0; 350 | knownRegions = ( 351 | en, 352 | Base, 353 | ); 354 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 355 | productRefGroup = A4838EB9D4DBF45586C68C1D3C8C0328 /* Products */; 356 | projectDirPath = ""; 357 | projectRoot = ""; 358 | targets = ( 359 | F064115CC9D8A6DE30628B36FA62E42F /* Pods-ScreenCaptureDetector_Example */, 360 | 90C165A6A89789B1C3536B96D83DFC10 /* Pods-ScreenCaptureDetector_Tests */, 361 | BA4C5C59D0B2E73C2767E8753C269401 /* ScreenCaptureDetector */, 362 | ); 363 | }; 364 | /* End PBXProject section */ 365 | 366 | /* Begin PBXResourcesBuildPhase section */ 367 | 29524C46E0C6E60691D32CA199EF7BA5 /* Resources */ = { 368 | isa = PBXResourcesBuildPhase; 369 | buildActionMask = 2147483647; 370 | files = ( 371 | ); 372 | runOnlyForDeploymentPostprocessing = 0; 373 | }; 374 | 6F7DCE431A78B870EE2A89ECD6A99DF0 /* Resources */ = { 375 | isa = PBXResourcesBuildPhase; 376 | buildActionMask = 2147483647; 377 | files = ( 378 | ); 379 | runOnlyForDeploymentPostprocessing = 0; 380 | }; 381 | 9FB2F7F6928DB759497B5C5987791A74 /* Resources */ = { 382 | isa = PBXResourcesBuildPhase; 383 | buildActionMask = 2147483647; 384 | files = ( 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | /* End PBXResourcesBuildPhase section */ 389 | 390 | /* Begin PBXSourcesBuildPhase section */ 391 | 3D4ACCAA998F37579E600A4842FADC09 /* Sources */ = { 392 | isa = PBXSourcesBuildPhase; 393 | buildActionMask = 2147483647; 394 | files = ( 395 | 84880DEC24546F4C00F44AA5 /* ScreenCaptureDelegate.swift in Sources */, 396 | 84880DEB24546F4C00F44AA5 /* NotificationName+Extension .swift in Sources */, 397 | 84880DE924546F4C00F44AA5 /* ScreenCaptureRecordingDetector.swift in Sources */, 398 | 84880DEA24546F4C00F44AA5 /* ScreenCaptureDelegateDefaultImpl.swift in Sources */, 399 | 452EA549C9A758C56166859B9A7278D2 /* ScreenCaptureDetector-dummy.m in Sources */, 400 | ); 401 | runOnlyForDeploymentPostprocessing = 0; 402 | }; 403 | 45A01B66D09CB06293B7DB1C1AAE2A08 /* Sources */ = { 404 | isa = PBXSourcesBuildPhase; 405 | buildActionMask = 2147483647; 406 | files = ( 407 | 98FC059D2F6A2DCE6A68B6C760329A35 /* Pods-ScreenCaptureDetector_Tests-dummy.m in Sources */, 408 | ); 409 | runOnlyForDeploymentPostprocessing = 0; 410 | }; 411 | A52D037F9820D3971A746EF815EF0F60 /* Sources */ = { 412 | isa = PBXSourcesBuildPhase; 413 | buildActionMask = 2147483647; 414 | files = ( 415 | 429504B0A641B95EE17604ACFDA6806B /* Pods-ScreenCaptureDetector_Example-dummy.m in Sources */, 416 | ); 417 | runOnlyForDeploymentPostprocessing = 0; 418 | }; 419 | /* End PBXSourcesBuildPhase section */ 420 | 421 | /* Begin PBXTargetDependency section */ 422 | 3AA6AF880AE768AC3842FB242FCFF7A8 /* PBXTargetDependency */ = { 423 | isa = PBXTargetDependency; 424 | name = "Pods-ScreenCaptureDetector_Example"; 425 | target = F064115CC9D8A6DE30628B36FA62E42F /* Pods-ScreenCaptureDetector_Example */; 426 | targetProxy = BF343FF1C95EC4650126131206F359A0 /* PBXContainerItemProxy */; 427 | }; 428 | 9BBD15726DA0BD490C6DD93C7E16EB89 /* PBXTargetDependency */ = { 429 | isa = PBXTargetDependency; 430 | name = ScreenCaptureDetector; 431 | target = BA4C5C59D0B2E73C2767E8753C269401 /* ScreenCaptureDetector */; 432 | targetProxy = EE9B7D3D7936A347653BE6C0FF7D4271 /* PBXContainerItemProxy */; 433 | }; 434 | /* End PBXTargetDependency section */ 435 | 436 | /* Begin XCBuildConfiguration section */ 437 | 0BA0C35652856212A38679ADB8258222 /* Release */ = { 438 | isa = XCBuildConfiguration; 439 | baseConfigurationReference = 7BA648119C85DB2159C8E48B37F288F2 /* Pods-ScreenCaptureDetector_Example.release.xcconfig */; 440 | buildSettings = { 441 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 442 | CLANG_ENABLE_MODULES = YES; 443 | CODE_SIGN_IDENTITY = ""; 444 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 445 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 446 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 447 | CURRENT_PROJECT_VERSION = 1; 448 | DEFINES_MODULE = YES; 449 | DYLIB_COMPATIBILITY_VERSION = 1; 450 | DYLIB_CURRENT_VERSION = 1; 451 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 452 | INFOPLIST_FILE = "Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example-Info.plist"; 453 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 454 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 455 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 456 | MACH_O_TYPE = staticlib; 457 | MODULEMAP_FILE = "Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example.modulemap"; 458 | OTHER_LDFLAGS = ""; 459 | OTHER_LIBTOOLFLAGS = ""; 460 | PODS_ROOT = "$(SRCROOT)"; 461 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 462 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 463 | SDKROOT = iphoneos; 464 | SKIP_INSTALL = YES; 465 | SWIFT_VERSION = 5.0; 466 | TARGETED_DEVICE_FAMILY = "1,2"; 467 | VALIDATE_PRODUCT = YES; 468 | VERSIONING_SYSTEM = "apple-generic"; 469 | VERSION_INFO_PREFIX = ""; 470 | }; 471 | name = Release; 472 | }; 473 | 5345F2FF8D512532287A5CA1FF0388D2 /* Debug */ = { 474 | isa = XCBuildConfiguration; 475 | baseConfigurationReference = 952EEC17772764C7865647CC4C36C62F /* Pods-ScreenCaptureDetector_Example.debug.xcconfig */; 476 | buildSettings = { 477 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 478 | CLANG_ENABLE_MODULES = YES; 479 | CODE_SIGN_IDENTITY = ""; 480 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 481 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 482 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 483 | CURRENT_PROJECT_VERSION = 1; 484 | DEFINES_MODULE = YES; 485 | DYLIB_COMPATIBILITY_VERSION = 1; 486 | DYLIB_CURRENT_VERSION = 1; 487 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 488 | INFOPLIST_FILE = "Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example-Info.plist"; 489 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 490 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 491 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 492 | MACH_O_TYPE = staticlib; 493 | MODULEMAP_FILE = "Target Support Files/Pods-ScreenCaptureDetector_Example/Pods-ScreenCaptureDetector_Example.modulemap"; 494 | OTHER_LDFLAGS = ""; 495 | OTHER_LIBTOOLFLAGS = ""; 496 | PODS_ROOT = "$(SRCROOT)"; 497 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 498 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 499 | SDKROOT = iphoneos; 500 | SKIP_INSTALL = YES; 501 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 502 | SWIFT_VERSION = 5.0; 503 | TARGETED_DEVICE_FAMILY = "1,2"; 504 | VERSIONING_SYSTEM = "apple-generic"; 505 | VERSION_INFO_PREFIX = ""; 506 | }; 507 | name = Debug; 508 | }; 509 | 7E756882648F86DA5BAB5A83E629E419 /* Debug */ = { 510 | isa = XCBuildConfiguration; 511 | baseConfigurationReference = 802904DB3B713C135511BF44C9A04FD4 /* Pods-ScreenCaptureDetector_Tests.debug.xcconfig */; 512 | buildSettings = { 513 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 514 | CODE_SIGN_IDENTITY = ""; 515 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 516 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 517 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 518 | CURRENT_PROJECT_VERSION = 1; 519 | DEFINES_MODULE = YES; 520 | DYLIB_COMPATIBILITY_VERSION = 1; 521 | DYLIB_CURRENT_VERSION = 1; 522 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 523 | INFOPLIST_FILE = "Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests-Info.plist"; 524 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 525 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 526 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 527 | MACH_O_TYPE = staticlib; 528 | MODULEMAP_FILE = "Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests.modulemap"; 529 | OTHER_LDFLAGS = ""; 530 | OTHER_LIBTOOLFLAGS = ""; 531 | PODS_ROOT = "$(SRCROOT)"; 532 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 533 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 534 | SDKROOT = iphoneos; 535 | SKIP_INSTALL = YES; 536 | TARGETED_DEVICE_FAMILY = "1,2"; 537 | VERSIONING_SYSTEM = "apple-generic"; 538 | VERSION_INFO_PREFIX = ""; 539 | }; 540 | name = Debug; 541 | }; 542 | A7E9F6A35866A1994B950346D5094AD0 /* Release */ = { 543 | isa = XCBuildConfiguration; 544 | baseConfigurationReference = EB78825C34D705431C8176F575C5C53C /* ScreenCaptureDetector.release.xcconfig */; 545 | buildSettings = { 546 | CLANG_ENABLE_MODULES = YES; 547 | CODE_SIGN_IDENTITY = ""; 548 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 549 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 550 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 551 | CURRENT_PROJECT_VERSION = 1; 552 | DEFINES_MODULE = YES; 553 | DYLIB_COMPATIBILITY_VERSION = 1; 554 | DYLIB_CURRENT_VERSION = 1; 555 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 556 | GCC_PREFIX_HEADER = "Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector-prefix.pch"; 557 | INFOPLIST_FILE = "Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector-Info.plist"; 558 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 559 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 560 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 561 | MODULEMAP_FILE = "Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector.modulemap"; 562 | PRODUCT_MODULE_NAME = ScreenCaptureDetector; 563 | PRODUCT_NAME = ScreenCaptureDetector; 564 | SDKROOT = iphoneos; 565 | SKIP_INSTALL = YES; 566 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 567 | SWIFT_VERSION = 5.0; 568 | TARGETED_DEVICE_FAMILY = "1,2"; 569 | VALIDATE_PRODUCT = YES; 570 | VERSIONING_SYSTEM = "apple-generic"; 571 | VERSION_INFO_PREFIX = ""; 572 | }; 573 | name = Release; 574 | }; 575 | B0087CB4594321EF41619F3181FE120E /* Release */ = { 576 | isa = XCBuildConfiguration; 577 | buildSettings = { 578 | ALWAYS_SEARCH_USER_PATHS = NO; 579 | CLANG_ANALYZER_NONNULL = YES; 580 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 581 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 582 | CLANG_CXX_LIBRARY = "libc++"; 583 | CLANG_ENABLE_MODULES = YES; 584 | CLANG_ENABLE_OBJC_ARC = YES; 585 | CLANG_ENABLE_OBJC_WEAK = YES; 586 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 587 | CLANG_WARN_BOOL_CONVERSION = YES; 588 | CLANG_WARN_COMMA = YES; 589 | CLANG_WARN_CONSTANT_CONVERSION = YES; 590 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 591 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 592 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 593 | CLANG_WARN_EMPTY_BODY = YES; 594 | CLANG_WARN_ENUM_CONVERSION = YES; 595 | CLANG_WARN_INFINITE_RECURSION = YES; 596 | CLANG_WARN_INT_CONVERSION = YES; 597 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 598 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 599 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 600 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 601 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 602 | CLANG_WARN_STRICT_PROTOTYPES = YES; 603 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 604 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 605 | CLANG_WARN_UNREACHABLE_CODE = YES; 606 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 607 | COPY_PHASE_STRIP = NO; 608 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 609 | ENABLE_NS_ASSERTIONS = NO; 610 | ENABLE_STRICT_OBJC_MSGSEND = YES; 611 | GCC_C_LANGUAGE_STANDARD = gnu11; 612 | GCC_NO_COMMON_BLOCKS = YES; 613 | GCC_PREPROCESSOR_DEFINITIONS = ( 614 | "POD_CONFIGURATION_RELEASE=1", 615 | "$(inherited)", 616 | ); 617 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 618 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 619 | GCC_WARN_UNDECLARED_SELECTOR = YES; 620 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 621 | GCC_WARN_UNUSED_FUNCTION = YES; 622 | GCC_WARN_UNUSED_VARIABLE = YES; 623 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 624 | MTL_ENABLE_DEBUG_INFO = NO; 625 | MTL_FAST_MATH = YES; 626 | PRODUCT_NAME = "$(TARGET_NAME)"; 627 | STRIP_INSTALLED_PRODUCT = NO; 628 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 629 | SWIFT_VERSION = 5.0; 630 | SYMROOT = "${SRCROOT}/../build"; 631 | }; 632 | name = Release; 633 | }; 634 | B48ED113DF300F33BC46AF112E394AC8 /* Debug */ = { 635 | isa = XCBuildConfiguration; 636 | baseConfigurationReference = 86710DF0644B0590B5A5890468DAC364 /* ScreenCaptureDetector.debug.xcconfig */; 637 | buildSettings = { 638 | CLANG_ENABLE_MODULES = YES; 639 | CODE_SIGN_IDENTITY = ""; 640 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 641 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 642 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 643 | CURRENT_PROJECT_VERSION = 1; 644 | DEFINES_MODULE = YES; 645 | DYLIB_COMPATIBILITY_VERSION = 1; 646 | DYLIB_CURRENT_VERSION = 1; 647 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 648 | GCC_PREFIX_HEADER = "Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector-prefix.pch"; 649 | INFOPLIST_FILE = "Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector-Info.plist"; 650 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 651 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 652 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 653 | MODULEMAP_FILE = "Target Support Files/ScreenCaptureDetector/ScreenCaptureDetector.modulemap"; 654 | PRODUCT_MODULE_NAME = ScreenCaptureDetector; 655 | PRODUCT_NAME = ScreenCaptureDetector; 656 | SDKROOT = iphoneos; 657 | SKIP_INSTALL = YES; 658 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 659 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 660 | SWIFT_VERSION = 5.0; 661 | TARGETED_DEVICE_FAMILY = "1,2"; 662 | VERSIONING_SYSTEM = "apple-generic"; 663 | VERSION_INFO_PREFIX = ""; 664 | }; 665 | name = Debug; 666 | }; 667 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */ = { 668 | isa = XCBuildConfiguration; 669 | buildSettings = { 670 | ALWAYS_SEARCH_USER_PATHS = NO; 671 | CLANG_ANALYZER_NONNULL = YES; 672 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 673 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 674 | CLANG_CXX_LIBRARY = "libc++"; 675 | CLANG_ENABLE_MODULES = YES; 676 | CLANG_ENABLE_OBJC_ARC = YES; 677 | CLANG_ENABLE_OBJC_WEAK = YES; 678 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 679 | CLANG_WARN_BOOL_CONVERSION = YES; 680 | CLANG_WARN_COMMA = YES; 681 | CLANG_WARN_CONSTANT_CONVERSION = YES; 682 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 683 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 684 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 685 | CLANG_WARN_EMPTY_BODY = YES; 686 | CLANG_WARN_ENUM_CONVERSION = YES; 687 | CLANG_WARN_INFINITE_RECURSION = YES; 688 | CLANG_WARN_INT_CONVERSION = YES; 689 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 690 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 691 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 692 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 693 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 694 | CLANG_WARN_STRICT_PROTOTYPES = YES; 695 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 696 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 697 | CLANG_WARN_UNREACHABLE_CODE = YES; 698 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 699 | COPY_PHASE_STRIP = NO; 700 | DEBUG_INFORMATION_FORMAT = dwarf; 701 | ENABLE_STRICT_OBJC_MSGSEND = YES; 702 | ENABLE_TESTABILITY = YES; 703 | GCC_C_LANGUAGE_STANDARD = gnu11; 704 | GCC_DYNAMIC_NO_PIC = NO; 705 | GCC_NO_COMMON_BLOCKS = YES; 706 | GCC_OPTIMIZATION_LEVEL = 0; 707 | GCC_PREPROCESSOR_DEFINITIONS = ( 708 | "POD_CONFIGURATION_DEBUG=1", 709 | "DEBUG=1", 710 | "$(inherited)", 711 | ); 712 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 713 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 714 | GCC_WARN_UNDECLARED_SELECTOR = YES; 715 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 716 | GCC_WARN_UNUSED_FUNCTION = YES; 717 | GCC_WARN_UNUSED_VARIABLE = YES; 718 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 719 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 720 | MTL_FAST_MATH = YES; 721 | ONLY_ACTIVE_ARCH = YES; 722 | PRODUCT_NAME = "$(TARGET_NAME)"; 723 | STRIP_INSTALLED_PRODUCT = NO; 724 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 725 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 726 | SWIFT_VERSION = 5.0; 727 | SYMROOT = "${SRCROOT}/../build"; 728 | }; 729 | name = Debug; 730 | }; 731 | BCBC2D6CDA44EA3FB732C1C26D2625A5 /* Release */ = { 732 | isa = XCBuildConfiguration; 733 | baseConfigurationReference = 9429756B979BE67039A6B5C8F9316850 /* Pods-ScreenCaptureDetector_Tests.release.xcconfig */; 734 | buildSettings = { 735 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 736 | CODE_SIGN_IDENTITY = ""; 737 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 738 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 739 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 740 | CURRENT_PROJECT_VERSION = 1; 741 | DEFINES_MODULE = YES; 742 | DYLIB_COMPATIBILITY_VERSION = 1; 743 | DYLIB_CURRENT_VERSION = 1; 744 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 745 | INFOPLIST_FILE = "Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests-Info.plist"; 746 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 747 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 748 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 749 | MACH_O_TYPE = staticlib; 750 | MODULEMAP_FILE = "Target Support Files/Pods-ScreenCaptureDetector_Tests/Pods-ScreenCaptureDetector_Tests.modulemap"; 751 | OTHER_LDFLAGS = ""; 752 | OTHER_LIBTOOLFLAGS = ""; 753 | PODS_ROOT = "$(SRCROOT)"; 754 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 755 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 756 | SDKROOT = iphoneos; 757 | SKIP_INSTALL = YES; 758 | TARGETED_DEVICE_FAMILY = "1,2"; 759 | VALIDATE_PRODUCT = YES; 760 | VERSIONING_SYSTEM = "apple-generic"; 761 | VERSION_INFO_PREFIX = ""; 762 | }; 763 | name = Release; 764 | }; 765 | /* End XCBuildConfiguration section */ 766 | 767 | /* Begin XCConfigurationList section */ 768 | 13F9CBF7DAA4A1DA31910C2547394D52 /* Build configuration list for PBXNativeTarget "Pods-ScreenCaptureDetector_Example" */ = { 769 | isa = XCConfigurationList; 770 | buildConfigurations = ( 771 | 5345F2FF8D512532287A5CA1FF0388D2 /* Debug */, 772 | 0BA0C35652856212A38679ADB8258222 /* Release */, 773 | ); 774 | defaultConfigurationIsVisible = 0; 775 | defaultConfigurationName = Release; 776 | }; 777 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 778 | isa = XCConfigurationList; 779 | buildConfigurations = ( 780 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */, 781 | B0087CB4594321EF41619F3181FE120E /* Release */, 782 | ); 783 | defaultConfigurationIsVisible = 0; 784 | defaultConfigurationName = Release; 785 | }; 786 | 651AC4747E576767394974798268C097 /* Build configuration list for PBXNativeTarget "Pods-ScreenCaptureDetector_Tests" */ = { 787 | isa = XCConfigurationList; 788 | buildConfigurations = ( 789 | 7E756882648F86DA5BAB5A83E629E419 /* Debug */, 790 | BCBC2D6CDA44EA3FB732C1C26D2625A5 /* Release */, 791 | ); 792 | defaultConfigurationIsVisible = 0; 793 | defaultConfigurationName = Release; 794 | }; 795 | D7D863E89CB4DBF3F7B099D649E6648F /* Build configuration list for PBXNativeTarget "ScreenCaptureDetector" */ = { 796 | isa = XCConfigurationList; 797 | buildConfigurations = ( 798 | B48ED113DF300F33BC46AF112E394AC8 /* Debug */, 799 | A7E9F6A35866A1994B950346D5094AD0 /* Release */, 800 | ); 801 | defaultConfigurationIsVisible = 0; 802 | defaultConfigurationName = Release; 803 | }; 804 | /* End XCConfigurationList section */ 805 | }; 806 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 807 | } 808 | --------------------------------------------------------------------------------