├── Batmobile.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ ├── Batmobile.xcscheme │ │ ├── BatmobileIntentsExtension.xcscheme │ │ └── BatmobileIntentsExtensionUI.xcscheme └── xcuserdata │ └── schukin.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Batmobile ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon@2x.png │ │ └── app_icon@3x.png │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Batmobile.entitlements ├── Info.plist ├── Screenshots │ ├── Screenshot1.png │ ├── Screenshot1@2x.png │ ├── Screenshot2.png │ └── Screenshot2@2x.png └── ViewController.swift ├── BatmobileIntentsExtension ├── Info.plist └── IntentHandler.swift ├── BatmobileIntentsExtensionUI ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── IntentViewController.swift └── watman.jpg ├── LICENSE.txt └── README.md /Batmobile.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Batmobile.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Batmobile.xcodeproj/xcshareddata/xcschemes/Batmobile.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile.xcodeproj/xcshareddata/xcschemes/Batmobile.xcscheme -------------------------------------------------------------------------------- /Batmobile.xcodeproj/xcshareddata/xcschemes/BatmobileIntentsExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile.xcodeproj/xcshareddata/xcschemes/BatmobileIntentsExtension.xcscheme -------------------------------------------------------------------------------- /Batmobile.xcodeproj/xcshareddata/xcschemes/BatmobileIntentsExtensionUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile.xcodeproj/xcshareddata/xcschemes/BatmobileIntentsExtensionUI.xcscheme -------------------------------------------------------------------------------- /Batmobile.xcodeproj/xcuserdata/schukin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile.xcodeproj/xcuserdata/schukin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Batmobile/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/AppDelegate.swift -------------------------------------------------------------------------------- /Batmobile/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Batmobile/Assets.xcassets/AppIcon.appiconset/app_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Assets.xcassets/AppIcon.appiconset/app_icon@2x.png -------------------------------------------------------------------------------- /Batmobile/Assets.xcassets/AppIcon.appiconset/app_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Assets.xcassets/AppIcon.appiconset/app_icon@3x.png -------------------------------------------------------------------------------- /Batmobile/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Batmobile/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Batmobile/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Batmobile/Batmobile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Batmobile.entitlements -------------------------------------------------------------------------------- /Batmobile/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Info.plist -------------------------------------------------------------------------------- /Batmobile/Screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Screenshots/Screenshot1.png -------------------------------------------------------------------------------- /Batmobile/Screenshots/Screenshot1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Screenshots/Screenshot1@2x.png -------------------------------------------------------------------------------- /Batmobile/Screenshots/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Screenshots/Screenshot2.png -------------------------------------------------------------------------------- /Batmobile/Screenshots/Screenshot2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/Screenshots/Screenshot2@2x.png -------------------------------------------------------------------------------- /Batmobile/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/Batmobile/ViewController.swift -------------------------------------------------------------------------------- /BatmobileIntentsExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/BatmobileIntentsExtension/Info.plist -------------------------------------------------------------------------------- /BatmobileIntentsExtension/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/BatmobileIntentsExtension/IntentHandler.swift -------------------------------------------------------------------------------- /BatmobileIntentsExtensionUI/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/BatmobileIntentsExtensionUI/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /BatmobileIntentsExtensionUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/BatmobileIntentsExtensionUI/Info.plist -------------------------------------------------------------------------------- /BatmobileIntentsExtensionUI/IntentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/BatmobileIntentsExtensionUI/IntentViewController.swift -------------------------------------------------------------------------------- /BatmobileIntentsExtensionUI/watman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/BatmobileIntentsExtensionUI/watman.jpg -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buglife/Batmobile/HEAD/README.md --------------------------------------------------------------------------------