├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── StubbedApp.js ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── glider │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── code-editor.js ├── draggable-view.js ├── index.js ├── ios ├── Glider-tvOS │ └── Info.plist ├── Glider-tvOSTests │ └── Info.plist ├── Glider.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Glider-tvOS.xcscheme │ │ └── Glider.xcscheme ├── Glider.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Glider │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── GliderTests │ ├── GliderTests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── logo.png ├── metro.config.js ├── old-app.js ├── package.json ├── status.js ├── stubbed.py ├── template.config.js ├── template ├── .buckconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── __tests__ │ └── App-test.tsx ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── glider │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Glider-tvOS │ │ └── Info.plist │ ├── Glider-tvOSTests │ │ └── Info.plist │ ├── Glider.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Glider-tvOS.xcscheme │ │ │ └── Glider.xcscheme │ ├── Glider │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── GliderTests │ │ ├── GliderTests.m │ │ └── Info.plist │ └── Podfile └── metro.config.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/App.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/README.md -------------------------------------------------------------------------------- /StubbedApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/StubbedApp.js -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/glider/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/java/com/glider/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/glider/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/java/com/glider/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/babel.config.js -------------------------------------------------------------------------------- /code-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/code-editor.js -------------------------------------------------------------------------------- /draggable-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/draggable-view.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/index.js -------------------------------------------------------------------------------- /ios/Glider-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/Glider-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/Glider.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Glider.xcodeproj/xcshareddata/xcschemes/Glider-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider.xcodeproj/xcshareddata/xcschemes/Glider-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/Glider.xcodeproj/xcshareddata/xcschemes/Glider.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider.xcodeproj/xcshareddata/xcschemes/Glider.xcscheme -------------------------------------------------------------------------------- /ios/Glider.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Glider.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Glider/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider/AppDelegate.h -------------------------------------------------------------------------------- /ios/Glider/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider/AppDelegate.m -------------------------------------------------------------------------------- /ios/Glider/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/Glider/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Glider/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Glider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider/Info.plist -------------------------------------------------------------------------------- /ios/Glider/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Glider/main.m -------------------------------------------------------------------------------- /ios/GliderTests/GliderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/GliderTests/GliderTests.m -------------------------------------------------------------------------------- /ios/GliderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/GliderTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/logo.png -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/metro.config.js -------------------------------------------------------------------------------- /old-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/old-app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/package.json -------------------------------------------------------------------------------- /status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/status.js -------------------------------------------------------------------------------- /stubbed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/stubbed.py -------------------------------------------------------------------------------- /template.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template.config.js -------------------------------------------------------------------------------- /template/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/.buckconfig -------------------------------------------------------------------------------- /template/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/.prettierrc.js -------------------------------------------------------------------------------- /template/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /template/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/App.tsx -------------------------------------------------------------------------------- /template/__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/__tests__/App-test.tsx -------------------------------------------------------------------------------- /template/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/BUCK -------------------------------------------------------------------------------- /template/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/build.gradle -------------------------------------------------------------------------------- /template/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/build_defs.bzl -------------------------------------------------------------------------------- /template/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /template/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /template/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /template/android/app/src/main/java/com/glider/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/java/com/glider/MainActivity.java -------------------------------------------------------------------------------- /template/android/app/src/main/java/com/glider/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/java/com/glider/MainApplication.java -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /template/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /template/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/build.gradle -------------------------------------------------------------------------------- /template/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/gradle.properties -------------------------------------------------------------------------------- /template/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /template/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /template/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/gradlew -------------------------------------------------------------------------------- /template/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/gradlew.bat -------------------------------------------------------------------------------- /template/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/android/settings.gradle -------------------------------------------------------------------------------- /template/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/app.json -------------------------------------------------------------------------------- /template/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/babel.config.js -------------------------------------------------------------------------------- /template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/index.js -------------------------------------------------------------------------------- /template/ios/Glider-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider-tvOS/Info.plist -------------------------------------------------------------------------------- /template/ios/Glider-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider-tvOSTests/Info.plist -------------------------------------------------------------------------------- /template/ios/Glider.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template/ios/Glider.xcodeproj/xcshareddata/xcschemes/Glider-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider.xcodeproj/xcshareddata/xcschemes/Glider-tvOS.xcscheme -------------------------------------------------------------------------------- /template/ios/Glider.xcodeproj/xcshareddata/xcschemes/Glider.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider.xcodeproj/xcshareddata/xcschemes/Glider.xcscheme -------------------------------------------------------------------------------- /template/ios/Glider/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider/AppDelegate.h -------------------------------------------------------------------------------- /template/ios/Glider/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider/AppDelegate.m -------------------------------------------------------------------------------- /template/ios/Glider/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /template/ios/Glider/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /template/ios/Glider/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /template/ios/Glider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider/Info.plist -------------------------------------------------------------------------------- /template/ios/Glider/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Glider/main.m -------------------------------------------------------------------------------- /template/ios/GliderTests/GliderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/GliderTests/GliderTests.m -------------------------------------------------------------------------------- /template/ios/GliderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/GliderTests/Info.plist -------------------------------------------------------------------------------- /template/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/ios/Podfile -------------------------------------------------------------------------------- /template/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/template/metro.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/glider/HEAD/yarn.lock --------------------------------------------------------------------------------