├── .gitignore ├── LICENSE.md ├── LatestBuild ├── Notchifciation.png ├── Notchifciation.psd ├── Notchification.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Notchification.xcscheme ├── Notchification.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── willsmillie.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── Notchification ├── CCColorCube.h ├── CCColorCube.m ├── CCLocalMaximum.h ├── CCLocalMaximum.m ├── ContextInterfaces.h ├── EWindow.h ├── EWindow.m ├── EWindow.mm ├── IPC.h ├── Notchification-Prefix.pch ├── Notchification.mm ├── Notchification.xm ├── Package │ ├── DEBIAN │ │ └── control │ └── Library │ │ ├── Application Support │ │ └── Notchification │ │ │ ├── PayPal.png │ │ │ ├── PayPal@2x.png │ │ │ ├── PayPal@3x.png │ │ │ ├── changelog.plist │ │ │ ├── empty_status.json │ │ │ ├── help.png │ │ │ ├── money.json │ │ │ ├── print.json │ │ │ └── sad.json │ │ ├── MobileSubstrate │ │ └── DynamicLibraries │ │ │ ├── Notchification.dylib │ │ │ └── Notchification.plist │ │ └── Notchification │ │ ├── Saturn Planet.json │ │ ├── [responsive] Beam │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] Bell (via GlyphAlert) │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] Drop │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] Edge 1 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] Edge 2 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] Edge 3 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] Edge 4 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] EdgeX 1 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] EdgeX 2 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] EdgeX 3 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] EdgeX 4 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] EdgeXS Max 1 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] EdgeXS Max 2 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] EdgeXS Max 3 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] EdgeXS Max 4 │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] Ping │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] particles │ │ ├── animation.json │ │ └── animation.plist │ │ ├── autoconnect_loading.json │ │ ├── circles_precomp.json │ │ ├── confetti.json │ │ ├── curved_line_animation.json │ │ ├── dna_loader.json │ │ ├── eye.json │ │ ├── firework.json │ │ ├── gift.json │ │ ├── ice_cream_animation.json │ │ ├── loader_animation.json │ │ ├── new_notification_bell.json │ │ ├── particles 2.json │ │ ├── particles.json │ │ └── twirl_particles_loading.json ├── PackageVersion.plist └── interfaces.h ├── NotchificationSettings ├── AnimationSelector.h ├── AnimationSelector.m ├── NotchOLEDDelayTableCell.m ├── NotchificationSettings-Info.plist ├── NotchificationSettings-Prefix.pch ├── NotchificationSettingsController.h ├── NotchificationSettingsController.m ├── PHVerticalAdjustmentTableCell.m ├── Package │ ├── DEBIAN │ │ └── control │ └── Library │ │ ├── PreferenceBundles │ │ └── NotchificationSettings.bundle │ │ │ ├── Frameworks │ │ │ └── Payments.framework │ │ │ │ ├── Info.plist │ │ │ │ └── Payments │ │ │ ├── ISMessages.bundle │ │ │ ├── Info.plist │ │ │ ├── isErrorIcon.png │ │ │ ├── isErrorIcon@2x.png │ │ │ ├── isErrorIcon@3x.png │ │ │ ├── isInfoIcon.png │ │ │ ├── isInfoIcon@2x.png │ │ │ ├── isInfoIcon@3x.png │ │ │ ├── isSuccessIcon.png │ │ │ ├── isSuccessIcon@2x.png │ │ │ ├── isSuccessIcon@3x.png │ │ │ ├── isWarningIcon.png │ │ │ ├── isWarningIcon@2x.png │ │ │ └── isWarningIcon@3x.png │ │ │ ├── Info.plist │ │ │ ├── NotchificationSettings │ │ │ ├── NotchificationSettings.plist │ │ │ ├── NotchificationSettingsIcon.png │ │ │ ├── NotchificationSettingsIcon@2x.png │ │ │ ├── NotchificationSettingsIcon@3x.png │ │ │ ├── SVProgressHUD.bundle │ │ │ ├── angle-mask.png │ │ │ ├── angle-mask@2x.png │ │ │ ├── angle-mask@3x.png │ │ │ ├── error.png │ │ │ ├── error@2x.png │ │ │ ├── error@3x.png │ │ │ ├── info.png │ │ │ ├── info@2x.png │ │ │ ├── info@3x.png │ │ │ ├── success.png │ │ │ ├── success@2x.png │ │ │ └── success@3x.png │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ ├── aep.png │ │ │ ├── aep@2x.png │ │ │ ├── aep@3x.png │ │ │ ├── ahmed.png │ │ │ ├── ahmed@2x.png │ │ │ ├── ahmed@3x.png │ │ │ ├── paypal.png │ │ │ ├── paypal@2x.png │ │ │ ├── paypal@3x.png │ │ │ ├── twitter.png │ │ │ ├── twitter@2x.png │ │ │ └── twitter@3x.png │ │ └── PreferenceLoader │ │ └── Preferences │ │ └── NotchificationSettings.plist └── PackageVersion.plist ├── Packages ├── Notchification_2.2.1.deb ├── com.c1d3r.NotchificationSettings_1.1-5_iphoneos-arm.deb ├── com.c1d3r.NotchificationSettings_1.1-5_iphoneos-arm.zip ├── com.c1d3r.Notchification_2.2.1_iphoneos-arm.deb └── com.c1d3r.Notchification_2.2.1_iphoneos-arm.zip ├── Podfile ├── Pods ├── Headers │ ├── Private │ │ └── L360Confetti │ │ │ ├── L360ConfettiAble 2.h │ │ │ ├── L360ConfettiAble.h │ │ │ ├── L360ConfettiArea 2.h │ │ │ ├── L360ConfettiArea.h │ │ │ ├── L360ConfettiObject 2.h │ │ │ ├── L360ConfettiObject.h │ │ │ ├── L360ConfettiView 2.h │ │ │ └── L360ConfettiView.h │ └── Public │ │ └── L360Confetti │ │ ├── L360ConfettiAble 2.h │ │ ├── L360ConfettiAble.h │ │ ├── L360ConfettiArea 2.h │ │ ├── L360ConfettiArea.h │ │ ├── L360ConfettiObject 2.h │ │ ├── L360ConfettiObject.h │ │ ├── L360ConfettiView 2.h │ │ └── L360ConfettiView.h ├── L360Confetti │ ├── README.md │ └── iOS │ │ ├── L360Confetti │ │ ├── L360ConfettiAble.h │ │ ├── L360ConfettiArea.h │ │ ├── L360ConfettiArea.m │ │ ├── L360ConfettiObject.h │ │ ├── L360ConfettiObject.m │ │ ├── L360ConfettiView.h │ │ └── L360ConfettiView.m │ │ └── LICENSE.md ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── L360Confetti │ ├── L360Confetti-dummy.m │ ├── L360Confetti-prefix.pch │ ├── L360Confetti.debug.xcconfig │ ├── L360Confetti.release.xcconfig │ └── L360Confetti.xcconfig │ └── Pods-NotchificationSettings │ ├── Pods-NotchificationSettings-acknowledgements.markdown │ ├── Pods-NotchificationSettings-acknowledgements.plist │ ├── Pods-NotchificationSettings-dummy.m │ ├── Pods-NotchificationSettings-frameworks.sh │ ├── Pods-NotchificationSettings-resources.sh │ ├── Pods-NotchificationSettings.debug.xcconfig │ └── Pods-NotchificationSettings.release.xcconfig ├── README.md ├── animations ├── Adobe After Effects Auto-Save │ ├── Ping auto-save 1.aep │ ├── [Template] iPhone auto-save 4.aep │ ├── [Template] iPhone auto-save 5.aep │ ├── [Template] iPhone auto-save 6.aep │ ├── [Template] iPhone auto-save 7.aep │ ├── [Template] iPhone auto-save 8.aep │ ├── iPhone Edge 3 auto-save 1.aep │ ├── iPhone X Edge 4 auto-save 1.aep │ ├── iPhone X Edge 4 auto-save 2.aep │ ├── iPhone X Edge 4 auto-save 3.aep │ ├── iPhone X Edge 4 auto-save 4.aep │ ├── iPhone X Edge auto-save 1.aep │ ├── iPhone X Edge auto-save 2.aep │ ├── iPhone X Edge auto-save 3.aep │ ├── iPhone X Template auto-save 1.aep │ ├── iPhone X Template auto-save 2.aep │ ├── iPhone X Template auto-save 3.aep │ ├── iPhone X Template auto-save 4.aep │ ├── iPhone X Template auto-save 5.aep │ └── particles - green auto-save 1.aep ├── Animation Pack 1 - deb │ ├── DEBIAN │ │ └── control │ └── Library │ │ └── Notchification │ │ ├── [responsive] AP1 - Beam │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] AP1 - Bell │ │ ├── animation.json │ │ └── animation.plist │ │ ├── [responsive] AP1 - Drop │ │ ├── animation.json │ │ └── animation.plist │ │ └── [responsive] AP1 - Ping │ │ ├── animation.json │ │ └── animation.plist ├── Animation Pack 1 │ ├── #Dropplet.aep │ ├── Adobe After Effects Auto-Save │ │ ├── Beam auto-save 1.aep │ │ ├── Bell auto-save 1.aep │ │ ├── Rain auto-save 1.aep │ │ ├── Rain auto-save 2.aep │ │ ├── Rain auto-save 3.aep │ │ ├── Rain auto-save 4.aep │ │ └── Wave auto-save 1.aep │ ├── Beam.aep │ ├── Bell.aep │ ├── Droplet.aep │ ├── Ping X.aep │ ├── Ping.aep │ ├── Rain X.aep │ └── Rain.aep ├── Particles (Non X).aep ├── Particles.aep ├── Untitled Project.aep ├── [Template] iPhone X.aep ├── [Template] iPhone.aep ├── iPhone Edge 1.aep ├── iPhone Edge 2.aep ├── iPhone Edge 3.aep ├── iPhone Edge 4.aep ├── iPhone X Edge 1.aep ├── iPhone X Edge 2.aep ├── iPhone X Edge 3.aep ├── iPhone X Edge 4.aep ├── iPhone X Edge 5.aep ├── iPhone X Edge 6.aep ├── iPhone X Edge 7.aep ├── iPhone XS Edge 2.aep ├── iPhone XS Edge 3.aep ├── iPhone XS Edge 4.aep └── iPhone XS Max Edge 1.aep ├── changelog.plist ├── icon.png └── notchtest ├── Podfile ├── Pods ├── Headers │ ├── Private │ │ ├── INTUAnimationEngine │ │ │ ├── INTUAnimationEngine.h │ │ │ ├── INTUAnimationEngineDefines.h │ │ │ ├── INTUEasingFunctions.h │ │ │ ├── INTUInterpolationFunctions.h │ │ │ ├── INTUSpringSolver.h │ │ │ └── INTUVector.h │ │ └── lottie-ios │ │ │ └── Lottie │ │ │ ├── CALayer+Compat.h │ │ │ ├── CGGeometry+LOTAdditions.h │ │ │ ├── LOTAnimatedControl.h │ │ │ ├── LOTAnimatedSwitch.h │ │ │ ├── LOTAnimationCache.h │ │ │ ├── LOTAnimationTransitionController.h │ │ │ ├── LOTAnimationView.h │ │ │ ├── LOTAnimationView_Compat.h │ │ │ ├── LOTAnimationView_Internal.h │ │ │ ├── LOTAnimatorNode.h │ │ │ ├── LOTArrayInterpolator.h │ │ │ ├── LOTAsset.h │ │ │ ├── LOTAssetGroup.h │ │ │ ├── LOTBezierData.h │ │ │ ├── LOTBezierPath.h │ │ │ ├── LOTBlockCallback.h │ │ │ ├── LOTCacheProvider.h │ │ │ ├── LOTCircleAnimator.h │ │ │ ├── LOTColorInterpolator.h │ │ │ ├── LOTComposition.h │ │ │ ├── LOTCompositionContainer.h │ │ │ ├── LOTFillRenderer.h │ │ │ ├── LOTGradientFillRender.h │ │ │ ├── LOTHelpers.h │ │ │ ├── LOTInterpolatorCallback.h │ │ │ ├── LOTKeyframe.h │ │ │ ├── LOTKeypath.h │ │ │ ├── LOTLayer.h │ │ │ ├── LOTLayerContainer.h │ │ │ ├── LOTLayerGroup.h │ │ │ ├── LOTMask.h │ │ │ ├── LOTMaskContainer.h │ │ │ ├── LOTModels.h │ │ │ ├── LOTNumberInterpolator.h │ │ │ ├── LOTPathAnimator.h │ │ │ ├── LOTPathInterpolator.h │ │ │ ├── LOTPlatformCompat.h │ │ │ ├── LOTPointInterpolator.h │ │ │ ├── LOTPolygonAnimator.h │ │ │ ├── LOTPolystarAnimator.h │ │ │ ├── LOTRadialGradientLayer.h │ │ │ ├── LOTRenderGroup.h │ │ │ ├── LOTRenderNode.h │ │ │ ├── LOTRepeaterRenderer.h │ │ │ ├── LOTRoundedRectAnimator.h │ │ │ ├── LOTShapeCircle.h │ │ │ ├── LOTShapeFill.h │ │ │ ├── LOTShapeGradientFill.h │ │ │ ├── LOTShapeGroup.h │ │ │ ├── LOTShapePath.h │ │ │ ├── LOTShapeRectangle.h │ │ │ ├── LOTShapeRepeater.h │ │ │ ├── LOTShapeStar.h │ │ │ ├── LOTShapeStroke.h │ │ │ ├── LOTShapeTransform.h │ │ │ ├── LOTShapeTrimPath.h │ │ │ ├── LOTSizeInterpolator.h │ │ │ ├── LOTStrokeRenderer.h │ │ │ ├── LOTTransformInterpolator.h │ │ │ ├── LOTTrimPathNode.h │ │ │ ├── LOTValueCallback.h │ │ │ ├── LOTValueDelegate.h │ │ │ ├── LOTValueInterpolator.h │ │ │ ├── Lottie.h │ │ │ ├── NSValue+Compat.h │ │ │ ├── UIBezierPath.h │ │ │ ├── UIColor+Expanded.h │ │ │ └── UIColor.h │ └── Public │ │ ├── INTUAnimationEngine │ │ ├── INTUAnimationEngine.h │ │ ├── INTUAnimationEngineDefines.h │ │ ├── INTUEasingFunctions.h │ │ ├── INTUInterpolationFunctions.h │ │ ├── INTUSpringSolver.h │ │ └── INTUVector.h │ │ └── lottie-ios │ │ └── Lottie │ │ ├── LOTAnimatedControl.h │ │ ├── LOTAnimatedSwitch.h │ │ ├── LOTAnimationCache.h │ │ ├── LOTAnimationTransitionController.h │ │ ├── LOTAnimationView.h │ │ ├── LOTAnimationView_Compat.h │ │ ├── LOTBlockCallback.h │ │ ├── LOTCacheProvider.h │ │ ├── LOTComposition.h │ │ ├── LOTInterpolatorCallback.h │ │ ├── LOTKeypath.h │ │ ├── LOTValueCallback.h │ │ ├── LOTValueDelegate.h │ │ └── Lottie.h ├── INTUAnimationEngine │ ├── INTUAnimationEngine │ │ ├── INTUAnimationEngine.h │ │ ├── INTUAnimationEngine.m │ │ ├── INTUAnimationEngineDefines.h │ │ ├── INTUEasingFunctions.h │ │ ├── INTUEasingFunctions.m │ │ ├── INTUInterpolationFunctions.h │ │ ├── INTUInterpolationFunctions.m │ │ └── SpringSolver │ │ │ ├── INTUSpringSolver.c │ │ │ ├── INTUSpringSolver.h │ │ │ └── INTUVector.h │ ├── LICENSE │ ├── LICENSE-SpringSolver │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── Target Support Files │ ├── INTUAnimationEngine │ │ ├── INTUAnimationEngine-dummy.m │ │ ├── INTUAnimationEngine-prefix.pch │ │ └── INTUAnimationEngine.xcconfig │ ├── Pods-notchtest │ │ ├── Pods-notchtest-acknowledgements.markdown │ │ ├── Pods-notchtest-acknowledgements.plist │ │ ├── Pods-notchtest-dummy.m │ │ ├── Pods-notchtest-frameworks.sh │ │ ├── Pods-notchtest-resources.sh │ │ ├── Pods-notchtest.debug.xcconfig │ │ └── Pods-notchtest.release.xcconfig │ └── lottie-ios │ │ ├── lottie-ios-dummy.m │ │ ├── lottie-ios-prefix.pch │ │ └── lottie-ios.xcconfig └── lottie-ios │ ├── LICENSE │ ├── README.md │ └── lottie-ios │ └── Classes │ ├── AnimatableLayers │ ├── LOTCompositionContainer.h │ ├── LOTCompositionContainer.m │ ├── LOTLayerContainer.h │ ├── LOTLayerContainer.m │ ├── LOTMaskContainer.h │ └── LOTMaskContainer.m │ ├── AnimatableProperties │ ├── LOTBezierData.h │ ├── LOTBezierData.m │ ├── LOTKeyframe.h │ └── LOTKeyframe.m │ ├── Extensions │ ├── CGGeometry+LOTAdditions.h │ ├── CGGeometry+LOTAdditions.m │ ├── LOTBezierPath.h │ ├── LOTBezierPath.m │ ├── LOTHelpers.h │ ├── LOTRadialGradientLayer.h │ ├── LOTRadialGradientLayer.m │ ├── UIColor+Expanded.h │ └── UIColor+Expanded.m │ ├── MacCompatability │ ├── CALayer+Compat.h │ ├── CALayer+Compat.m │ ├── LOTPlatformCompat.h │ ├── NSValue+Compat.h │ ├── NSValue+Compat.m │ ├── UIBezierPath.h │ ├── UIBezierPath.m │ ├── UIColor.h │ └── UIColor.m │ ├── Models │ ├── LOTAsset.h │ ├── LOTAsset.m │ ├── LOTAssetGroup.h │ ├── LOTAssetGroup.m │ ├── LOTLayer.h │ ├── LOTLayer.m │ ├── LOTLayerGroup.h │ ├── LOTLayerGroup.m │ ├── LOTMask.h │ ├── LOTMask.m │ ├── LOTModels.h │ ├── LOTShapeCircle.h │ ├── LOTShapeCircle.m │ ├── LOTShapeFill.h │ ├── LOTShapeFill.m │ ├── LOTShapeGradientFill.h │ ├── LOTShapeGradientFill.m │ ├── LOTShapeGroup.h │ ├── LOTShapeGroup.m │ ├── LOTShapePath.h │ ├── LOTShapePath.m │ ├── LOTShapeRectangle.h │ ├── LOTShapeRectangle.m │ ├── LOTShapeRepeater.h │ ├── LOTShapeRepeater.m │ ├── LOTShapeStar.h │ ├── LOTShapeStar.m │ ├── LOTShapeStroke.h │ ├── LOTShapeStroke.m │ ├── LOTShapeTransform.h │ ├── LOTShapeTransform.m │ ├── LOTShapeTrimPath.h │ └── LOTShapeTrimPath.m │ ├── Private │ ├── LOTAnimatedControl.m │ ├── LOTAnimatedSwitch.m │ ├── LOTAnimationCache.m │ ├── LOTAnimationTransitionController.m │ ├── LOTAnimationView.m │ ├── LOTAnimationView_Internal.h │ ├── LOTBlockCallback.m │ ├── LOTCacheProvider.m │ ├── LOTComposition.m │ ├── LOTInterpolatorCallback.m │ ├── LOTKeypath.m │ └── LOTValueCallback.m │ ├── PublicHeaders │ ├── LOTAnimatedControl.h │ ├── LOTAnimatedSwitch.h │ ├── LOTAnimationCache.h │ ├── LOTAnimationTransitionController.h │ ├── LOTAnimationView.h │ ├── LOTAnimationView_Compat.h │ ├── LOTBlockCallback.h │ ├── LOTCacheProvider.h │ ├── LOTComposition.h │ ├── LOTInterpolatorCallback.h │ ├── LOTKeypath.h │ ├── LOTValueCallback.h │ ├── LOTValueDelegate.h │ └── Lottie.h │ └── RenderSystem │ ├── AnimatorNodes │ ├── LOTCircleAnimator.h │ ├── LOTCircleAnimator.m │ ├── LOTPathAnimator.h │ ├── LOTPathAnimator.m │ ├── LOTPolygonAnimator.h │ ├── LOTPolygonAnimator.m │ ├── LOTPolystarAnimator.h │ ├── LOTPolystarAnimator.m │ ├── LOTRoundedRectAnimator.h │ └── LOTRoundedRectAnimator.m │ ├── InterpolatorNodes │ ├── LOTArrayInterpolator.h │ ├── LOTArrayInterpolator.m │ ├── LOTColorInterpolator.h │ ├── LOTColorInterpolator.m │ ├── LOTNumberInterpolator.h │ ├── LOTNumberInterpolator.m │ ├── LOTPathInterpolator.h │ ├── LOTPathInterpolator.m │ ├── LOTPointInterpolator.h │ ├── LOTPointInterpolator.m │ ├── LOTSizeInterpolator.h │ ├── LOTSizeInterpolator.m │ ├── LOTTransformInterpolator.h │ ├── LOTTransformInterpolator.m │ ├── LOTValueInterpolator.h │ └── LOTValueInterpolator.m │ ├── LOTAnimatorNode.h │ ├── LOTAnimatorNode.m │ ├── LOTRenderNode.h │ ├── LOTRenderNode.m │ ├── ManipulatorNodes │ ├── LOTTrimPathNode.h │ └── LOTTrimPathNode.m │ └── RenderNodes │ ├── LOTFillRenderer.h │ ├── LOTFillRenderer.m │ ├── LOTGradientFillRender.h │ ├── LOTGradientFillRender.m │ ├── LOTRenderGroup.h │ ├── LOTRenderGroup.m │ ├── LOTRepeaterRenderer.h │ ├── LOTRepeaterRenderer.m │ ├── LOTStrokeRenderer.h │ └── LOTStrokeRenderer.m ├── notchtest.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── notchtest.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist └── notchtest ├── 0.plist ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── animation.json └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LatestBuild: -------------------------------------------------------------------------------- 1 | /Users/willsmillie/Library/Developer/Xcode/DerivedData/Notchification-hfywlwtjyxunjxfarvvgcrzgdzie/Build/Products/Release-iphoneos -------------------------------------------------------------------------------- /Notchifciation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchifciation.png -------------------------------------------------------------------------------- /Notchifciation.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchifciation.psd -------------------------------------------------------------------------------- /Notchification.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Notchification.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Notchification.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Notchification.xcodeproj/xcshareddata/xcschemes/Notchification.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification.xcodeproj/xcshareddata/xcschemes/Notchification.xcscheme -------------------------------------------------------------------------------- /Notchification.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Notchification.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Notchification.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Notchification.xcworkspace/xcuserdata/willsmillie.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification.xcworkspace/xcuserdata/willsmillie.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Notchification/CCColorCube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/CCColorCube.h -------------------------------------------------------------------------------- /Notchification/CCColorCube.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/CCColorCube.m -------------------------------------------------------------------------------- /Notchification/CCLocalMaximum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/CCLocalMaximum.h -------------------------------------------------------------------------------- /Notchification/CCLocalMaximum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/CCLocalMaximum.m -------------------------------------------------------------------------------- /Notchification/ContextInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/ContextInterfaces.h -------------------------------------------------------------------------------- /Notchification/EWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/EWindow.h -------------------------------------------------------------------------------- /Notchification/EWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/EWindow.m -------------------------------------------------------------------------------- /Notchification/EWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/EWindow.mm -------------------------------------------------------------------------------- /Notchification/IPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/IPC.h -------------------------------------------------------------------------------- /Notchification/Notchification-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Notchification-Prefix.pch -------------------------------------------------------------------------------- /Notchification/Notchification.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Notchification.mm -------------------------------------------------------------------------------- /Notchification/Notchification.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Notchification.xm -------------------------------------------------------------------------------- /Notchification/Package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/DEBIAN/control -------------------------------------------------------------------------------- /Notchification/Package/Library/Application Support/Notchification/PayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Application Support/Notchification/PayPal.png -------------------------------------------------------------------------------- /Notchification/Package/Library/Application Support/Notchification/PayPal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Application Support/Notchification/PayPal@2x.png -------------------------------------------------------------------------------- /Notchification/Package/Library/Application Support/Notchification/PayPal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Application Support/Notchification/PayPal@3x.png -------------------------------------------------------------------------------- /Notchification/Package/Library/Application Support/Notchification/changelog.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Application Support/Notchification/changelog.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Application Support/Notchification/empty_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Application Support/Notchification/empty_status.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Application Support/Notchification/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Application Support/Notchification/help.png -------------------------------------------------------------------------------- /Notchification/Package/Library/Application Support/Notchification/money.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Application Support/Notchification/money.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Application Support/Notchification/print.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Application Support/Notchification/print.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Application Support/Notchification/sad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Application Support/Notchification/sad.json -------------------------------------------------------------------------------- /Notchification/Package/Library/MobileSubstrate/DynamicLibraries/Notchification.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/MobileSubstrate/DynamicLibraries/Notchification.dylib -------------------------------------------------------------------------------- /Notchification/Package/Library/MobileSubstrate/DynamicLibraries/Notchification.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/MobileSubstrate/DynamicLibraries/Notchification.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/Saturn Planet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/Saturn Planet.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Beam/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Beam/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Beam/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Beam/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Bell (via GlyphAlert)/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Bell (via GlyphAlert)/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Bell (via GlyphAlert)/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Bell (via GlyphAlert)/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Drop/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Drop/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Drop/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Drop/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Edge 1/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Edge 1/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Edge 1/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Edge 1/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Edge 2/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Edge 2/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Edge 2/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Edge 2/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Edge 3/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Edge 3/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Edge 3/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Edge 3/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Edge 4/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Edge 4/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Edge 4/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Edge 4/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeX 1/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeX 1/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeX 1/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeX 1/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeX 2/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeX 2/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeX 2/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeX 2/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeX 3/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeX 3/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeX 3/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeX 3/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeX 4/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeX 4/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeX 4/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeX 4/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 1/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 1/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 1/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 1/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 2/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 2/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 2/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 2/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 3/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 3/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 3/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 3/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 4/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 4/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 4/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] EdgeXS Max 4/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Ping/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Ping/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] Ping/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] Ping/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] particles/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] particles/animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/[responsive] particles/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/[responsive] particles/animation.plist -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/autoconnect_loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/autoconnect_loading.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/circles_precomp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/circles_precomp.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/confetti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/confetti.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/curved_line_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/curved_line_animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/dna_loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/dna_loader.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/eye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/eye.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/firework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/firework.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/gift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/gift.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/ice_cream_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/ice_cream_animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/loader_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/loader_animation.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/new_notification_bell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/new_notification_bell.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/particles 2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/particles 2.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/particles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/particles.json -------------------------------------------------------------------------------- /Notchification/Package/Library/Notchification/twirl_particles_loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/Package/Library/Notchification/twirl_particles_loading.json -------------------------------------------------------------------------------- /Notchification/PackageVersion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/PackageVersion.plist -------------------------------------------------------------------------------- /Notchification/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Notchification/interfaces.h -------------------------------------------------------------------------------- /NotchificationSettings/AnimationSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/AnimationSelector.h -------------------------------------------------------------------------------- /NotchificationSettings/AnimationSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/AnimationSelector.m -------------------------------------------------------------------------------- /NotchificationSettings/NotchOLEDDelayTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/NotchOLEDDelayTableCell.m -------------------------------------------------------------------------------- /NotchificationSettings/NotchificationSettings-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/NotchificationSettings-Info.plist -------------------------------------------------------------------------------- /NotchificationSettings/NotchificationSettings-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/NotchificationSettings-Prefix.pch -------------------------------------------------------------------------------- /NotchificationSettings/NotchificationSettingsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/NotchificationSettingsController.h -------------------------------------------------------------------------------- /NotchificationSettings/NotchificationSettingsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/NotchificationSettingsController.m -------------------------------------------------------------------------------- /NotchificationSettings/PHVerticalAdjustmentTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/PHVerticalAdjustmentTableCell.m -------------------------------------------------------------------------------- /NotchificationSettings/Package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/DEBIAN/control -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/Frameworks/Payments.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/Frameworks/Payments.framework/Info.plist -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/Frameworks/Payments.framework/Payments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/Frameworks/Payments.framework/Payments -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/Info.plist -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isErrorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isErrorIcon.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isErrorIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isErrorIcon@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isErrorIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isErrorIcon@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isInfoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isInfoIcon.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isInfoIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isInfoIcon@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isInfoIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isInfoIcon@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isSuccessIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isSuccessIcon.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isSuccessIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isSuccessIcon@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isSuccessIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isSuccessIcon@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isWarningIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isWarningIcon.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isWarningIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isWarningIcon@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isWarningIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ISMessages.bundle/isWarningIcon@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/Info.plist -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/NotchificationSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/NotchificationSettings -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/NotchificationSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/NotchificationSettings.plist -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/NotchificationSettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/NotchificationSettingsIcon.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/NotchificationSettingsIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/NotchificationSettingsIcon@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/NotchificationSettingsIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/NotchificationSettingsIcon@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/aep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/aep.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/aep@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/aep@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/aep@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/aep@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ahmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ahmed.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ahmed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ahmed@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ahmed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/ahmed@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/paypal.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/paypal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/paypal@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/paypal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/paypal@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/twitter.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/twitter@2x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceBundles/NotchificationSettings.bundle/twitter@3x.png -------------------------------------------------------------------------------- /NotchificationSettings/Package/Library/PreferenceLoader/Preferences/NotchificationSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/Package/Library/PreferenceLoader/Preferences/NotchificationSettings.plist -------------------------------------------------------------------------------- /NotchificationSettings/PackageVersion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/NotchificationSettings/PackageVersion.plist -------------------------------------------------------------------------------- /Packages/Notchification_2.2.1.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Packages/Notchification_2.2.1.deb -------------------------------------------------------------------------------- /Packages/com.c1d3r.NotchificationSettings_1.1-5_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Packages/com.c1d3r.NotchificationSettings_1.1-5_iphoneos-arm.deb -------------------------------------------------------------------------------- /Packages/com.c1d3r.NotchificationSettings_1.1-5_iphoneos-arm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Packages/com.c1d3r.NotchificationSettings_1.1-5_iphoneos-arm.zip -------------------------------------------------------------------------------- /Packages/com.c1d3r.Notchification_2.2.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Packages/com.c1d3r.Notchification_2.2.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /Packages/com.c1d3r.Notchification_2.2.1_iphoneos-arm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Packages/com.c1d3r.Notchification_2.2.1_iphoneos-arm.zip -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Podfile -------------------------------------------------------------------------------- /Pods/Headers/Private/L360Confetti/L360ConfettiAble 2.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiAble.h -------------------------------------------------------------------------------- /Pods/Headers/Private/L360Confetti/L360ConfettiAble.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiAble.h -------------------------------------------------------------------------------- /Pods/Headers/Private/L360Confetti/L360ConfettiArea 2.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiArea.h -------------------------------------------------------------------------------- /Pods/Headers/Private/L360Confetti/L360ConfettiArea.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiArea.h -------------------------------------------------------------------------------- /Pods/Headers/Private/L360Confetti/L360ConfettiObject 2.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/L360Confetti/L360ConfettiObject.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/L360Confetti/L360ConfettiView 2.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/L360Confetti/L360ConfettiView.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/L360Confetti/L360ConfettiAble 2.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiAble.h -------------------------------------------------------------------------------- /Pods/Headers/Public/L360Confetti/L360ConfettiAble.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiAble.h -------------------------------------------------------------------------------- /Pods/Headers/Public/L360Confetti/L360ConfettiArea 2.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiArea.h -------------------------------------------------------------------------------- /Pods/Headers/Public/L360Confetti/L360ConfettiArea.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiArea.h -------------------------------------------------------------------------------- /Pods/Headers/Public/L360Confetti/L360ConfettiObject 2.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/L360Confetti/L360ConfettiObject.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/L360Confetti/L360ConfettiView 2.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/L360Confetti/L360ConfettiView.h: -------------------------------------------------------------------------------- 1 | ../../../L360Confetti/iOS/L360Confetti/L360ConfettiView.h -------------------------------------------------------------------------------- /Pods/L360Confetti/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/L360Confetti/README.md -------------------------------------------------------------------------------- /Pods/L360Confetti/iOS/L360Confetti/L360ConfettiAble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/L360Confetti/iOS/L360Confetti/L360ConfettiAble.h -------------------------------------------------------------------------------- /Pods/L360Confetti/iOS/L360Confetti/L360ConfettiArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/L360Confetti/iOS/L360Confetti/L360ConfettiArea.h -------------------------------------------------------------------------------- /Pods/L360Confetti/iOS/L360Confetti/L360ConfettiArea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/L360Confetti/iOS/L360Confetti/L360ConfettiArea.m -------------------------------------------------------------------------------- /Pods/L360Confetti/iOS/L360Confetti/L360ConfettiObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/L360Confetti/iOS/L360Confetti/L360ConfettiObject.h -------------------------------------------------------------------------------- /Pods/L360Confetti/iOS/L360Confetti/L360ConfettiObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/L360Confetti/iOS/L360Confetti/L360ConfettiObject.m -------------------------------------------------------------------------------- /Pods/L360Confetti/iOS/L360Confetti/L360ConfettiView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/L360Confetti/iOS/L360Confetti/L360ConfettiView.h -------------------------------------------------------------------------------- /Pods/L360Confetti/iOS/L360Confetti/L360ConfettiView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/L360Confetti/iOS/L360Confetti/L360ConfettiView.m -------------------------------------------------------------------------------- /Pods/L360Confetti/iOS/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/L360Confetti/iOS/LICENSE.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/L360Confetti/L360Confetti-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/L360Confetti/L360Confetti-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/L360Confetti/L360Confetti-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/L360Confetti/L360Confetti-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/L360Confetti/L360Confetti.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/L360Confetti/L360Confetti.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/L360Confetti/L360Confetti.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/L360Confetti/L360Confetti.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/L360Confetti/L360Confetti.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/L360Confetti/L360Confetti.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/Pods/Target Support Files/Pods-NotchificationSettings/Pods-NotchificationSettings.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/README.md -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/Ping auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/Ping auto-save 1.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/[Template] iPhone auto-save 4.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/[Template] iPhone auto-save 4.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/[Template] iPhone auto-save 5.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/[Template] iPhone auto-save 5.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/[Template] iPhone auto-save 6.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/[Template] iPhone auto-save 6.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/[Template] iPhone auto-save 7.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/[Template] iPhone auto-save 7.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/[Template] iPhone auto-save 8.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/[Template] iPhone auto-save 8.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone Edge 3 auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone Edge 3 auto-save 1.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Edge 4 auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Edge 4 auto-save 1.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Edge 4 auto-save 2.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Edge 4 auto-save 2.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Edge 4 auto-save 3.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Edge 4 auto-save 3.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Edge 4 auto-save 4.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Edge 4 auto-save 4.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Edge auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Edge auto-save 1.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Edge auto-save 2.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Edge auto-save 2.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Edge auto-save 3.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Edge auto-save 3.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Template auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Template auto-save 1.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Template auto-save 2.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Template auto-save 2.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Template auto-save 3.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Template auto-save 3.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Template auto-save 4.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Template auto-save 4.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/iPhone X Template auto-save 5.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/iPhone X Template auto-save 5.aep -------------------------------------------------------------------------------- /animations/Adobe After Effects Auto-Save/particles - green auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Adobe After Effects Auto-Save/particles - green auto-save 1.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1 - deb/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1 - deb/DEBIAN/control -------------------------------------------------------------------------------- /animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Beam/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Beam/animation.json -------------------------------------------------------------------------------- /animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Beam/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Beam/animation.plist -------------------------------------------------------------------------------- /animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Bell/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Bell/animation.json -------------------------------------------------------------------------------- /animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Bell/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Bell/animation.plist -------------------------------------------------------------------------------- /animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Drop/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Drop/animation.json -------------------------------------------------------------------------------- /animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Drop/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Drop/animation.plist -------------------------------------------------------------------------------- /animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Ping/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Ping/animation.json -------------------------------------------------------------------------------- /animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Ping/animation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1 - deb/Library/Notchification/[responsive] AP1 - Ping/animation.plist -------------------------------------------------------------------------------- /animations/Animation Pack 1/#Dropplet.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/#Dropplet.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Adobe After Effects Auto-Save/Beam auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Adobe After Effects Auto-Save/Beam auto-save 1.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Adobe After Effects Auto-Save/Bell auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Adobe After Effects Auto-Save/Bell auto-save 1.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Adobe After Effects Auto-Save/Rain auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Adobe After Effects Auto-Save/Rain auto-save 1.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Adobe After Effects Auto-Save/Rain auto-save 2.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Adobe After Effects Auto-Save/Rain auto-save 2.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Adobe After Effects Auto-Save/Rain auto-save 3.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Adobe After Effects Auto-Save/Rain auto-save 3.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Adobe After Effects Auto-Save/Rain auto-save 4.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Adobe After Effects Auto-Save/Rain auto-save 4.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Adobe After Effects Auto-Save/Wave auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Adobe After Effects Auto-Save/Wave auto-save 1.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Beam.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Beam.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Bell.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Bell.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Droplet.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Droplet.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Ping X.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Ping X.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Ping.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Ping.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Rain X.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Rain X.aep -------------------------------------------------------------------------------- /animations/Animation Pack 1/Rain.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Animation Pack 1/Rain.aep -------------------------------------------------------------------------------- /animations/Particles (Non X).aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Particles (Non X).aep -------------------------------------------------------------------------------- /animations/Particles.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Particles.aep -------------------------------------------------------------------------------- /animations/Untitled Project.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/Untitled Project.aep -------------------------------------------------------------------------------- /animations/[Template] iPhone X.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/[Template] iPhone X.aep -------------------------------------------------------------------------------- /animations/[Template] iPhone.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/[Template] iPhone.aep -------------------------------------------------------------------------------- /animations/iPhone Edge 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone Edge 1.aep -------------------------------------------------------------------------------- /animations/iPhone Edge 2.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone Edge 2.aep -------------------------------------------------------------------------------- /animations/iPhone Edge 3.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone Edge 3.aep -------------------------------------------------------------------------------- /animations/iPhone Edge 4.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone Edge 4.aep -------------------------------------------------------------------------------- /animations/iPhone X Edge 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone X Edge 1.aep -------------------------------------------------------------------------------- /animations/iPhone X Edge 2.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone X Edge 2.aep -------------------------------------------------------------------------------- /animations/iPhone X Edge 3.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone X Edge 3.aep -------------------------------------------------------------------------------- /animations/iPhone X Edge 4.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone X Edge 4.aep -------------------------------------------------------------------------------- /animations/iPhone X Edge 5.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone X Edge 5.aep -------------------------------------------------------------------------------- /animations/iPhone X Edge 6.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone X Edge 6.aep -------------------------------------------------------------------------------- /animations/iPhone X Edge 7.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone X Edge 7.aep -------------------------------------------------------------------------------- /animations/iPhone XS Edge 2.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone XS Edge 2.aep -------------------------------------------------------------------------------- /animations/iPhone XS Edge 3.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone XS Edge 3.aep -------------------------------------------------------------------------------- /animations/iPhone XS Edge 4.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone XS Edge 4.aep -------------------------------------------------------------------------------- /animations/iPhone XS Max Edge 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/animations/iPhone XS Max Edge 1.aep -------------------------------------------------------------------------------- /changelog.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/changelog.plist -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/icon.png -------------------------------------------------------------------------------- /notchtest/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Podfile -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/INTUAnimationEngine/INTUAnimationEngine.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/INTUAnimationEngine.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/INTUAnimationEngine/INTUAnimationEngineDefines.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/INTUAnimationEngineDefines.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/INTUAnimationEngine/INTUEasingFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/INTUEasingFunctions.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/INTUAnimationEngine/INTUInterpolationFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/INTUInterpolationFunctions.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/INTUAnimationEngine/INTUSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/SpringSolver/INTUSpringSolver.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/INTUAnimationEngine/INTUVector.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/SpringSolver/INTUVector.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/CALayer+Compat.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/MacCompatability/CALayer+Compat.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/CGGeometry+LOTAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Extensions/CGGeometry+LOTAdditions.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTAnimatedControl.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimatedControl.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTAnimatedSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimatedSwitch.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTAnimationCache.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationCache.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTAnimationTransitionController.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationTransitionController.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTAnimationView.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationView.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTAnimationView_Compat.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationView_Compat.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTAnimationView_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Private/LOTAnimationView_Internal.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTAnimatorNode.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/LOTAnimatorNode.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTArrayInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTArrayInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTAsset.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTAsset.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTAssetGroup.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTAssetGroup.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTBezierData.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/AnimatableProperties/LOTBezierData.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTBezierPath.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Extensions/LOTBezierPath.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTBlockCallback.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTBlockCallback.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTCacheProvider.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTCacheProvider.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTCircleAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTCircleAnimator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTColorInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTColorInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTComposition.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTComposition.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTCompositionContainer.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTCompositionContainer.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTFillRenderer.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTFillRenderer.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTGradientFillRender.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTGradientFillRender.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Extensions/LOTHelpers.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTInterpolatorCallback.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTInterpolatorCallback.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTKeyframe.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/AnimatableProperties/LOTKeyframe.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTKeypath.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTKeypath.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTLayer.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTLayer.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTLayerContainer.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTLayerContainer.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTLayerGroup.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTLayerGroup.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTMask.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTMask.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTMaskContainer.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTMaskContainer.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTModels.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTModels.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTNumberInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTNumberInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTPathAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPathAnimator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTPathInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPathInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTPlatformCompat.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/MacCompatability/LOTPlatformCompat.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTPointInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPointInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTPolygonAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolygonAnimator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTPolystarAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolystarAnimator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTRadialGradientLayer.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Extensions/LOTRadialGradientLayer.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTRenderGroup.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRenderGroup.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTRenderNode.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/LOTRenderNode.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTRepeaterRenderer.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRepeaterRenderer.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTRoundedRectAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTRoundedRectAnimator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTShapeCircle.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTShapeCircle.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTShapeFill.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTShapeFill.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTShapeGradientFill.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTShapeGradientFill.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTShapeGroup.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTShapeGroup.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTShapePath.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTShapePath.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTShapeRectangle.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTShapeRectangle.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTShapeRepeater.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTShapeRepeater.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTShapeStar.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTShapeStar.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTShapeStroke.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTShapeStroke.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTShapeTransform.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTShapeTransform.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTShapeTrimPath.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Models/LOTShapeTrimPath.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTSizeInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTSizeInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTStrokeRenderer.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTStrokeRenderer.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTTransformInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTTransformInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTTrimPathNode.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/ManipulatorNodes/LOTTrimPathNode.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTValueCallback.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTValueCallback.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTValueDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTValueDelegate.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/LOTValueInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTValueInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/Lottie.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/Lottie.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/NSValue+Compat.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/MacCompatability/NSValue+Compat.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/UIBezierPath.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/MacCompatability/UIBezierPath.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/UIColor+Expanded.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/Extensions/UIColor+Expanded.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Private/lottie-ios/Lottie/UIColor.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/MacCompatability/UIColor.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/INTUAnimationEngine/INTUAnimationEngine.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/INTUAnimationEngine.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/INTUAnimationEngine/INTUAnimationEngineDefines.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/INTUAnimationEngineDefines.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/INTUAnimationEngine/INTUEasingFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/INTUEasingFunctions.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/INTUAnimationEngine/INTUInterpolationFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/INTUInterpolationFunctions.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/INTUAnimationEngine/INTUSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/SpringSolver/INTUSpringSolver.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/INTUAnimationEngine/INTUVector.h: -------------------------------------------------------------------------------- 1 | ../../../INTUAnimationEngine/INTUAnimationEngine/SpringSolver/INTUVector.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTAnimatedControl.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimatedControl.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTAnimatedSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimatedSwitch.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTAnimationCache.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationCache.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTAnimationTransitionController.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationTransitionController.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTAnimationView.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationView.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTAnimationView_Compat.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationView_Compat.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTBlockCallback.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTBlockCallback.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTCacheProvider.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTCacheProvider.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTComposition.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTComposition.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTInterpolatorCallback.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTInterpolatorCallback.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTKeypath.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTKeypath.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTValueCallback.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTValueCallback.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/LOTValueDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/LOTValueDelegate.h -------------------------------------------------------------------------------- /notchtest/Pods/Headers/Public/lottie-ios/Lottie/Lottie.h: -------------------------------------------------------------------------------- 1 | ../../../../lottie-ios/lottie-ios/Classes/PublicHeaders/Lottie.h -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUAnimationEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUAnimationEngine.h -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUAnimationEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUAnimationEngine.m -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUAnimationEngineDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUAnimationEngineDefines.h -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUEasingFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUEasingFunctions.h -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUEasingFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUEasingFunctions.m -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUInterpolationFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUInterpolationFunctions.h -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUInterpolationFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/INTUInterpolationFunctions.m -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/SpringSolver/INTUSpringSolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/SpringSolver/INTUSpringSolver.c -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/SpringSolver/INTUSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/SpringSolver/INTUSpringSolver.h -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/SpringSolver/INTUVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/INTUAnimationEngine/SpringSolver/INTUVector.h -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/LICENSE -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/LICENSE-SpringSolver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/LICENSE-SpringSolver -------------------------------------------------------------------------------- /notchtest/Pods/INTUAnimationEngine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/INTUAnimationEngine/README.md -------------------------------------------------------------------------------- /notchtest/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/INTUAnimationEngine/INTUAnimationEngine-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/INTUAnimationEngine/INTUAnimationEngine-dummy.m -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/INTUAnimationEngine/INTUAnimationEngine-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/INTUAnimationEngine/INTUAnimationEngine-prefix.pch -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/INTUAnimationEngine/INTUAnimationEngine.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/INTUAnimationEngine/INTUAnimationEngine.xcconfig -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest-acknowledgements.markdown -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest-acknowledgements.plist -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest-dummy.m -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest-frameworks.sh -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest-resources.sh -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest.debug.xcconfig -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/Pods-notchtest/Pods-notchtest.release.xcconfig -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/lottie-ios/lottie-ios-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/lottie-ios/lottie-ios-dummy.m -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/lottie-ios/lottie-ios-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/lottie-ios/lottie-ios-prefix.pch -------------------------------------------------------------------------------- /notchtest/Pods/Target Support Files/lottie-ios/lottie-ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/Target Support Files/lottie-ios/lottie-ios.xcconfig -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/LICENSE -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/README.md -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTCompositionContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTCompositionContainer.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTCompositionContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTCompositionContainer.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTLayerContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTLayerContainer.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTLayerContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTLayerContainer.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTMaskContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTMaskContainer.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTMaskContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableLayers/LOTMaskContainer.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableProperties/LOTBezierData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableProperties/LOTBezierData.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableProperties/LOTBezierData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableProperties/LOTBezierData.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableProperties/LOTKeyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableProperties/LOTKeyframe.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableProperties/LOTKeyframe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/AnimatableProperties/LOTKeyframe.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/CGGeometry+LOTAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/CGGeometry+LOTAdditions.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/CGGeometry+LOTAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/CGGeometry+LOTAdditions.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/LOTBezierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/LOTBezierPath.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/LOTBezierPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/LOTBezierPath.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/LOTHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/LOTHelpers.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/LOTRadialGradientLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/LOTRadialGradientLayer.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/LOTRadialGradientLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/LOTRadialGradientLayer.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/UIColor+Expanded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/UIColor+Expanded.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/UIColor+Expanded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Extensions/UIColor+Expanded.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/CALayer+Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/CALayer+Compat.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/CALayer+Compat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/CALayer+Compat.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/LOTPlatformCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/LOTPlatformCompat.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/NSValue+Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/NSValue+Compat.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/NSValue+Compat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/NSValue+Compat.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/UIBezierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/UIBezierPath.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/UIBezierPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/UIBezierPath.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/UIColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/UIColor.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/UIColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/MacCompatability/UIColor.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTAsset.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTAsset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTAsset.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTAssetGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTAssetGroup.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTAssetGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTAssetGroup.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTLayer.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTLayer.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTLayerGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTLayerGroup.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTLayerGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTLayerGroup.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTMask.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTMask.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTModels.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeCircle.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeCircle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeCircle.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeFill.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeFill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeFill.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeGradientFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeGradientFill.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeGradientFill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeGradientFill.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeGroup.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeGroup.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapePath.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapePath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapePath.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeRectangle.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeRectangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeRectangle.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeRepeater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeRepeater.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeRepeater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeRepeater.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeStar.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeStar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeStar.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeStroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeStroke.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeStroke.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeStroke.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeTransform.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeTransform.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeTrimPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeTrimPath.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeTrimPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Models/LOTShapeTrimPath.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimatedControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimatedControl.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimatedSwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimatedSwitch.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimationCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimationCache.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimationTransitionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimationTransitionController.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimationView.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimationView_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTAnimationView_Internal.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTBlockCallback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTBlockCallback.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTCacheProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTCacheProvider.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTComposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTComposition.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTInterpolatorCallback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTInterpolatorCallback.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTKeypath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTKeypath.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTValueCallback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/Private/LOTValueCallback.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimatedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimatedControl.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimatedSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimatedSwitch.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationCache.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationTransitionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationTransitionController.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationView.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationView_Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTAnimationView_Compat.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTBlockCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTBlockCallback.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTCacheProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTCacheProvider.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTComposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTComposition.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTInterpolatorCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTInterpolatorCallback.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTKeypath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTKeypath.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTValueCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTValueCallback.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTValueDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/LOTValueDelegate.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/Lottie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/PublicHeaders/Lottie.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTCircleAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTCircleAnimator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTCircleAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTCircleAnimator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPathAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPathAnimator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPathAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPathAnimator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolygonAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolygonAnimator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolygonAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolygonAnimator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolystarAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolystarAnimator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolystarAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolystarAnimator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTRoundedRectAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTRoundedRectAnimator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTRoundedRectAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTRoundedRectAnimator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTArrayInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTArrayInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTArrayInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTArrayInterpolator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTColorInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTColorInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTColorInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTColorInterpolator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTNumberInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTNumberInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTNumberInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTNumberInterpolator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPathInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPathInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPathInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPathInterpolator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPointInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPointInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPointInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPointInterpolator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTSizeInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTSizeInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTSizeInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTSizeInterpolator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTTransformInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTTransformInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTTransformInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTTransformInterpolator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTValueInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTValueInterpolator.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTValueInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTValueInterpolator.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/LOTAnimatorNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/LOTAnimatorNode.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/LOTAnimatorNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/LOTAnimatorNode.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/LOTRenderNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/LOTRenderNode.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/LOTRenderNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/LOTRenderNode.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/ManipulatorNodes/LOTTrimPathNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/ManipulatorNodes/LOTTrimPathNode.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/ManipulatorNodes/LOTTrimPathNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/ManipulatorNodes/LOTTrimPathNode.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTFillRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTFillRenderer.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTFillRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTFillRenderer.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTGradientFillRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTGradientFillRender.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTGradientFillRender.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTGradientFillRender.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRenderGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRenderGroup.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRenderGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRenderGroup.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRepeaterRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRepeaterRenderer.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRepeaterRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRepeaterRenderer.m -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTStrokeRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTStrokeRenderer.h -------------------------------------------------------------------------------- /notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTStrokeRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/Pods/lottie-ios/lottie-ios/Classes/RenderSystem/RenderNodes/LOTStrokeRenderer.m -------------------------------------------------------------------------------- /notchtest/notchtest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /notchtest/notchtest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /notchtest/notchtest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /notchtest/notchtest.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /notchtest/notchtest.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /notchtest/notchtest/0.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/0.plist -------------------------------------------------------------------------------- /notchtest/notchtest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/AppDelegate.h -------------------------------------------------------------------------------- /notchtest/notchtest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/AppDelegate.m -------------------------------------------------------------------------------- /notchtest/notchtest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /notchtest/notchtest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /notchtest/notchtest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /notchtest/notchtest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /notchtest/notchtest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/Info.plist -------------------------------------------------------------------------------- /notchtest/notchtest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/ViewController.h -------------------------------------------------------------------------------- /notchtest/notchtest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/ViewController.m -------------------------------------------------------------------------------- /notchtest/notchtest/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/animation.json -------------------------------------------------------------------------------- /notchtest/notchtest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c1d3rdev/Notchification/HEAD/notchtest/notchtest/main.m --------------------------------------------------------------------------------