├── .gitignore └── .gitignore ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTIONS.md ├── LICENSE ├── README.md ├── Screenshots ├── Screenshot-1-landscape.png ├── Screenshot-1.png └── Screenshot-2.png ├── Zingle.podspec └── Zingle ├── Zingle.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Hemang.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Hemang.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── Zingle ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── warning-icon.imageset │ ├── Contents.json │ ├── warning@3x-1.png │ ├── warning@3x-2.png │ └── warning@3x.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── Source └── Zingle.swift └── ViewController.swift /.gitignore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/.gitignore/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/CONTRIBUTIONS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Screenshot-1-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Screenshots/Screenshot-1-landscape.png -------------------------------------------------------------------------------- /Screenshots/Screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Screenshots/Screenshot-1.png -------------------------------------------------------------------------------- /Screenshots/Screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Screenshots/Screenshot-2.png -------------------------------------------------------------------------------- /Zingle.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle.podspec -------------------------------------------------------------------------------- /Zingle/Zingle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Zingle/Zingle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Zingle/Zingle.xcodeproj/project.xcworkspace/xcuserdata/Hemang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle.xcodeproj/project.xcworkspace/xcuserdata/Hemang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Zingle/Zingle.xcodeproj/xcuserdata/Hemang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle.xcodeproj/xcuserdata/Hemang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Zingle/Zingle.xcodeproj/xcuserdata/Hemang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle.xcodeproj/xcuserdata/Hemang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Zingle/Zingle/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/AppDelegate.swift -------------------------------------------------------------------------------- /Zingle/Zingle/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Zingle/Zingle/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Zingle/Zingle/Assets.xcassets/warning-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/Assets.xcassets/warning-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Zingle/Zingle/Assets.xcassets/warning-icon.imageset/warning@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/Assets.xcassets/warning-icon.imageset/warning@3x-1.png -------------------------------------------------------------------------------- /Zingle/Zingle/Assets.xcassets/warning-icon.imageset/warning@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/Assets.xcassets/warning-icon.imageset/warning@3x-2.png -------------------------------------------------------------------------------- /Zingle/Zingle/Assets.xcassets/warning-icon.imageset/warning@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/Assets.xcassets/warning-icon.imageset/warning@3x.png -------------------------------------------------------------------------------- /Zingle/Zingle/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Zingle/Zingle/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Zingle/Zingle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/Info.plist -------------------------------------------------------------------------------- /Zingle/Zingle/Source/Zingle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/Source/Zingle.swift -------------------------------------------------------------------------------- /Zingle/Zingle/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/Zingle/HEAD/Zingle/Zingle/ViewController.swift --------------------------------------------------------------------------------