├── .gitignore ├── GHWAppLaunchManager.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── GHWAppLaunchManager.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── GHWAppLaunchManager ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── GHWModuleA.h ├── GHWModuleA.m ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Local Podspecs │ ├── GHWAttributeLib.podspec.json │ └── GHWPodDemo.podspec.json ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── GHWAttributeLib │ ├── GHWAttributeLib-Info.plist │ ├── GHWAttributeLib-dummy.m │ ├── GHWAttributeLib-prefix.pch │ ├── GHWAttributeLib-umbrella.h │ ├── GHWAttributeLib.modulemap │ └── GHWAttributeLib.xcconfig │ ├── GHWPodDemo │ ├── GHWPodDemo-Info.plist │ ├── GHWPodDemo-dummy.m │ ├── GHWPodDemo-prefix.pch │ ├── GHWPodDemo-umbrella.h │ ├── GHWPodDemo.modulemap │ └── GHWPodDemo.xcconfig │ ├── Masonry │ ├── Masonry-Info.plist │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ ├── Masonry-umbrella.h │ ├── Masonry.modulemap │ └── Masonry.xcconfig │ └── Pods-GHWAppLaunchManager │ ├── Pods-GHWAppLaunchManager-Info.plist │ ├── Pods-GHWAppLaunchManager-acknowledgements.markdown │ ├── Pods-GHWAppLaunchManager-acknowledgements.plist │ ├── Pods-GHWAppLaunchManager-dummy.m │ ├── Pods-GHWAppLaunchManager-frameworks-Debug-input-files.xcfilelist │ ├── Pods-GHWAppLaunchManager-frameworks-Debug-output-files.xcfilelist │ ├── Pods-GHWAppLaunchManager-frameworks-Release-input-files.xcfilelist │ ├── Pods-GHWAppLaunchManager-frameworks-Release-output-files.xcfilelist │ ├── Pods-GHWAppLaunchManager-frameworks.sh │ ├── Pods-GHWAppLaunchManager-umbrella.h │ ├── Pods-GHWAppLaunchManager.debug.xcconfig │ ├── Pods-GHWAppLaunchManager.modulemap │ └── Pods-GHWAppLaunchManager.release.xcconfig ├── README.md ├── localPods ├── GHWAttributeLib │ ├── GHWAttributeLib.podspec │ └── GHWAttributeLib │ │ ├── Assets │ │ └── .gitkeep │ │ └── Classes │ │ ├── .gitkeep │ │ ├── GHWModuleB.h │ │ └── GHWModuleB.m └── GHWPodDemo │ ├── GHWPodDemo.podspec │ └── GHWPodDemo │ ├── Assets │ └── .gitkeep │ └── Classes │ ├── .gitkeep │ ├── GHWLaunchManager.h │ └── GHWLaunchManager.m └── resources ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/.gitignore -------------------------------------------------------------------------------- /GHWAppLaunchManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GHWAppLaunchManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GHWAppLaunchManager.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GHWAppLaunchManager.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GHWAppLaunchManager.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GHWAppLaunchManager/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/AppDelegate.h -------------------------------------------------------------------------------- /GHWAppLaunchManager/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/AppDelegate.m -------------------------------------------------------------------------------- /GHWAppLaunchManager/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GHWAppLaunchManager/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GHWAppLaunchManager/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GHWAppLaunchManager/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GHWAppLaunchManager/GHWModuleA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/GHWModuleA.h -------------------------------------------------------------------------------- /GHWAppLaunchManager/GHWModuleA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/GHWModuleA.m -------------------------------------------------------------------------------- /GHWAppLaunchManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/Info.plist -------------------------------------------------------------------------------- /GHWAppLaunchManager/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/ViewController.h -------------------------------------------------------------------------------- /GHWAppLaunchManager/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/ViewController.m -------------------------------------------------------------------------------- /GHWAppLaunchManager/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/GHWAppLaunchManager/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Local Podspecs/GHWAttributeLib.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Local Podspecs/GHWAttributeLib.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/GHWPodDemo.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Local Podspecs/GHWPodDemo.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWAttributeLib/GHWAttributeLib.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWPodDemo/GHWPodDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWPodDemo/GHWPodDemo-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWPodDemo/GHWPodDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWPodDemo/GHWPodDemo-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWPodDemo/GHWPodDemo-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWPodDemo/GHWPodDemo-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWPodDemo/GHWPodDemo-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWPodDemo/GHWPodDemo-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWPodDemo/GHWPodDemo.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWPodDemo/GHWPodDemo.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/GHWPodDemo/GHWPodDemo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/GHWPodDemo/GHWPodDemo.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Masonry/Masonry-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Masonry/Masonry-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Masonry/Masonry.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/Pods/Target Support Files/Pods-GHWAppLaunchManager/Pods-GHWAppLaunchManager.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/README.md -------------------------------------------------------------------------------- /localPods/GHWAttributeLib/GHWAttributeLib.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/localPods/GHWAttributeLib/GHWAttributeLib.podspec -------------------------------------------------------------------------------- /localPods/GHWAttributeLib/GHWAttributeLib/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localPods/GHWAttributeLib/GHWAttributeLib/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localPods/GHWAttributeLib/GHWAttributeLib/Classes/GHWModuleB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/localPods/GHWAttributeLib/GHWAttributeLib/Classes/GHWModuleB.h -------------------------------------------------------------------------------- /localPods/GHWAttributeLib/GHWAttributeLib/Classes/GHWModuleB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/localPods/GHWAttributeLib/GHWAttributeLib/Classes/GHWModuleB.m -------------------------------------------------------------------------------- /localPods/GHWPodDemo/GHWPodDemo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/localPods/GHWPodDemo/GHWPodDemo.podspec -------------------------------------------------------------------------------- /localPods/GHWPodDemo/GHWPodDemo/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localPods/GHWPodDemo/GHWPodDemo/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localPods/GHWPodDemo/GHWPodDemo/Classes/GHWLaunchManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/localPods/GHWPodDemo/GHWPodDemo/Classes/GHWLaunchManager.h -------------------------------------------------------------------------------- /localPods/GHWPodDemo/GHWPodDemo/Classes/GHWLaunchManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/localPods/GHWPodDemo/GHWPodDemo/Classes/GHWLaunchManager.m -------------------------------------------------------------------------------- /resources/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/resources/1.png -------------------------------------------------------------------------------- /resources/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/resources/2.png -------------------------------------------------------------------------------- /resources/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/resources/3.png -------------------------------------------------------------------------------- /resources/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/resources/4.png -------------------------------------------------------------------------------- /resources/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohongwei719/GHWAppLaunchManager/HEAD/resources/5.png --------------------------------------------------------------------------------