├── .gitignore ├── AppInfo.podspec ├── AppInfo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── AppInfo ├── AppInfo.h ├── Classes │ └── AppInfo.swift └── Info.plist ├── AppInfoTests ├── AppInfoTests.swift └── Info.plist ├── Example ├── DemoApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── DemoApp.xcworkspace │ └── contents.xcworkspacedata ├── DemoApp │ ├── AppDelegate.swift │ ├── AppInfoItemsViewController.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ └── Info.plist ├── Podfile └── Podfile.lock ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/.gitignore -------------------------------------------------------------------------------- /AppInfo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/AppInfo.podspec -------------------------------------------------------------------------------- /AppInfo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/AppInfo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppInfo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/AppInfo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppInfo/AppInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/AppInfo/AppInfo.h -------------------------------------------------------------------------------- /AppInfo/Classes/AppInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/AppInfo/Classes/AppInfo.swift -------------------------------------------------------------------------------- /AppInfo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/AppInfo/Info.plist -------------------------------------------------------------------------------- /AppInfoTests/AppInfoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/AppInfoTests/AppInfoTests.swift -------------------------------------------------------------------------------- /AppInfoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/AppInfoTests/Info.plist -------------------------------------------------------------------------------- /Example/DemoApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/Example/DemoApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/DemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/Example/DemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DemoApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/Example/DemoApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DemoApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/Example/DemoApp/AppDelegate.swift -------------------------------------------------------------------------------- /Example/DemoApp/AppInfoItemsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/Example/DemoApp/AppInfoItemsViewController.swift -------------------------------------------------------------------------------- /Example/DemoApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/Example/DemoApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/DemoApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/Example/DemoApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/DemoApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/Example/DemoApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/DemoApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/Example/DemoApp/Info.plist -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostiakoval/AppInfo/HEAD/README.md --------------------------------------------------------------------------------