├── TRAlert ├── Assets │ └── .gitkeep └── Classes │ └── .gitkeep ├── _Pods.xcodeproj ├── Example ├── Pods │ ├── Target Support Files │ │ ├── TRAlert │ │ │ ├── TRAlert.modulemap │ │ │ ├── TRAlert-dummy.m │ │ │ ├── TRAlert-prefix.pch │ │ │ ├── TRAlert-umbrella.h │ │ │ ├── TRAlert.xcconfig │ │ │ └── TRAlert-Info.plist │ │ ├── Pods-TRAlert_Tests │ │ │ ├── Pods-TRAlert_Tests.modulemap │ │ │ ├── Pods-TRAlert_Tests-acknowledgements.markdown │ │ │ ├── Pods-TRAlert_Tests-dummy.m │ │ │ ├── Pods-TRAlert_Tests-umbrella.h │ │ │ ├── Pods-TRAlert_Tests.debug.xcconfig │ │ │ ├── Pods-TRAlert_Tests.release.xcconfig │ │ │ ├── Pods-TRAlert_Tests-Info.plist │ │ │ └── Pods-TRAlert_Tests-acknowledgements.plist │ │ └── Pods-TRAlert_Example │ │ │ ├── Pods-TRAlert_Example.modulemap │ │ │ ├── Pods-TRAlert_Example-dummy.m │ │ │ ├── Pods-TRAlert_Example-umbrella.h │ │ │ ├── Pods-TRAlert_Example.debug.xcconfig │ │ │ ├── Pods-TRAlert_Example.release.xcconfig │ │ │ ├── Pods-TRAlert_Example-Info.plist │ │ │ ├── Pods-TRAlert_Example-acknowledgements.markdown │ │ │ ├── Pods-TRAlert_Example-acknowledgements.plist │ │ │ └── Pods-TRAlert_Example-frameworks.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── TRAlert.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── TRAlert.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── TRAlert-Example.xcscheme │ └── project.pbxproj ├── TRAlert.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Podfile.lock ├── Tests │ ├── Info.plist │ └── Tests.swift └── TRAlert │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── ViewController.swift │ ├── Info.plist │ ├── AppDelegate.swift │ └── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── .travis.yml ├── .gitignore ├── LICENSE ├── Classes ├── TRAlert.swift ├── TRAlertViewController.swift └── TRAlert.storyboard ├── TRAlert.podspec └── README.md /TRAlert/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TRAlert/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TRAlert/TRAlert.modulemap: -------------------------------------------------------------------------------- 1 | framework module TRAlert { 2 | umbrella header "TRAlert-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TRAlert/TRAlert-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_TRAlert : NSObject 3 | @end 4 | @implementation PodsDummy_TRAlert 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'TRAlert_Example' do 4 | pod 'TRAlert', :path => '../' 5 | 6 | target 'TRAlert_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_TRAlert_Tests { 2 | umbrella header "Pods-TRAlert_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_TRAlert_Example { 2 | umbrella header "Pods-TRAlert_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_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/Pods/Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_TRAlert_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_TRAlert_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_TRAlert_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_TRAlert_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/TRAlert.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TRAlert/TRAlert-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/TRAlert.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/TRAlert.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - TRAlert (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - TRAlert (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | TRAlert: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | TRAlert: ca6ea63176d33587bca7322ac78ef850ab4ff520 13 | 14 | PODFILE CHECKSUM: 4542ba1ca355924f488aa2bf1f146ba2e79c883c 15 | 16 | COCOAPODS: 1.8.4 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - TRAlert (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - TRAlert (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | TRAlert: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | TRAlert: ca6ea63176d33587bca7322ac78ef850ab4ff520 13 | 14 | PODFILE CHECKSUM: 4542ba1ca355924f488aa2bf1f146ba2e79c883c 15 | 16 | COCOAPODS: 1.8.4 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TRAlert/TRAlert-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 TRAlertVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char TRAlertVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_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_TRAlert_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_TRAlert_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_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_TRAlert_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_TRAlert_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TRAlert/TRAlert.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/TRAlert 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 | -------------------------------------------------------------------------------- /.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/TRAlert.xcworkspace -scheme TRAlert-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TRAlert" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TRAlert/TRAlert.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "TRAlert" 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-TRAlert_Tests/Pods-TRAlert_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TRAlert" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TRAlert/TRAlert.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "TRAlert" 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/TRAlert.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TRAlert", 3 | "version": "0.1.0", 4 | "summary": "A short description of TRAlert.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/tayyab5588/TRAlert", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "tayyab5588": "t.raza5588@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/tayyab5588/TRAlert.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "TRAlert/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TRAlert" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TRAlert/TRAlert.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "TRAlert" 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-TRAlert_Example/Pods-TRAlert_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TRAlert" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TRAlert/TRAlert.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "TRAlert" 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/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 TRAlert 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 | -------------------------------------------------------------------------------- /.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 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 26 | # Carthage/Checkouts 27 | 28 | Carthage/Build 29 | 30 | # We recommend against adding the Pods directory to your .gitignore. However 31 | # you should judge for yourself, the pros and cons are mentioned at: 32 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 33 | # 34 | # Note: if you ignore the Pods directory, make sure to uncomment 35 | # `pod install` in .travis.yml 36 | # 37 | # Pods/ 38 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TRAlert/TRAlert-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.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_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-TRAlert_Example/Pods-TRAlert_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-TRAlert_Tests/Pods-TRAlert_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 | -------------------------------------------------------------------------------- /Example/TRAlert/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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020 tayyab5588 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 | -------------------------------------------------------------------------------- /Classes/TRAlert.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TRAlert.swift 3 | // TRAlert 4 | // 5 | // Created by Tayyab on 22/09/2020. 6 | // Copyright © 2020 TechMate. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | public class TRAlertConfigs { 12 | 13 | 14 | public static var buttonBGColor = UIColor.black 15 | public static var viewBGColor = UIColor.white 16 | public static var buttonTextColor = UIColor.white 17 | public static var headingFont = UIFont(name: "AmericanTypewriter-Bold", size: 18.0) 18 | public static var messageFont = UIFont(name: "AmericanTypewriter", size: 15.0) 19 | 20 | 21 | } 22 | 23 | public let Alert = TRAlert.shared 24 | 25 | 26 | public class TRAlert { 27 | 28 | static let shared = TRAlert() 29 | 30 | 31 | 32 | @discardableResult 33 | public func show(title: String, body: String, buttons: [TRAlertButton]?) -> TRAlertViewController? { 34 | guard let topViewController = UIViewController.topViewController() else { return nil } 35 | return TRAlertViewController.load(from: topViewController, title: title, message: body, buttons: buttons) 36 | } 37 | 38 | 39 | } 40 | -------------------------------------------------------------------------------- /Example/TRAlert/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // TRAlert 4 | // 5 | // Created by tayyab5588 on 10/17/2020. 6 | // Copyright (c) 2020 tayyab5588. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import TRAlert 11 | 12 | 13 | class ViewController: UIViewController { 14 | 15 | override func viewDidLoad() { 16 | super.viewDidLoad() 17 | // Do any additional setup after loading the view, typically from a nib. 18 | } 19 | 20 | override func didReceiveMemoryWarning() { 21 | super.didReceiveMemoryWarning() 22 | // Dispose of any resources that can be recreated. 23 | } 24 | 25 | @IBAction func trAlertButton(_ sender: UIButton) { 26 | 27 | let cancelButton = TRAlertButton(title: "Cancel") { [weak self] in 28 | guard let _ = self else { return} 29 | 30 | } 31 | let okButton = TRAlertButton.init(title: "Ok") { [weak self] in 32 | guard let _ = self else { return} 33 | 34 | } 35 | Alert.show(title: "TRAlert", body: "Show message text", buttons: [okButton]) 36 | 37 | return 38 | } 39 | } 40 | 41 | -------------------------------------------------------------------------------- /Example/TRAlert/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 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## TRAlert 5 | 6 | Copyright (c) 2020 tayyab5588 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 | -------------------------------------------------------------------------------- /TRAlert.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint TRAlert.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 = 'TRAlert' 11 | s.version = '0.1.0' 12 | s.summary = 'Help for show Alert in project.' 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 | s.description = <<-DESC 21 | 'This project help for show Alert on single button click. Just add pod and call function.' 22 | DESC 23 | 24 | s.homepage = 'https://github.com/tayyab5588/TRAlert' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'tayyab5588' => 't.raza5588@gmail.com' } 28 | s.source = { :git => 'https://github.com/tayyab5588/TRAlert.git', :tag => s.version.to_s } 29 | # s.social_media_url = 'https://twitter.com/' 30 | 31 | s.ios.deployment_target = '12.0' 32 | 33 | s.source_files = 'Classes/**/*.swift' 34 | 35 | s.swift_version = '5.0' 36 | s.platforms = { 37 | "ios": "12.0" 38 | } 39 | 40 | # s.resource_bundles = { 41 | # 'TRAlert' => ['TRAlert/Assets/*.png'] 42 | # } 43 | 44 | # s.public_header_files = 'Pod/Classes/**/*.h' 45 | # s.frameworks = 'UIKit', 'MapKit' 46 | # s.dependency 'AFNetworking', '~> 2.3' 47 | end 48 | -------------------------------------------------------------------------------- /Example/TRAlert/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // TRAlert 4 | // 5 | // Created by tayyab5588 on 10/17/2020. 6 | // Copyright (c) 2020 tayyab5588. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // 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. 24 | // 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. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // 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. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // 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. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // 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. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_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 tayyab5588 <t.raza5588@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 | TRAlert 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TRAlert 2 |

3 |   5 | 6 |

7 |   8 |   9 |

10 | 11 | [![CI Status](https://img.shields.io/travis/tayyab5588/TRAlert.svg?style=flat)](https://travis-ci.org/tayyab5588/TRAlert) 12 | [![Version](https://img.shields.io/cocoapods/v/TRAlert.svg?style=flat)](https://cocoapods.org/pods/TRAlert) 13 | [![License](https://img.shields.io/cocoapods/l/TRAlert.svg?style=flat)](https://cocoapods.org/pods/TRAlert) 14 | [![Platform](https://img.shields.io/cocoapods/p/TRAlert.svg?style=flat)](https://cocoapods.org/pods/TRAlert) 15 | 16 | 17 | ## Apps Using TRAlert 18 | --- 19 | - StarBerry (https://apps.apple.com/us/app/starberry-video/id1522541817) 20 | - Inventory System 21 | --- 22 | 23 | 24 | ## Change Color Of Background UIView,UIButton and UIText 25 | --- 26 | 27 | ```swift 28 | static var buttonBGColor = UIColor.black 29 | static var viewBGColor = UIColor.white 30 | static var buttonTextColor = UIColor.white 31 | 32 | ``` 33 | 34 | ## Change Font of Title and Message 35 | ```swift 36 | static var headingFont = UIFont(name: "AmericanTypewriter-Bold", size: 18.0) 37 | static var messageFont = UIFont(name: "AmericanTypewriter", size: 15.0) 38 | ``` 39 | 40 | ## Support Version 41 | --- 42 | 43 | - [x] XCode 11 support 44 | - [x] Swift 5.0 support 45 | 46 | 47 | ## Example 48 | 49 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 50 | 51 | 52 | ## Installation 53 | 54 | ### Cocoapods 55 | 56 | [CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command: 57 | 58 | ```bash 59 | $ gem install cocoapods 60 | ``` 61 | 62 | 63 | 64 | To integrate TRAlert into your Xcode project using CocoaPods, specify it in your `Podfile`: 65 | 66 | ```ruby 67 | source 'https://github.com/CocoaPods/Specs.git' 68 | platform :ios, '9.0' 69 | use_frameworks! 70 | 71 | target '' do 72 | pod 'TRAlert' 73 | end 74 | ``` 75 | 76 | Then, run the following command: 77 | 78 | ```bash 79 | $ pod install 80 | ``` 81 | 82 | ## Usage 83 | 84 | 85 | ```swift 86 | 87 | let okButton = TRAlertButton.init(title: "Ok") { [weak self] in 88 | guard let _ = self else { return} 89 | } 90 | Alert.show(title: "TRAlert", body: "Show message text", buttons: [okButton]) 91 | return 92 | 93 | 94 | ``` 95 | 96 | 97 | 98 | ## Features 99 | --- 100 | 101 | - [x] Implementation with storyboard 102 | - [x] Custome UIView, UIButton and Text Color 103 | - [x] Custome UItext Font 104 | 105 | 106 | ## Author 107 | 108 | **tayyab5588** - (https://github.com/tayyab5588) 109 | 110 | ## License 111 | 112 | TRAlert is available under the MIT license. See the LICENSE file for more info. 113 | -------------------------------------------------------------------------------- /Example/TRAlert/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Classes/TRAlertViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TRAlertViewController.swift 3 | // TRAlert 4 | // 5 | // Created by Tayyab on 21/09/2020. 6 | // Copyright © 2020 TechMate. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | public struct TRAlertButton { 12 | public var title: String! 13 | public var action: (() -> Swift.Void)? 14 | 15 | public init(title: String, action: (() -> Swift.Void)?) { 16 | self.title = title 17 | self.action = action 18 | } 19 | } 20 | 21 | open class TRAlertViewController: UIViewController { 22 | 23 | public static func load(from controller: UIViewController, title: String, message: String, buttons: [TRAlertButton]?) -> TRAlertViewController { 24 | let storyboardBundle = Bundle(for: TRAlertViewController.self) 25 | let storyboard = UIStoryboard(name: "TRAlert", bundle: storyboardBundle ) 26 | let alertVC = storyboard.instantiateViewController(withIdentifier: "TRAlertViewController") as! TRAlertViewController 27 | alertVC.alertTitle = title 28 | alertVC.alertBody = message 29 | alertVC.buttonColor = TRAlertConfigs.buttonBGColor 30 | alertVC.buttonTextColor = TRAlertConfigs.buttonTextColor 31 | alertVC.viewColor = TRAlertConfigs.viewBGColor 32 | alertVC.headingFont = TRAlertConfigs.headingFont 33 | alertVC.messageFont = TRAlertConfigs.messageFont 34 | 35 | if let alertButtons = buttons { 36 | alertVC.buttons = alertButtons 37 | } 38 | else { 39 | alertVC.buttons = [TRAlertButton(title: "OK", action: nil)] 40 | } 41 | alertVC.modalPresentationStyle = .overCurrentContext 42 | alertVC.modalTransitionStyle = .crossDissolve 43 | DispatchQueue.main.async { 44 | controller.present(alertVC, animated: true) 45 | } 46 | return alertVC 47 | } 48 | 49 | 50 | 51 | // Mark:- IBOutlet 52 | 53 | @IBOutlet var heading: UILabel! 54 | @IBOutlet var message: UILabel! 55 | @IBOutlet var button1: UIButton! 56 | @IBOutlet var button2: UIButton! 57 | @IBOutlet var parentView: UIView! 58 | @IBOutlet weak var backgroundView: UIView! 59 | 60 | 61 | open var alertTitle = String() 62 | open var alertBody = String() 63 | open var actionButtonTwoTitle = String() 64 | open var buttons = [TRAlertButton]() 65 | open var viewColor : UIColor? 66 | open var buttonColor : UIColor? 67 | open var buttonTextColor : UIColor? 68 | open var headingFont : UIFont? 69 | open var messageFont : UIFont? 70 | override open func viewDidLoad() { 71 | super.viewDidLoad() 72 | // Do any additional setup after loading the view. 73 | setupView() 74 | } 75 | 76 | private func setupView() { 77 | 78 | self.heading.text = alertTitle 79 | self.message.text = alertBody 80 | 81 | self.button1.backgroundColor = buttonColor 82 | self.button2.setTitleColor(buttonTextColor, for: .normal) 83 | self.button1.setTitleColor(buttonTextColor, for: .normal) 84 | self.parentView.backgroundColor = viewColor 85 | self.backgroundView.backgroundColor = viewColor 86 | self.heading.font = headingFont 87 | self.message.font = messageFont 88 | self.button1.titleLabel?.font = messageFont 89 | self.button2.titleLabel?.font = messageFont 90 | 91 | button1.setTitle(buttons[0].title, for: .normal) 92 | if buttons.count == 2 { 93 | button2.setTitle(buttons[1].title, for: .normal) 94 | button2.isHidden = false 95 | } 96 | else { 97 | button2.isHidden = true 98 | } 99 | } 100 | 101 | 102 | 103 | @IBAction func onClickButtonOne(_ sender: Any) { 104 | dismiss(animated: true, completion: nil) 105 | buttons[0].action?() 106 | } 107 | @IBAction func onClickButtonTwo(_ sender: Any) { 108 | dismiss(animated: true, completion: nil) 109 | buttons[1].action?() 110 | } 111 | } 112 | 113 | extension UIViewController { 114 | public class func topViewController(_ base: UIViewController? = UIApplication.shared.windows.first!.rootViewController) -> UIViewController? { 115 | 116 | if let nav = base as? UINavigationController { 117 | return topViewController(nav.visibleViewController) 118 | } 119 | if let tab = base as? UITabBarController { 120 | if let selected = tab.selectedViewController { 121 | return topViewController(selected) 122 | } 123 | } 124 | if let presented = base?.presentedViewController { 125 | return topViewController(presented) 126 | } 127 | return base 128 | } 129 | 130 | } 131 | -------------------------------------------------------------------------------- /Example/TRAlert.xcodeproj/xcshareddata/xcschemes/TRAlert-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 45 | 46 | 48 | 54 | 55 | 56 | 57 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 80 | 82 | 88 | 89 | 90 | 91 | 92 | 93 | 99 | 101 | 107 | 108 | 109 | 110 | 112 | 113 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /Example/TRAlert/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 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_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[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 50 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --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 | if [ -r "$source" ]; then 88 | # Copy the dSYM into a the targets temp dir. 89 | 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}\"" 90 | 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 | 92 | local basename 93 | basename="$(basename -s .framework.dSYM "$source")" 94 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 95 | 96 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 97 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 98 | strip_invalid_archs "$binary" 99 | fi 100 | 101 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 102 | # Move the stripped file into its final destination. 103 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 104 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 105 | else 106 | # 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. 107 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 108 | fi 109 | fi 110 | } 111 | 112 | # Copies the bcsymbolmap files of a vendored framework 113 | install_bcsymbolmap() { 114 | local bcsymbolmap_path="$1" 115 | local destination="${BUILT_PRODUCTS_DIR}" 116 | 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}"" 117 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 118 | } 119 | 120 | # Signs a framework with the provided identity 121 | code_sign_if_enabled() { 122 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 123 | # Use the current code_sign_identity 124 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 125 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 126 | 127 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 128 | code_sign_cmd="$code_sign_cmd &" 129 | fi 130 | echo "$code_sign_cmd" 131 | eval "$code_sign_cmd" 132 | fi 133 | } 134 | 135 | # Strip invalid architectures 136 | strip_invalid_archs() { 137 | binary="$1" 138 | # Get architectures for current target binary 139 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 140 | # Intersect them with the architectures we are building for 141 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 142 | # If there are no archs supported by this binary then warn the user 143 | if [[ -z "$intersected_archs" ]]; then 144 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 145 | STRIP_BINARY_RETVAL=0 146 | return 147 | fi 148 | stripped="" 149 | for arch in $binary_archs; do 150 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 151 | # Strip non-valid architectures in-place 152 | lipo -remove "$arch" -output "$binary" "$binary" 153 | stripped="$stripped $arch" 154 | fi 155 | done 156 | if [[ "$stripped" ]]; then 157 | echo "Stripped $binary of architectures:$stripped" 158 | fi 159 | STRIP_BINARY_RETVAL=1 160 | } 161 | 162 | 163 | if [[ "$CONFIGURATION" == "Debug" ]]; then 164 | install_framework "${BUILT_PRODUCTS_DIR}/TRAlert/TRAlert.framework" 165 | fi 166 | if [[ "$CONFIGURATION" == "Release" ]]; then 167 | install_framework "${BUILT_PRODUCTS_DIR}/TRAlert/TRAlert.framework" 168 | fi 169 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 170 | wait 171 | fi 172 | -------------------------------------------------------------------------------- /Classes/TRAlert.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 32 | 41 | 42 | 43 | 44 | 63 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | -------------------------------------------------------------------------------- /Example/TRAlert.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 037E4B8DB440BBE7D54601F5 /* Pods_TRAlert_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 20DED35A0D23FE935768AA26 /* Pods_TRAlert_Example.framework */; }; 11 | 2AD04D4896931D8D5D25F0EA /* Pods_TRAlert_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CED67F2C61DF1B1BD9BFEC2F /* Pods_TRAlert_Tests.framework */; }; 12 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 13 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 14 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 15 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 16 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 17 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 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 = TRAlert; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 08C88DA7C45B9D98C9FE17B4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 32 | 1DC049948360D3130B3459E9 /* Pods-TRAlert_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TRAlert_Tests.debug.xcconfig"; path = "Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_Tests.debug.xcconfig"; sourceTree = ""; }; 33 | 20DED35A0D23FE935768AA26 /* Pods_TRAlert_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TRAlert_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 34 | 3A35E222D9D6CF2630EE71DC /* Pods-TRAlert_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TRAlert_Example.release.xcconfig"; path = "Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example.release.xcconfig"; sourceTree = ""; }; 35 | 607FACD01AFB9204008FA782 /* TRAlert_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TRAlert_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 36 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 37 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 38 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 39 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 40 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 41 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 42 | 607FACE51AFB9204008FA782 /* TRAlert_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TRAlert_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 44 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 45 | 6980D7FAF3A65088B8D583E8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 46 | 6BDD5D369B86F8F4279B870E /* Pods-TRAlert_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TRAlert_Example.debug.xcconfig"; path = "Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example.debug.xcconfig"; sourceTree = ""; }; 47 | 9D8BFF484359C49A933B9A02 /* Pods-TRAlert_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TRAlert_Tests.release.xcconfig"; path = "Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_Tests.release.xcconfig"; sourceTree = ""; }; 48 | ACA861E73DA2D3D0062004E7 /* TRAlert.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = TRAlert.podspec; path = ../TRAlert.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 49 | CED67F2C61DF1B1BD9BFEC2F /* Pods_TRAlert_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TRAlert_Tests.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 | 037E4B8DB440BBE7D54601F5 /* Pods_TRAlert_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | 2AD04D4896931D8D5D25F0EA /* Pods_TRAlert_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 05689197B95CF3EFB29BAEB6 /* Frameworks */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 20DED35A0D23FE935768AA26 /* Pods_TRAlert_Example.framework */, 76 | CED67F2C61DF1B1BD9BFEC2F /* Pods_TRAlert_Tests.framework */, 77 | ); 78 | name = Frameworks; 79 | sourceTree = ""; 80 | }; 81 | 2233F32C4A7757FBF20175D4 /* Pods */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | 6BDD5D369B86F8F4279B870E /* Pods-TRAlert_Example.debug.xcconfig */, 85 | 3A35E222D9D6CF2630EE71DC /* Pods-TRAlert_Example.release.xcconfig */, 86 | 1DC049948360D3130B3459E9 /* Pods-TRAlert_Tests.debug.xcconfig */, 87 | 9D8BFF484359C49A933B9A02 /* Pods-TRAlert_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 TRAlert */, 97 | 607FACE81AFB9204008FA782 /* Tests */, 98 | 607FACD11AFB9204008FA782 /* Products */, 99 | 2233F32C4A7757FBF20175D4 /* Pods */, 100 | 05689197B95CF3EFB29BAEB6 /* Frameworks */, 101 | ); 102 | sourceTree = ""; 103 | }; 104 | 607FACD11AFB9204008FA782 /* Products */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 607FACD01AFB9204008FA782 /* TRAlert_Example.app */, 108 | 607FACE51AFB9204008FA782 /* TRAlert_Tests.xctest */, 109 | ); 110 | name = Products; 111 | sourceTree = ""; 112 | }; 113 | 607FACD21AFB9204008FA782 /* Example for TRAlert */ = { 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 TRAlert"; 124 | path = TRAlert; 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 | ACA861E73DA2D3D0062004E7 /* TRAlert.podspec */, 156 | 08C88DA7C45B9D98C9FE17B4 /* README.md */, 157 | 6980D7FAF3A65088B8D583E8 /* LICENSE */, 158 | ); 159 | name = "Podspec Metadata"; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* TRAlert_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TRAlert_Example" */; 168 | buildPhases = ( 169 | 69707F6B539324E4D4665F00 /* [CP] Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | F8FEE8ACBEFF3F8CE4784697 /* [CP] Embed Pods Frameworks */, 174 | ); 175 | buildRules = ( 176 | ); 177 | dependencies = ( 178 | ); 179 | name = TRAlert_Example; 180 | productName = TRAlert; 181 | productReference = 607FACD01AFB9204008FA782 /* TRAlert_Example.app */; 182 | productType = "com.apple.product-type.application"; 183 | }; 184 | 607FACE41AFB9204008FA782 /* TRAlert_Tests */ = { 185 | isa = PBXNativeTarget; 186 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TRAlert_Tests" */; 187 | buildPhases = ( 188 | B651C93F47D7F59BFF89DB86 /* [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 = TRAlert_Tests; 199 | productName = Tests; 200 | productReference = 607FACE51AFB9204008FA782 /* TRAlert_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 = 0830; 211 | ORGANIZATIONNAME = CocoaPods; 212 | TargetAttributes = { 213 | 607FACCF1AFB9204008FA782 = { 214 | CreatedOnToolsVersion = 6.3.1; 215 | LastSwiftMigration = 0900; 216 | }; 217 | 607FACE41AFB9204008FA782 = { 218 | CreatedOnToolsVersion = 6.3.1; 219 | LastSwiftMigration = 0900; 220 | TestTargetID = 607FACCF1AFB9204008FA782; 221 | }; 222 | }; 223 | }; 224 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "TRAlert" */; 225 | compatibilityVersion = "Xcode 3.2"; 226 | developmentRegion = English; 227 | hasScannedForEncodings = 0; 228 | knownRegions = ( 229 | English, 230 | en, 231 | Base, 232 | ); 233 | mainGroup = 607FACC71AFB9204008FA782; 234 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 235 | projectDirPath = ""; 236 | projectRoot = ""; 237 | targets = ( 238 | 607FACCF1AFB9204008FA782 /* TRAlert_Example */, 239 | 607FACE41AFB9204008FA782 /* TRAlert_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 | 69707F6B539324E4D4665F00 /* [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-TRAlert_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 | B651C93F47D7F59BFF89DB86 /* [CP] Check Pods Manifest.lock */ = { 288 | isa = PBXShellScriptBuildPhase; 289 | buildActionMask = 2147483647; 290 | files = ( 291 | ); 292 | inputFileListPaths = ( 293 | ); 294 | inputPaths = ( 295 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 296 | "${PODS_ROOT}/Manifest.lock", 297 | ); 298 | name = "[CP] Check Pods Manifest.lock"; 299 | outputFileListPaths = ( 300 | ); 301 | outputPaths = ( 302 | "$(DERIVED_FILE_DIR)/Pods-TRAlert_Tests-checkManifestLockResult.txt", 303 | ); 304 | runOnlyForDeploymentPostprocessing = 0; 305 | shellPath = /bin/sh; 306 | 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"; 307 | showEnvVarsInLog = 0; 308 | }; 309 | F8FEE8ACBEFF3F8CE4784697 /* [CP] Embed Pods Frameworks */ = { 310 | isa = PBXShellScriptBuildPhase; 311 | buildActionMask = 2147483647; 312 | files = ( 313 | ); 314 | inputPaths = ( 315 | "${PODS_ROOT}/Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example-frameworks.sh", 316 | "${BUILT_PRODUCTS_DIR}/TRAlert/TRAlert.framework", 317 | ); 318 | name = "[CP] Embed Pods Frameworks"; 319 | outputPaths = ( 320 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/TRAlert.framework", 321 | ); 322 | runOnlyForDeploymentPostprocessing = 0; 323 | shellPath = /bin/sh; 324 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example-frameworks.sh\"\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 /* TRAlert_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_CXX_LANGUAGE_STANDARD = "gnu++0x"; 382 | CLANG_CXX_LIBRARY = "libc++"; 383 | CLANG_ENABLE_MODULES = YES; 384 | CLANG_ENABLE_OBJC_ARC = YES; 385 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 386 | CLANG_WARN_BOOL_CONVERSION = YES; 387 | CLANG_WARN_COMMA = YES; 388 | CLANG_WARN_CONSTANT_CONVERSION = YES; 389 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 390 | CLANG_WARN_EMPTY_BODY = YES; 391 | CLANG_WARN_ENUM_CONVERSION = YES; 392 | CLANG_WARN_INFINITE_RECURSION = YES; 393 | CLANG_WARN_INT_CONVERSION = YES; 394 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 395 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 396 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 397 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 398 | CLANG_WARN_STRICT_PROTOTYPES = YES; 399 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 400 | CLANG_WARN_UNREACHABLE_CODE = YES; 401 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 402 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 403 | COPY_PHASE_STRIP = NO; 404 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 405 | ENABLE_STRICT_OBJC_MSGSEND = YES; 406 | ENABLE_TESTABILITY = YES; 407 | GCC_C_LANGUAGE_STANDARD = gnu99; 408 | GCC_DYNAMIC_NO_PIC = NO; 409 | GCC_NO_COMMON_BLOCKS = YES; 410 | GCC_OPTIMIZATION_LEVEL = 0; 411 | GCC_PREPROCESSOR_DEFINITIONS = ( 412 | "DEBUG=1", 413 | "$(inherited)", 414 | ); 415 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 416 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 417 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 418 | GCC_WARN_UNDECLARED_SELECTOR = YES; 419 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 420 | GCC_WARN_UNUSED_FUNCTION = YES; 421 | GCC_WARN_UNUSED_VARIABLE = YES; 422 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 423 | MTL_ENABLE_DEBUG_INFO = YES; 424 | ONLY_ACTIVE_ARCH = YES; 425 | SDKROOT = iphoneos; 426 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 427 | }; 428 | name = Debug; 429 | }; 430 | 607FACEE1AFB9204008FA782 /* Release */ = { 431 | isa = XCBuildConfiguration; 432 | buildSettings = { 433 | ALWAYS_SEARCH_USER_PATHS = NO; 434 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 435 | CLANG_CXX_LIBRARY = "libc++"; 436 | CLANG_ENABLE_MODULES = YES; 437 | CLANG_ENABLE_OBJC_ARC = YES; 438 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 439 | CLANG_WARN_BOOL_CONVERSION = YES; 440 | CLANG_WARN_COMMA = YES; 441 | CLANG_WARN_CONSTANT_CONVERSION = YES; 442 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 443 | CLANG_WARN_EMPTY_BODY = YES; 444 | CLANG_WARN_ENUM_CONVERSION = YES; 445 | CLANG_WARN_INFINITE_RECURSION = YES; 446 | CLANG_WARN_INT_CONVERSION = YES; 447 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 448 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 449 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 450 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 451 | CLANG_WARN_STRICT_PROTOTYPES = YES; 452 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 453 | CLANG_WARN_UNREACHABLE_CODE = YES; 454 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 455 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 456 | COPY_PHASE_STRIP = NO; 457 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 458 | ENABLE_NS_ASSERTIONS = NO; 459 | ENABLE_STRICT_OBJC_MSGSEND = YES; 460 | GCC_C_LANGUAGE_STANDARD = gnu99; 461 | GCC_NO_COMMON_BLOCKS = YES; 462 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 463 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 464 | GCC_WARN_UNDECLARED_SELECTOR = YES; 465 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 466 | GCC_WARN_UNUSED_FUNCTION = YES; 467 | GCC_WARN_UNUSED_VARIABLE = YES; 468 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 469 | MTL_ENABLE_DEBUG_INFO = NO; 470 | SDKROOT = iphoneos; 471 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 472 | VALIDATE_PRODUCT = YES; 473 | }; 474 | name = Release; 475 | }; 476 | 607FACF01AFB9204008FA782 /* Debug */ = { 477 | isa = XCBuildConfiguration; 478 | baseConfigurationReference = 6BDD5D369B86F8F4279B870E /* Pods-TRAlert_Example.debug.xcconfig */; 479 | buildSettings = { 480 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 481 | INFOPLIST_FILE = TRAlert/Info.plist; 482 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 483 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 484 | MODULE_NAME = ExampleApp; 485 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 486 | PRODUCT_NAME = "$(TARGET_NAME)"; 487 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 488 | SWIFT_VERSION = 5.0; 489 | }; 490 | name = Debug; 491 | }; 492 | 607FACF11AFB9204008FA782 /* Release */ = { 493 | isa = XCBuildConfiguration; 494 | baseConfigurationReference = 3A35E222D9D6CF2630EE71DC /* Pods-TRAlert_Example.release.xcconfig */; 495 | buildSettings = { 496 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 497 | INFOPLIST_FILE = TRAlert/Info.plist; 498 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 499 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 500 | MODULE_NAME = ExampleApp; 501 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 502 | PRODUCT_NAME = "$(TARGET_NAME)"; 503 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 504 | SWIFT_VERSION = 5.0; 505 | }; 506 | name = Release; 507 | }; 508 | 607FACF31AFB9204008FA782 /* Debug */ = { 509 | isa = XCBuildConfiguration; 510 | baseConfigurationReference = 1DC049948360D3130B3459E9 /* Pods-TRAlert_Tests.debug.xcconfig */; 511 | buildSettings = { 512 | FRAMEWORK_SEARCH_PATHS = ( 513 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 514 | "$(inherited)", 515 | ); 516 | GCC_PREPROCESSOR_DEFINITIONS = ( 517 | "DEBUG=1", 518 | "$(inherited)", 519 | ); 520 | INFOPLIST_FILE = Tests/Info.plist; 521 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 522 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 523 | PRODUCT_NAME = "$(TARGET_NAME)"; 524 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 525 | SWIFT_VERSION = 4.0; 526 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TRAlert_Example.app/TRAlert_Example"; 527 | }; 528 | name = Debug; 529 | }; 530 | 607FACF41AFB9204008FA782 /* Release */ = { 531 | isa = XCBuildConfiguration; 532 | baseConfigurationReference = 9D8BFF484359C49A933B9A02 /* Pods-TRAlert_Tests.release.xcconfig */; 533 | buildSettings = { 534 | FRAMEWORK_SEARCH_PATHS = ( 535 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 536 | "$(inherited)", 537 | ); 538 | INFOPLIST_FILE = Tests/Info.plist; 539 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 540 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 541 | PRODUCT_NAME = "$(TARGET_NAME)"; 542 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 543 | SWIFT_VERSION = 4.0; 544 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TRAlert_Example.app/TRAlert_Example"; 545 | }; 546 | name = Release; 547 | }; 548 | /* End XCBuildConfiguration section */ 549 | 550 | /* Begin XCConfigurationList section */ 551 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "TRAlert" */ = { 552 | isa = XCConfigurationList; 553 | buildConfigurations = ( 554 | 607FACED1AFB9204008FA782 /* Debug */, 555 | 607FACEE1AFB9204008FA782 /* Release */, 556 | ); 557 | defaultConfigurationIsVisible = 0; 558 | defaultConfigurationName = Release; 559 | }; 560 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TRAlert_Example" */ = { 561 | isa = XCConfigurationList; 562 | buildConfigurations = ( 563 | 607FACF01AFB9204008FA782 /* Debug */, 564 | 607FACF11AFB9204008FA782 /* Release */, 565 | ); 566 | defaultConfigurationIsVisible = 0; 567 | defaultConfigurationName = Release; 568 | }; 569 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TRAlert_Tests" */ = { 570 | isa = XCConfigurationList; 571 | buildConfigurations = ( 572 | 607FACF31AFB9204008FA782 /* Debug */, 573 | 607FACF41AFB9204008FA782 /* Release */, 574 | ); 575 | defaultConfigurationIsVisible = 0; 576 | defaultConfigurationName = Release; 577 | }; 578 | /* End XCConfigurationList section */ 579 | }; 580 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 581 | } 582 | -------------------------------------------------------------------------------- /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 | 03C3397D7D7CF73A2EA79A11A748EE9D /* Pods-TRAlert_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D26489A9ACF66FA151B87D7A8F94F667 /* Pods-TRAlert_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 1D5684578C0FCD01DD27363B011ED9AE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 12 | 4FE21BF5ACE60CB31FF97EA25DCCAB4C /* TRAlert-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68C9B7D0940DC0FBA63EB0ED63BB3F36 /* TRAlert-dummy.m */; }; 13 | 53A841E77D2F3B7BCCD4E71CEA94CF50 /* Pods-TRAlert_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AB6447105BAF939229930FFB2E538339 /* Pods-TRAlert_Tests-dummy.m */; }; 14 | 5BB361F36F34B0E99C86F36BC24D1AF3 /* Pods-TRAlert_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F42B33637220350074D121D6533937 /* Pods-TRAlert_Example-dummy.m */; }; 15 | 7DA9E9FC253AC5160019DDCB /* TRAlertViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DA9E9F9253AC5160019DDCB /* TRAlertViewController.swift */; }; 16 | 7DA9E9FD253AC5160019DDCB /* TRAlert.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7DA9E9FA253AC5160019DDCB /* TRAlert.storyboard */; }; 17 | 7DA9E9FE253AC5160019DDCB /* TRAlert.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DA9E9FB253AC5160019DDCB /* TRAlert.swift */; }; 18 | 93920A96A85551F845F22EAAAC8EBC92 /* TRAlert-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CF41EB4AE85897FBEAA6F67E253E6D08 /* TRAlert-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19 | A12C29313FE350547ACE572D72ED213B /* Pods-TRAlert_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D41F46F263824B7C8B422957DFF289 /* Pods-TRAlert_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 20 | E8266F8E102813D478D5202EC3A7D9A4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 21 | FA8F82B62E3C0CB7417367624B96F0E6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | 78628B4FE51BD5B6C01D27685A1332B9 /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = 8829128652BD42701F5B7161FFA8DAA3; 30 | remoteInfo = TRAlert; 31 | }; 32 | F3B6C1812DBE973B23488DC478338ADF /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = 634DF056002F1872750BD9E305FC17CD; 37 | remoteInfo = "Pods-TRAlert_Example"; 38 | }; 39 | /* End PBXContainerItemProxy section */ 40 | 41 | /* Begin PBXFileReference section */ 42 | 1552BDB47C82C2390DD742718878A61C /* TRAlert.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TRAlert.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 18FEE75C4820F90FDEE8FF3717AC0493 /* Pods-TRAlert_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TRAlert_Tests-acknowledgements.plist"; sourceTree = ""; }; 44 | 1E341303ECACEBA8F1C63BC7F5CD348A /* Pods-TRAlert_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TRAlert_Example-acknowledgements.markdown"; sourceTree = ""; }; 45 | 27461407317532233E732387BC03010F /* Pods-TRAlert_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TRAlert_Example.release.xcconfig"; sourceTree = ""; }; 46 | 29F42B33637220350074D121D6533937 /* Pods-TRAlert_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TRAlert_Example-dummy.m"; sourceTree = ""; }; 47 | 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; }; 48 | 40F43059AE733E3CFCCBA61944C8317C /* Pods-TRAlert_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-TRAlert_Example.modulemap"; sourceTree = ""; }; 49 | 43D821726391E79412939FFE0AF1B3DB /* TRAlert-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TRAlert-prefix.pch"; sourceTree = ""; }; 50 | 4528007CD266758B4D667F54564F76D9 /* Pods-TRAlert_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TRAlert_Tests-acknowledgements.markdown"; sourceTree = ""; }; 51 | 45EC1B4ED9B8DEA5755D01F6AD8C7297 /* TRAlert-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "TRAlert-Info.plist"; sourceTree = ""; }; 52 | 465C261CEE6A83863CB2331DE28F6847 /* TRAlert.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = TRAlert.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 53 | 47EC95884D551E98BA14D2A401A21E6A /* Pods-TRAlert_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-TRAlert_Tests.modulemap"; sourceTree = ""; }; 54 | 4F509401FE1B7F15AD26C1810B036049 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 55 | 58891A4B38DC7F18739F8ED86112F033 /* Pods-TRAlert_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TRAlert_Tests.release.xcconfig"; sourceTree = ""; }; 56 | 59D41F46F263824B7C8B422957DFF289 /* Pods-TRAlert_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TRAlert_Tests-umbrella.h"; sourceTree = ""; }; 57 | 5A88BB9E353AF06DCFA2491BD6F0BB80 /* Pods-TRAlert_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TRAlert_Tests.debug.xcconfig"; sourceTree = ""; }; 58 | 5F75C72F5FB6E90F00F91EB710810C05 /* TRAlert.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TRAlert.xcconfig; sourceTree = ""; }; 59 | 5FCDC438B6C2793A47FC0D7D34522FA7 /* Pods-TRAlert_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TRAlert_Example-acknowledgements.plist"; sourceTree = ""; }; 60 | 68C9B7D0940DC0FBA63EB0ED63BB3F36 /* TRAlert-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TRAlert-dummy.m"; sourceTree = ""; }; 61 | 74C055CC09AD9766365B9E49562F31FE /* Pods-TRAlert_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TRAlert_Example.debug.xcconfig"; sourceTree = ""; }; 62 | 7DA9E9F9253AC5160019DDCB /* TRAlertViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TRAlertViewController.swift; sourceTree = ""; }; 63 | 7DA9E9FA253AC5160019DDCB /* TRAlert.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = TRAlert.storyboard; sourceTree = ""; }; 64 | 7DA9E9FB253AC5160019DDCB /* TRAlert.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TRAlert.swift; sourceTree = ""; }; 65 | 7F9E8842280A675F098D7668CA409F08 /* Pods_TRAlert_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TRAlert_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | 8285ADC9D02BFCAC87B16A6F18ECBD08 /* Pods_TRAlert_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TRAlert_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 67 | 934391F8565954218C27FB4E3B2C89D8 /* Pods-TRAlert_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TRAlert_Tests-Info.plist"; sourceTree = ""; }; 68 | 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; }; 69 | A693B15BC89D10F4B68A0541217FB546 /* TRAlert.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = TRAlert.modulemap; sourceTree = ""; }; 70 | AB6447105BAF939229930FFB2E538339 /* Pods-TRAlert_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TRAlert_Tests-dummy.m"; sourceTree = ""; }; 71 | C27B9493CCB7BB517A3406DDC8B20E26 /* Pods-TRAlert_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TRAlert_Example-frameworks.sh"; sourceTree = ""; }; 72 | CF41EB4AE85897FBEAA6F67E253E6D08 /* TRAlert-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TRAlert-umbrella.h"; sourceTree = ""; }; 73 | D26489A9ACF66FA151B87D7A8F94F667 /* Pods-TRAlert_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TRAlert_Example-umbrella.h"; sourceTree = ""; }; 74 | E7F82BB56E3C6555982DF216FBFB0350 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 75 | F80BFAD3CFF2AEC13109864CDA22966F /* Pods-TRAlert_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TRAlert_Example-Info.plist"; sourceTree = ""; }; 76 | /* End PBXFileReference section */ 77 | 78 | /* Begin PBXFrameworksBuildPhase section */ 79 | 12AE600269B69DC6671EF12A5A5E1330 /* Frameworks */ = { 80 | isa = PBXFrameworksBuildPhase; 81 | buildActionMask = 2147483647; 82 | files = ( 83 | E8266F8E102813D478D5202EC3A7D9A4 /* Foundation.framework in Frameworks */, 84 | ); 85 | runOnlyForDeploymentPostprocessing = 0; 86 | }; 87 | 8AC80E43DDA1755DC03E791E28BA918D /* Frameworks */ = { 88 | isa = PBXFrameworksBuildPhase; 89 | buildActionMask = 2147483647; 90 | files = ( 91 | 1D5684578C0FCD01DD27363B011ED9AE /* Foundation.framework in Frameworks */, 92 | ); 93 | runOnlyForDeploymentPostprocessing = 0; 94 | }; 95 | F1AED9276046085A5722CD07BB149DF2 /* Frameworks */ = { 96 | isa = PBXFrameworksBuildPhase; 97 | buildActionMask = 2147483647; 98 | files = ( 99 | FA8F82B62E3C0CB7417367624B96F0E6 /* Foundation.framework in Frameworks */, 100 | ); 101 | runOnlyForDeploymentPostprocessing = 0; 102 | }; 103 | /* End PBXFrameworksBuildPhase section */ 104 | 105 | /* Begin PBXGroup section */ 106 | 09852AFAB6D207CFEAAEFCC98AC80C0B /* Development Pods */ = { 107 | isa = PBXGroup; 108 | children = ( 109 | EB9119A53349DC36A5F2031CC2023655 /* TRAlert */, 110 | ); 111 | name = "Development Pods"; 112 | sourceTree = ""; 113 | }; 114 | 120DC975700838214D4D0B9D96EA49E4 /* Support Files */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | A693B15BC89D10F4B68A0541217FB546 /* TRAlert.modulemap */, 118 | 5F75C72F5FB6E90F00F91EB710810C05 /* TRAlert.xcconfig */, 119 | 68C9B7D0940DC0FBA63EB0ED63BB3F36 /* TRAlert-dummy.m */, 120 | 45EC1B4ED9B8DEA5755D01F6AD8C7297 /* TRAlert-Info.plist */, 121 | 43D821726391E79412939FFE0AF1B3DB /* TRAlert-prefix.pch */, 122 | CF41EB4AE85897FBEAA6F67E253E6D08 /* TRAlert-umbrella.h */, 123 | ); 124 | name = "Support Files"; 125 | path = "Example/Pods/Target Support Files/TRAlert"; 126 | sourceTree = ""; 127 | }; 128 | 47F2C011B2F5D900A3EDAF4A0BDFD328 /* Pod */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | 4F509401FE1B7F15AD26C1810B036049 /* LICENSE */, 132 | E7F82BB56E3C6555982DF216FBFB0350 /* README.md */, 133 | 465C261CEE6A83863CB2331DE28F6847 /* TRAlert.podspec */, 134 | ); 135 | name = Pod; 136 | sourceTree = ""; 137 | }; 138 | 74C8F23916C7ABB170FCBFFE0988DA4F /* Pods-TRAlert_Example */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | 40F43059AE733E3CFCCBA61944C8317C /* Pods-TRAlert_Example.modulemap */, 142 | 1E341303ECACEBA8F1C63BC7F5CD348A /* Pods-TRAlert_Example-acknowledgements.markdown */, 143 | 5FCDC438B6C2793A47FC0D7D34522FA7 /* Pods-TRAlert_Example-acknowledgements.plist */, 144 | 29F42B33637220350074D121D6533937 /* Pods-TRAlert_Example-dummy.m */, 145 | C27B9493CCB7BB517A3406DDC8B20E26 /* Pods-TRAlert_Example-frameworks.sh */, 146 | F80BFAD3CFF2AEC13109864CDA22966F /* Pods-TRAlert_Example-Info.plist */, 147 | D26489A9ACF66FA151B87D7A8F94F667 /* Pods-TRAlert_Example-umbrella.h */, 148 | 74C055CC09AD9766365B9E49562F31FE /* Pods-TRAlert_Example.debug.xcconfig */, 149 | 27461407317532233E732387BC03010F /* Pods-TRAlert_Example.release.xcconfig */, 150 | ); 151 | name = "Pods-TRAlert_Example"; 152 | path = "Target Support Files/Pods-TRAlert_Example"; 153 | sourceTree = ""; 154 | }; 155 | 7DA9E9F8253AC3D30019DDCB /* Classes */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | 7DA9E9FA253AC5160019DDCB /* TRAlert.storyboard */, 159 | 7DA9E9FB253AC5160019DDCB /* TRAlert.swift */, 160 | 7DA9E9F9253AC5160019DDCB /* TRAlertViewController.swift */, 161 | ); 162 | path = Classes; 163 | sourceTree = ""; 164 | }; 165 | 8CCD6AA6651B3F54790C5F28781CE312 /* Pods-TRAlert_Tests */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | 47EC95884D551E98BA14D2A401A21E6A /* Pods-TRAlert_Tests.modulemap */, 169 | 4528007CD266758B4D667F54564F76D9 /* Pods-TRAlert_Tests-acknowledgements.markdown */, 170 | 18FEE75C4820F90FDEE8FF3717AC0493 /* Pods-TRAlert_Tests-acknowledgements.plist */, 171 | AB6447105BAF939229930FFB2E538339 /* Pods-TRAlert_Tests-dummy.m */, 172 | 934391F8565954218C27FB4E3B2C89D8 /* Pods-TRAlert_Tests-Info.plist */, 173 | 59D41F46F263824B7C8B422957DFF289 /* Pods-TRAlert_Tests-umbrella.h */, 174 | 5A88BB9E353AF06DCFA2491BD6F0BB80 /* Pods-TRAlert_Tests.debug.xcconfig */, 175 | 58891A4B38DC7F18739F8ED86112F033 /* Pods-TRAlert_Tests.release.xcconfig */, 176 | ); 177 | name = "Pods-TRAlert_Tests"; 178 | path = "Target Support Files/Pods-TRAlert_Tests"; 179 | sourceTree = ""; 180 | }; 181 | 9376B2F7233E12F7ADE78B701D3CE97B /* Products */ = { 182 | isa = PBXGroup; 183 | children = ( 184 | 8285ADC9D02BFCAC87B16A6F18ECBD08 /* Pods_TRAlert_Example.framework */, 185 | 7F9E8842280A675F098D7668CA409F08 /* Pods_TRAlert_Tests.framework */, 186 | 1552BDB47C82C2390DD742718878A61C /* TRAlert.framework */, 187 | ); 188 | name = Products; 189 | sourceTree = ""; 190 | }; 191 | 986D4AFAA84C836B755B7394A67E19B8 /* Targets Support Files */ = { 192 | isa = PBXGroup; 193 | children = ( 194 | 74C8F23916C7ABB170FCBFFE0988DA4F /* Pods-TRAlert_Example */, 195 | 8CCD6AA6651B3F54790C5F28781CE312 /* Pods-TRAlert_Tests */, 196 | ); 197 | name = "Targets Support Files"; 198 | sourceTree = ""; 199 | }; 200 | C0834CEBB1379A84116EF29F93051C60 /* iOS */ = { 201 | isa = PBXGroup; 202 | children = ( 203 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */, 204 | ); 205 | name = iOS; 206 | sourceTree = ""; 207 | }; 208 | CF1408CF629C7361332E53B88F7BD30C = { 209 | isa = PBXGroup; 210 | children = ( 211 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 212 | 09852AFAB6D207CFEAAEFCC98AC80C0B /* Development Pods */, 213 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 214 | 9376B2F7233E12F7ADE78B701D3CE97B /* Products */, 215 | 986D4AFAA84C836B755B7394A67E19B8 /* Targets Support Files */, 216 | ); 217 | sourceTree = ""; 218 | }; 219 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 220 | isa = PBXGroup; 221 | children = ( 222 | C0834CEBB1379A84116EF29F93051C60 /* iOS */, 223 | ); 224 | name = Frameworks; 225 | sourceTree = ""; 226 | }; 227 | EB9119A53349DC36A5F2031CC2023655 /* TRAlert */ = { 228 | isa = PBXGroup; 229 | children = ( 230 | 7DA9E9F8253AC3D30019DDCB /* Classes */, 231 | 47F2C011B2F5D900A3EDAF4A0BDFD328 /* Pod */, 232 | 120DC975700838214D4D0B9D96EA49E4 /* Support Files */, 233 | ); 234 | name = TRAlert; 235 | path = ../..; 236 | sourceTree = ""; 237 | }; 238 | /* End PBXGroup section */ 239 | 240 | /* Begin PBXHeadersBuildPhase section */ 241 | 3FB0A17E20C3523C4325CB92FB118B0A /* Headers */ = { 242 | isa = PBXHeadersBuildPhase; 243 | buildActionMask = 2147483647; 244 | files = ( 245 | 03C3397D7D7CF73A2EA79A11A748EE9D /* Pods-TRAlert_Example-umbrella.h in Headers */, 246 | ); 247 | runOnlyForDeploymentPostprocessing = 0; 248 | }; 249 | 527C287CD573B7E7134D833D6D8F660F /* Headers */ = { 250 | isa = PBXHeadersBuildPhase; 251 | buildActionMask = 2147483647; 252 | files = ( 253 | 93920A96A85551F845F22EAAAC8EBC92 /* TRAlert-umbrella.h in Headers */, 254 | ); 255 | runOnlyForDeploymentPostprocessing = 0; 256 | }; 257 | D306F81E206E1C321E5CBD989AACFA3F /* Headers */ = { 258 | isa = PBXHeadersBuildPhase; 259 | buildActionMask = 2147483647; 260 | files = ( 261 | A12C29313FE350547ACE572D72ED213B /* Pods-TRAlert_Tests-umbrella.h in Headers */, 262 | ); 263 | runOnlyForDeploymentPostprocessing = 0; 264 | }; 265 | /* End PBXHeadersBuildPhase section */ 266 | 267 | /* Begin PBXNativeTarget section */ 268 | 634DF056002F1872750BD9E305FC17CD /* Pods-TRAlert_Example */ = { 269 | isa = PBXNativeTarget; 270 | buildConfigurationList = 1F2EC35C839B785C2712A096664BBFF6 /* Build configuration list for PBXNativeTarget "Pods-TRAlert_Example" */; 271 | buildPhases = ( 272 | 3FB0A17E20C3523C4325CB92FB118B0A /* Headers */, 273 | A2D7ED58E3392EE48FF60DED0064D627 /* Sources */, 274 | 8AC80E43DDA1755DC03E791E28BA918D /* Frameworks */, 275 | 58D53FD73D6ADD6A7957F48BC9D626D9 /* Resources */, 276 | ); 277 | buildRules = ( 278 | ); 279 | dependencies = ( 280 | B44BC71E0573B1F93DD7D39422812F4C /* PBXTargetDependency */, 281 | ); 282 | name = "Pods-TRAlert_Example"; 283 | productName = "Pods-TRAlert_Example"; 284 | productReference = 8285ADC9D02BFCAC87B16A6F18ECBD08 /* Pods_TRAlert_Example.framework */; 285 | productType = "com.apple.product-type.framework"; 286 | }; 287 | 8829128652BD42701F5B7161FFA8DAA3 /* TRAlert */ = { 288 | isa = PBXNativeTarget; 289 | buildConfigurationList = 0C4C64466DDEFB9D7747F4E873B491CD /* Build configuration list for PBXNativeTarget "TRAlert" */; 290 | buildPhases = ( 291 | 527C287CD573B7E7134D833D6D8F660F /* Headers */, 292 | 16EAAB1F14DE1AB69B6708CD6BDBDF6B /* Sources */, 293 | 12AE600269B69DC6671EF12A5A5E1330 /* Frameworks */, 294 | 6780EE76899E2929D0737E74FAF76422 /* Resources */, 295 | ); 296 | buildRules = ( 297 | ); 298 | dependencies = ( 299 | ); 300 | name = TRAlert; 301 | productName = TRAlert; 302 | productReference = 1552BDB47C82C2390DD742718878A61C /* TRAlert.framework */; 303 | productType = "com.apple.product-type.framework"; 304 | }; 305 | 96F4877EB2E0FEAF81EE34050FDBE0F7 /* Pods-TRAlert_Tests */ = { 306 | isa = PBXNativeTarget; 307 | buildConfigurationList = 12069495A30EF3FED131268ABB9E6B1C /* Build configuration list for PBXNativeTarget "Pods-TRAlert_Tests" */; 308 | buildPhases = ( 309 | D306F81E206E1C321E5CBD989AACFA3F /* Headers */, 310 | 744631CEDDE3F951148270E7E516B0E2 /* Sources */, 311 | F1AED9276046085A5722CD07BB149DF2 /* Frameworks */, 312 | CE61BE3AAFDB019917824D7C3253C7BF /* Resources */, 313 | ); 314 | buildRules = ( 315 | ); 316 | dependencies = ( 317 | 32FBE9454644759D3409974B81DDBDB0 /* PBXTargetDependency */, 318 | ); 319 | name = "Pods-TRAlert_Tests"; 320 | productName = "Pods-TRAlert_Tests"; 321 | productReference = 7F9E8842280A675F098D7668CA409F08 /* Pods_TRAlert_Tests.framework */; 322 | productType = "com.apple.product-type.framework"; 323 | }; 324 | /* End PBXNativeTarget section */ 325 | 326 | /* Begin PBXProject section */ 327 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 328 | isa = PBXProject; 329 | attributes = { 330 | LastSwiftUpdateCheck = 1100; 331 | LastUpgradeCheck = 1100; 332 | TargetAttributes = { 333 | 8829128652BD42701F5B7161FFA8DAA3 = { 334 | LastSwiftMigration = 1170; 335 | }; 336 | }; 337 | }; 338 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 339 | compatibilityVersion = "Xcode 3.2"; 340 | developmentRegion = en; 341 | hasScannedForEncodings = 0; 342 | knownRegions = ( 343 | en, 344 | Base, 345 | ); 346 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 347 | productRefGroup = 9376B2F7233E12F7ADE78B701D3CE97B /* Products */; 348 | projectDirPath = ""; 349 | projectRoot = ""; 350 | targets = ( 351 | 634DF056002F1872750BD9E305FC17CD /* Pods-TRAlert_Example */, 352 | 96F4877EB2E0FEAF81EE34050FDBE0F7 /* Pods-TRAlert_Tests */, 353 | 8829128652BD42701F5B7161FFA8DAA3 /* TRAlert */, 354 | ); 355 | }; 356 | /* End PBXProject section */ 357 | 358 | /* Begin PBXResourcesBuildPhase section */ 359 | 58D53FD73D6ADD6A7957F48BC9D626D9 /* Resources */ = { 360 | isa = PBXResourcesBuildPhase; 361 | buildActionMask = 2147483647; 362 | files = ( 363 | ); 364 | runOnlyForDeploymentPostprocessing = 0; 365 | }; 366 | 6780EE76899E2929D0737E74FAF76422 /* Resources */ = { 367 | isa = PBXResourcesBuildPhase; 368 | buildActionMask = 2147483647; 369 | files = ( 370 | 7DA9E9FD253AC5160019DDCB /* TRAlert.storyboard in Resources */, 371 | ); 372 | runOnlyForDeploymentPostprocessing = 0; 373 | }; 374 | CE61BE3AAFDB019917824D7C3253C7BF /* Resources */ = { 375 | isa = PBXResourcesBuildPhase; 376 | buildActionMask = 2147483647; 377 | files = ( 378 | ); 379 | runOnlyForDeploymentPostprocessing = 0; 380 | }; 381 | /* End PBXResourcesBuildPhase section */ 382 | 383 | /* Begin PBXSourcesBuildPhase section */ 384 | 16EAAB1F14DE1AB69B6708CD6BDBDF6B /* Sources */ = { 385 | isa = PBXSourcesBuildPhase; 386 | buildActionMask = 2147483647; 387 | files = ( 388 | 4FE21BF5ACE60CB31FF97EA25DCCAB4C /* TRAlert-dummy.m in Sources */, 389 | 7DA9E9FE253AC5160019DDCB /* TRAlert.swift in Sources */, 390 | 7DA9E9FC253AC5160019DDCB /* TRAlertViewController.swift in Sources */, 391 | ); 392 | runOnlyForDeploymentPostprocessing = 0; 393 | }; 394 | 744631CEDDE3F951148270E7E516B0E2 /* Sources */ = { 395 | isa = PBXSourcesBuildPhase; 396 | buildActionMask = 2147483647; 397 | files = ( 398 | 53A841E77D2F3B7BCCD4E71CEA94CF50 /* Pods-TRAlert_Tests-dummy.m in Sources */, 399 | ); 400 | runOnlyForDeploymentPostprocessing = 0; 401 | }; 402 | A2D7ED58E3392EE48FF60DED0064D627 /* Sources */ = { 403 | isa = PBXSourcesBuildPhase; 404 | buildActionMask = 2147483647; 405 | files = ( 406 | 5BB361F36F34B0E99C86F36BC24D1AF3 /* Pods-TRAlert_Example-dummy.m in Sources */, 407 | ); 408 | runOnlyForDeploymentPostprocessing = 0; 409 | }; 410 | /* End PBXSourcesBuildPhase section */ 411 | 412 | /* Begin PBXTargetDependency section */ 413 | 32FBE9454644759D3409974B81DDBDB0 /* PBXTargetDependency */ = { 414 | isa = PBXTargetDependency; 415 | name = "Pods-TRAlert_Example"; 416 | target = 634DF056002F1872750BD9E305FC17CD /* Pods-TRAlert_Example */; 417 | targetProxy = F3B6C1812DBE973B23488DC478338ADF /* PBXContainerItemProxy */; 418 | }; 419 | B44BC71E0573B1F93DD7D39422812F4C /* PBXTargetDependency */ = { 420 | isa = PBXTargetDependency; 421 | name = TRAlert; 422 | target = 8829128652BD42701F5B7161FFA8DAA3 /* TRAlert */; 423 | targetProxy = 78628B4FE51BD5B6C01D27685A1332B9 /* PBXContainerItemProxy */; 424 | }; 425 | /* End PBXTargetDependency section */ 426 | 427 | /* Begin XCBuildConfiguration section */ 428 | 3DC462680B721F1569AA3F984C20550E /* Debug */ = { 429 | isa = XCBuildConfiguration; 430 | baseConfigurationReference = 74C055CC09AD9766365B9E49562F31FE /* Pods-TRAlert_Example.debug.xcconfig */; 431 | buildSettings = { 432 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 433 | CODE_SIGN_IDENTITY = ""; 434 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 435 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 436 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 437 | CURRENT_PROJECT_VERSION = 1; 438 | DEFINES_MODULE = YES; 439 | DYLIB_COMPATIBILITY_VERSION = 1; 440 | DYLIB_CURRENT_VERSION = 1; 441 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 442 | INFOPLIST_FILE = "Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example-Info.plist"; 443 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 444 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 445 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 446 | MACH_O_TYPE = staticlib; 447 | MODULEMAP_FILE = "Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example.modulemap"; 448 | OTHER_LDFLAGS = ""; 449 | OTHER_LIBTOOLFLAGS = ""; 450 | PODS_ROOT = "$(SRCROOT)"; 451 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 452 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 453 | SDKROOT = iphoneos; 454 | SKIP_INSTALL = YES; 455 | TARGETED_DEVICE_FAMILY = "1,2"; 456 | VERSIONING_SYSTEM = "apple-generic"; 457 | VERSION_INFO_PREFIX = ""; 458 | }; 459 | name = Debug; 460 | }; 461 | 87B974C91F8FE488C8EE734D496FBA4C /* Release */ = { 462 | isa = XCBuildConfiguration; 463 | baseConfigurationReference = 58891A4B38DC7F18739F8ED86112F033 /* Pods-TRAlert_Tests.release.xcconfig */; 464 | buildSettings = { 465 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 466 | CODE_SIGN_IDENTITY = ""; 467 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 468 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 469 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 470 | CURRENT_PROJECT_VERSION = 1; 471 | DEFINES_MODULE = YES; 472 | DYLIB_COMPATIBILITY_VERSION = 1; 473 | DYLIB_CURRENT_VERSION = 1; 474 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 475 | INFOPLIST_FILE = "Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_Tests-Info.plist"; 476 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 477 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 478 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 479 | MACH_O_TYPE = staticlib; 480 | MODULEMAP_FILE = "Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_Tests.modulemap"; 481 | OTHER_LDFLAGS = ""; 482 | OTHER_LIBTOOLFLAGS = ""; 483 | PODS_ROOT = "$(SRCROOT)"; 484 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 485 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 486 | SDKROOT = iphoneos; 487 | SKIP_INSTALL = YES; 488 | TARGETED_DEVICE_FAMILY = "1,2"; 489 | VALIDATE_PRODUCT = YES; 490 | VERSIONING_SYSTEM = "apple-generic"; 491 | VERSION_INFO_PREFIX = ""; 492 | }; 493 | name = Release; 494 | }; 495 | B0087CB4594321EF41619F3181FE120E /* Release */ = { 496 | isa = XCBuildConfiguration; 497 | buildSettings = { 498 | ALWAYS_SEARCH_USER_PATHS = NO; 499 | CLANG_ANALYZER_NONNULL = YES; 500 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 501 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 502 | CLANG_CXX_LIBRARY = "libc++"; 503 | CLANG_ENABLE_MODULES = YES; 504 | CLANG_ENABLE_OBJC_ARC = YES; 505 | CLANG_ENABLE_OBJC_WEAK = YES; 506 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 507 | CLANG_WARN_BOOL_CONVERSION = YES; 508 | CLANG_WARN_COMMA = YES; 509 | CLANG_WARN_CONSTANT_CONVERSION = YES; 510 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 511 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 512 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 513 | CLANG_WARN_EMPTY_BODY = YES; 514 | CLANG_WARN_ENUM_CONVERSION = YES; 515 | CLANG_WARN_INFINITE_RECURSION = YES; 516 | CLANG_WARN_INT_CONVERSION = YES; 517 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 518 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 519 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 520 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 521 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 522 | CLANG_WARN_STRICT_PROTOTYPES = YES; 523 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 524 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 525 | CLANG_WARN_UNREACHABLE_CODE = YES; 526 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 527 | COPY_PHASE_STRIP = NO; 528 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 529 | ENABLE_NS_ASSERTIONS = NO; 530 | ENABLE_STRICT_OBJC_MSGSEND = YES; 531 | GCC_C_LANGUAGE_STANDARD = gnu11; 532 | GCC_NO_COMMON_BLOCKS = YES; 533 | GCC_PREPROCESSOR_DEFINITIONS = ( 534 | "POD_CONFIGURATION_RELEASE=1", 535 | "$(inherited)", 536 | ); 537 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 538 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 539 | GCC_WARN_UNDECLARED_SELECTOR = YES; 540 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 541 | GCC_WARN_UNUSED_FUNCTION = YES; 542 | GCC_WARN_UNUSED_VARIABLE = YES; 543 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 544 | MTL_ENABLE_DEBUG_INFO = NO; 545 | MTL_FAST_MATH = YES; 546 | PRODUCT_NAME = "$(TARGET_NAME)"; 547 | STRIP_INSTALLED_PRODUCT = NO; 548 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 549 | SWIFT_VERSION = 5.0; 550 | SYMROOT = "${SRCROOT}/../build"; 551 | }; 552 | name = Release; 553 | }; 554 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */ = { 555 | isa = XCBuildConfiguration; 556 | buildSettings = { 557 | ALWAYS_SEARCH_USER_PATHS = NO; 558 | CLANG_ANALYZER_NONNULL = YES; 559 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 560 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 561 | CLANG_CXX_LIBRARY = "libc++"; 562 | CLANG_ENABLE_MODULES = YES; 563 | CLANG_ENABLE_OBJC_ARC = YES; 564 | CLANG_ENABLE_OBJC_WEAK = YES; 565 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 566 | CLANG_WARN_BOOL_CONVERSION = YES; 567 | CLANG_WARN_COMMA = YES; 568 | CLANG_WARN_CONSTANT_CONVERSION = YES; 569 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 570 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 571 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 572 | CLANG_WARN_EMPTY_BODY = YES; 573 | CLANG_WARN_ENUM_CONVERSION = YES; 574 | CLANG_WARN_INFINITE_RECURSION = YES; 575 | CLANG_WARN_INT_CONVERSION = YES; 576 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 577 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 578 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 579 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 580 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 581 | CLANG_WARN_STRICT_PROTOTYPES = YES; 582 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 583 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 584 | CLANG_WARN_UNREACHABLE_CODE = YES; 585 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 586 | COPY_PHASE_STRIP = NO; 587 | DEBUG_INFORMATION_FORMAT = dwarf; 588 | ENABLE_STRICT_OBJC_MSGSEND = YES; 589 | ENABLE_TESTABILITY = YES; 590 | GCC_C_LANGUAGE_STANDARD = gnu11; 591 | GCC_DYNAMIC_NO_PIC = NO; 592 | GCC_NO_COMMON_BLOCKS = YES; 593 | GCC_OPTIMIZATION_LEVEL = 0; 594 | GCC_PREPROCESSOR_DEFINITIONS = ( 595 | "POD_CONFIGURATION_DEBUG=1", 596 | "DEBUG=1", 597 | "$(inherited)", 598 | ); 599 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 600 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 601 | GCC_WARN_UNDECLARED_SELECTOR = YES; 602 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 603 | GCC_WARN_UNUSED_FUNCTION = YES; 604 | GCC_WARN_UNUSED_VARIABLE = YES; 605 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 606 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 607 | MTL_FAST_MATH = YES; 608 | ONLY_ACTIVE_ARCH = YES; 609 | PRODUCT_NAME = "$(TARGET_NAME)"; 610 | STRIP_INSTALLED_PRODUCT = NO; 611 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 612 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 613 | SWIFT_VERSION = 5.0; 614 | SYMROOT = "${SRCROOT}/../build"; 615 | }; 616 | name = Debug; 617 | }; 618 | C24D112BB80005695AFB08A838A54C87 /* Release */ = { 619 | isa = XCBuildConfiguration; 620 | baseConfigurationReference = 5F75C72F5FB6E90F00F91EB710810C05 /* TRAlert.xcconfig */; 621 | buildSettings = { 622 | CLANG_ENABLE_MODULES = YES; 623 | CODE_SIGN_IDENTITY = ""; 624 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 625 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 626 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 627 | CURRENT_PROJECT_VERSION = 1; 628 | DEFINES_MODULE = YES; 629 | DYLIB_COMPATIBILITY_VERSION = 1; 630 | DYLIB_CURRENT_VERSION = 1; 631 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 632 | GCC_PREFIX_HEADER = "Target Support Files/TRAlert/TRAlert-prefix.pch"; 633 | INFOPLIST_FILE = "Target Support Files/TRAlert/TRAlert-Info.plist"; 634 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 635 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 636 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 637 | MODULEMAP_FILE = "Target Support Files/TRAlert/TRAlert.modulemap"; 638 | PRODUCT_MODULE_NAME = TRAlert; 639 | PRODUCT_NAME = TRAlert; 640 | SDKROOT = iphoneos; 641 | SKIP_INSTALL = YES; 642 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 643 | SWIFT_VERSION = 4.0; 644 | TARGETED_DEVICE_FAMILY = "1,2"; 645 | VALIDATE_PRODUCT = YES; 646 | VERSIONING_SYSTEM = "apple-generic"; 647 | VERSION_INFO_PREFIX = ""; 648 | }; 649 | name = Release; 650 | }; 651 | D2D051A14400382659C7FC1D9F850465 /* Release */ = { 652 | isa = XCBuildConfiguration; 653 | baseConfigurationReference = 27461407317532233E732387BC03010F /* Pods-TRAlert_Example.release.xcconfig */; 654 | buildSettings = { 655 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 656 | CODE_SIGN_IDENTITY = ""; 657 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 658 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 659 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 660 | CURRENT_PROJECT_VERSION = 1; 661 | DEFINES_MODULE = YES; 662 | DYLIB_COMPATIBILITY_VERSION = 1; 663 | DYLIB_CURRENT_VERSION = 1; 664 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 665 | INFOPLIST_FILE = "Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example-Info.plist"; 666 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 667 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 668 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 669 | MACH_O_TYPE = staticlib; 670 | MODULEMAP_FILE = "Target Support Files/Pods-TRAlert_Example/Pods-TRAlert_Example.modulemap"; 671 | OTHER_LDFLAGS = ""; 672 | OTHER_LIBTOOLFLAGS = ""; 673 | PODS_ROOT = "$(SRCROOT)"; 674 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 675 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 676 | SDKROOT = iphoneos; 677 | SKIP_INSTALL = YES; 678 | TARGETED_DEVICE_FAMILY = "1,2"; 679 | VALIDATE_PRODUCT = YES; 680 | VERSIONING_SYSTEM = "apple-generic"; 681 | VERSION_INFO_PREFIX = ""; 682 | }; 683 | name = Release; 684 | }; 685 | E02115D2004001F1C46CE08024626746 /* Debug */ = { 686 | isa = XCBuildConfiguration; 687 | baseConfigurationReference = 5F75C72F5FB6E90F00F91EB710810C05 /* TRAlert.xcconfig */; 688 | buildSettings = { 689 | CLANG_ENABLE_MODULES = YES; 690 | CODE_SIGN_IDENTITY = ""; 691 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 692 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 693 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 694 | CURRENT_PROJECT_VERSION = 1; 695 | DEFINES_MODULE = YES; 696 | DYLIB_COMPATIBILITY_VERSION = 1; 697 | DYLIB_CURRENT_VERSION = 1; 698 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 699 | GCC_PREFIX_HEADER = "Target Support Files/TRAlert/TRAlert-prefix.pch"; 700 | INFOPLIST_FILE = "Target Support Files/TRAlert/TRAlert-Info.plist"; 701 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 702 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 703 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 704 | MODULEMAP_FILE = "Target Support Files/TRAlert/TRAlert.modulemap"; 705 | PRODUCT_MODULE_NAME = TRAlert; 706 | PRODUCT_NAME = TRAlert; 707 | SDKROOT = iphoneos; 708 | SKIP_INSTALL = YES; 709 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 710 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 711 | SWIFT_VERSION = 4.0; 712 | TARGETED_DEVICE_FAMILY = "1,2"; 713 | VERSIONING_SYSTEM = "apple-generic"; 714 | VERSION_INFO_PREFIX = ""; 715 | }; 716 | name = Debug; 717 | }; 718 | EDFBCCF89E5D9CFB57B11E39150D1E6C /* Debug */ = { 719 | isa = XCBuildConfiguration; 720 | baseConfigurationReference = 5A88BB9E353AF06DCFA2491BD6F0BB80 /* Pods-TRAlert_Tests.debug.xcconfig */; 721 | buildSettings = { 722 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 723 | CODE_SIGN_IDENTITY = ""; 724 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 725 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 726 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 727 | CURRENT_PROJECT_VERSION = 1; 728 | DEFINES_MODULE = YES; 729 | DYLIB_COMPATIBILITY_VERSION = 1; 730 | DYLIB_CURRENT_VERSION = 1; 731 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 732 | INFOPLIST_FILE = "Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_Tests-Info.plist"; 733 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 734 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 735 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 736 | MACH_O_TYPE = staticlib; 737 | MODULEMAP_FILE = "Target Support Files/Pods-TRAlert_Tests/Pods-TRAlert_Tests.modulemap"; 738 | OTHER_LDFLAGS = ""; 739 | OTHER_LIBTOOLFLAGS = ""; 740 | PODS_ROOT = "$(SRCROOT)"; 741 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 742 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 743 | SDKROOT = iphoneos; 744 | SKIP_INSTALL = YES; 745 | TARGETED_DEVICE_FAMILY = "1,2"; 746 | VERSIONING_SYSTEM = "apple-generic"; 747 | VERSION_INFO_PREFIX = ""; 748 | }; 749 | name = Debug; 750 | }; 751 | /* End XCBuildConfiguration section */ 752 | 753 | /* Begin XCConfigurationList section */ 754 | 0C4C64466DDEFB9D7747F4E873B491CD /* Build configuration list for PBXNativeTarget "TRAlert" */ = { 755 | isa = XCConfigurationList; 756 | buildConfigurations = ( 757 | E02115D2004001F1C46CE08024626746 /* Debug */, 758 | C24D112BB80005695AFB08A838A54C87 /* Release */, 759 | ); 760 | defaultConfigurationIsVisible = 0; 761 | defaultConfigurationName = Release; 762 | }; 763 | 12069495A30EF3FED131268ABB9E6B1C /* Build configuration list for PBXNativeTarget "Pods-TRAlert_Tests" */ = { 764 | isa = XCConfigurationList; 765 | buildConfigurations = ( 766 | EDFBCCF89E5D9CFB57B11E39150D1E6C /* Debug */, 767 | 87B974C91F8FE488C8EE734D496FBA4C /* Release */, 768 | ); 769 | defaultConfigurationIsVisible = 0; 770 | defaultConfigurationName = Release; 771 | }; 772 | 1F2EC35C839B785C2712A096664BBFF6 /* Build configuration list for PBXNativeTarget "Pods-TRAlert_Example" */ = { 773 | isa = XCConfigurationList; 774 | buildConfigurations = ( 775 | 3DC462680B721F1569AA3F984C20550E /* Debug */, 776 | D2D051A14400382659C7FC1D9F850465 /* Release */, 777 | ); 778 | defaultConfigurationIsVisible = 0; 779 | defaultConfigurationName = Release; 780 | }; 781 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 782 | isa = XCConfigurationList; 783 | buildConfigurations = ( 784 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */, 785 | B0087CB4594321EF41619F3181FE120E /* Release */, 786 | ); 787 | defaultConfigurationIsVisible = 0; 788 | defaultConfigurationName = Release; 789 | }; 790 | /* End XCConfigurationList section */ 791 | }; 792 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 793 | } 794 | --------------------------------------------------------------------------------