├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App ├── Components │ ├── Button.js │ ├── EULA.js │ ├── PropPicker.js │ └── TransformableImage.js ├── Containers │ ├── App.js │ ├── CameraScreen.js │ ├── HomeScreen.js │ ├── PhotoDetailScreen.js │ ├── PhotosScreen.js │ ├── RootScreen.js │ └── Styles │ │ ├── CameraScreenStyles.js │ │ ├── HomeScreenStyles.js │ │ ├── PhotoDetailScreenStyles.js │ │ └── RootScreenStyles.js ├── Images │ ├── Props │ │ ├── banner.png │ │ ├── banner@2x.png │ │ ├── banner@3x.png │ │ ├── beard.png │ │ ├── beard@2x.png │ │ ├── beard@3x.png │ │ ├── bunny.png │ │ ├── bunny@2x.png │ │ ├── bunny@3x.png │ │ ├── crown.png │ │ ├── crown@2x.png │ │ ├── crown@3x.png │ │ ├── face.png │ │ ├── face2.png │ │ ├── face2@2x.png │ │ ├── face2@3x.png │ │ ├── face@2x.png │ │ ├── face@3x.png │ │ ├── foam-finger.png │ │ ├── foam-finger@2x.png │ │ ├── foam-finger@3x.png │ │ ├── hat1.png │ │ ├── hat1@2x.png │ │ ├── hat1@3x.png │ │ ├── hat2.png │ │ ├── hat2@2x.png │ │ ├── hat2@3x.png │ │ ├── heart.png │ │ ├── heart@2x.png │ │ ├── heart@3x.png │ │ ├── horns.png │ │ ├── horns@2x.png │ │ ├── horns@3x.png │ │ ├── logo-sticker.png │ │ ├── logo-sticker@2x.png │ │ ├── logo-sticker@3x.png │ │ ├── pipe.png │ │ ├── pipe@2x.png │ │ ├── pipe@3x.png │ │ ├── pirate1.png │ │ ├── pirate1@2x.png │ │ ├── pirate1@3x.png │ │ ├── pirate2.png │ │ ├── pirate2@2x.png │ │ ├── pirate2@3x.png │ │ ├── react-native.png │ │ ├── react-native@2x.png │ │ ├── react-native@3x.png │ │ ├── rn-bubble.png │ │ ├── rn-bubble@2x.png │ │ ├── rn-bubble@3x.png │ │ ├── stars.png │ │ ├── stars@2x.png │ │ ├── stars@3x.png │ │ ├── t-shirt.png │ │ ├── t-shirt@2x.png │ │ ├── t-shirt@3x.png │ │ ├── witch.png │ │ ├── witch@2x.png │ │ └── witch@3x.png │ ├── chain-react-logo.png │ ├── chain-react-logo@2x.png │ ├── chain-react-logo@3x.png │ ├── portland.png │ ├── portland.svg │ ├── portland@2x.png │ └── portland@3x.png ├── Navigation │ └── AppNavigation.js ├── Services │ └── PhotoUpload.js └── Themes │ ├── ApplicationStyles.js │ ├── Colors.js │ ├── Fonts.js │ ├── Images.js │ ├── Metrics.js │ └── index.js ├── Matchfile ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── Gemfile ├── Gemfile.lock ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── echobind │ │ │ └── chainreactphotobomb │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-ldpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── fastlane │ ├── Appfile │ ├── Fastfile │ ├── Pluginfile │ ├── README.md │ ├── metadata │ │ └── android │ │ │ └── en-US │ │ │ ├── full_description.txt │ │ │ ├── images │ │ │ ├── featureGraphic.png │ │ │ ├── icon.png │ │ │ └── phoneScreenshots │ │ │ │ ├── Screenshot_20170629-074645.png │ │ │ │ └── Screenshot_20170629-075002.png │ │ │ ├── short_description.txt │ │ │ ├── title.txt │ │ │ └── video.txt │ └── report.xml ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── index.android.js ├── index.ios.js ├── ios ├── ChainReactPhotobomb-tvOS │ └── Info.plist ├── ChainReactPhotobomb-tvOSTests │ └── Info.plist ├── ChainReactPhotobomb.app.dSYM.zip ├── ChainReactPhotobomb.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ChainReactPhotobomb-tvOS.xcscheme │ │ └── ChainReactPhotobomb.xcscheme ├── ChainReactPhotobomb │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-20@1x.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29@1x.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40@1x.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-50@1x.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-57@1x.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72@1x.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76@1x.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-Landscape-736h@3x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Portrait-736h@3x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ └── Default@2x.png │ ├── Info.plist │ └── main.m ├── ChainReactPhotobombTests │ ├── ChainReactPhotobombTests.m │ └── Info.plist ├── Gemfile ├── Gemfile.lock └── fastlane │ ├── Appfile │ ├── Deliverfile │ ├── Fastfile │ ├── Pluginfile │ ├── README.md │ ├── metadata │ ├── copyright.txt │ ├── en-US │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── review_information │ │ ├── demo_password.txt │ │ ├── demo_user.txt │ │ ├── email_address.txt │ │ ├── first_name.txt │ │ ├── last_name.txt │ │ ├── notes.txt │ │ └── phone_number.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ ├── secondary_second_sub_category.txt │ └── trade_representative_contact_information │ │ ├── address_line1.txt │ │ ├── city_name.txt │ │ ├── country.txt │ │ ├── is_displayed_on_app_store.txt │ │ ├── postal_code.txt │ │ ├── state.txt │ │ └── trade_name.txt │ ├── report.xml │ └── screenshots │ └── README.txt ├── jsconfig.json ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App/Components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Components/Button.js -------------------------------------------------------------------------------- /App/Components/EULA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Components/EULA.js -------------------------------------------------------------------------------- /App/Components/PropPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Components/PropPicker.js -------------------------------------------------------------------------------- /App/Components/TransformableImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Components/TransformableImage.js -------------------------------------------------------------------------------- /App/Containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Containers/App.js -------------------------------------------------------------------------------- /App/Containers/CameraScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Containers/CameraScreen.js -------------------------------------------------------------------------------- /App/Containers/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Containers/HomeScreen.js -------------------------------------------------------------------------------- /App/Containers/PhotoDetailScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Containers/PhotoDetailScreen.js -------------------------------------------------------------------------------- /App/Containers/PhotosScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Containers/PhotosScreen.js -------------------------------------------------------------------------------- /App/Containers/RootScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Containers/RootScreen.js -------------------------------------------------------------------------------- /App/Containers/Styles/CameraScreenStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Containers/Styles/CameraScreenStyles.js -------------------------------------------------------------------------------- /App/Containers/Styles/HomeScreenStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Containers/Styles/HomeScreenStyles.js -------------------------------------------------------------------------------- /App/Containers/Styles/PhotoDetailScreenStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Containers/Styles/PhotoDetailScreenStyles.js -------------------------------------------------------------------------------- /App/Containers/Styles/RootScreenStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Containers/Styles/RootScreenStyles.js -------------------------------------------------------------------------------- /App/Images/Props/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/banner.png -------------------------------------------------------------------------------- /App/Images/Props/banner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/banner@2x.png -------------------------------------------------------------------------------- /App/Images/Props/banner@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/banner@3x.png -------------------------------------------------------------------------------- /App/Images/Props/beard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/beard.png -------------------------------------------------------------------------------- /App/Images/Props/beard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/beard@2x.png -------------------------------------------------------------------------------- /App/Images/Props/beard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/beard@3x.png -------------------------------------------------------------------------------- /App/Images/Props/bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/bunny.png -------------------------------------------------------------------------------- /App/Images/Props/bunny@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/bunny@2x.png -------------------------------------------------------------------------------- /App/Images/Props/bunny@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/bunny@3x.png -------------------------------------------------------------------------------- /App/Images/Props/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/crown.png -------------------------------------------------------------------------------- /App/Images/Props/crown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/crown@2x.png -------------------------------------------------------------------------------- /App/Images/Props/crown@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/crown@3x.png -------------------------------------------------------------------------------- /App/Images/Props/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/face.png -------------------------------------------------------------------------------- /App/Images/Props/face2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/face2.png -------------------------------------------------------------------------------- /App/Images/Props/face2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/face2@2x.png -------------------------------------------------------------------------------- /App/Images/Props/face2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/face2@3x.png -------------------------------------------------------------------------------- /App/Images/Props/face@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/face@2x.png -------------------------------------------------------------------------------- /App/Images/Props/face@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/face@3x.png -------------------------------------------------------------------------------- /App/Images/Props/foam-finger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/foam-finger.png -------------------------------------------------------------------------------- /App/Images/Props/foam-finger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/foam-finger@2x.png -------------------------------------------------------------------------------- /App/Images/Props/foam-finger@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/foam-finger@3x.png -------------------------------------------------------------------------------- /App/Images/Props/hat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/hat1.png -------------------------------------------------------------------------------- /App/Images/Props/hat1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/hat1@2x.png -------------------------------------------------------------------------------- /App/Images/Props/hat1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/hat1@3x.png -------------------------------------------------------------------------------- /App/Images/Props/hat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/hat2.png -------------------------------------------------------------------------------- /App/Images/Props/hat2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/hat2@2x.png -------------------------------------------------------------------------------- /App/Images/Props/hat2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/hat2@3x.png -------------------------------------------------------------------------------- /App/Images/Props/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/heart.png -------------------------------------------------------------------------------- /App/Images/Props/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/heart@2x.png -------------------------------------------------------------------------------- /App/Images/Props/heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/heart@3x.png -------------------------------------------------------------------------------- /App/Images/Props/horns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/horns.png -------------------------------------------------------------------------------- /App/Images/Props/horns@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/horns@2x.png -------------------------------------------------------------------------------- /App/Images/Props/horns@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/horns@3x.png -------------------------------------------------------------------------------- /App/Images/Props/logo-sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/logo-sticker.png -------------------------------------------------------------------------------- /App/Images/Props/logo-sticker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/logo-sticker@2x.png -------------------------------------------------------------------------------- /App/Images/Props/logo-sticker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/logo-sticker@3x.png -------------------------------------------------------------------------------- /App/Images/Props/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/pipe.png -------------------------------------------------------------------------------- /App/Images/Props/pipe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/pipe@2x.png -------------------------------------------------------------------------------- /App/Images/Props/pipe@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/pipe@3x.png -------------------------------------------------------------------------------- /App/Images/Props/pirate1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/pirate1.png -------------------------------------------------------------------------------- /App/Images/Props/pirate1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/pirate1@2x.png -------------------------------------------------------------------------------- /App/Images/Props/pirate1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/pirate1@3x.png -------------------------------------------------------------------------------- /App/Images/Props/pirate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/pirate2.png -------------------------------------------------------------------------------- /App/Images/Props/pirate2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/pirate2@2x.png -------------------------------------------------------------------------------- /App/Images/Props/pirate2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/pirate2@3x.png -------------------------------------------------------------------------------- /App/Images/Props/react-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/react-native.png -------------------------------------------------------------------------------- /App/Images/Props/react-native@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/react-native@2x.png -------------------------------------------------------------------------------- /App/Images/Props/react-native@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/react-native@3x.png -------------------------------------------------------------------------------- /App/Images/Props/rn-bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/rn-bubble.png -------------------------------------------------------------------------------- /App/Images/Props/rn-bubble@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/rn-bubble@2x.png -------------------------------------------------------------------------------- /App/Images/Props/rn-bubble@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/rn-bubble@3x.png -------------------------------------------------------------------------------- /App/Images/Props/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/stars.png -------------------------------------------------------------------------------- /App/Images/Props/stars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/stars@2x.png -------------------------------------------------------------------------------- /App/Images/Props/stars@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/stars@3x.png -------------------------------------------------------------------------------- /App/Images/Props/t-shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/t-shirt.png -------------------------------------------------------------------------------- /App/Images/Props/t-shirt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/t-shirt@2x.png -------------------------------------------------------------------------------- /App/Images/Props/t-shirt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/t-shirt@3x.png -------------------------------------------------------------------------------- /App/Images/Props/witch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/witch.png -------------------------------------------------------------------------------- /App/Images/Props/witch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/witch@2x.png -------------------------------------------------------------------------------- /App/Images/Props/witch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/Props/witch@3x.png -------------------------------------------------------------------------------- /App/Images/chain-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/chain-react-logo.png -------------------------------------------------------------------------------- /App/Images/chain-react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/chain-react-logo@2x.png -------------------------------------------------------------------------------- /App/Images/chain-react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/chain-react-logo@3x.png -------------------------------------------------------------------------------- /App/Images/portland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/portland.png -------------------------------------------------------------------------------- /App/Images/portland.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/portland.svg -------------------------------------------------------------------------------- /App/Images/portland@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/portland@2x.png -------------------------------------------------------------------------------- /App/Images/portland@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Images/portland@3x.png -------------------------------------------------------------------------------- /App/Navigation/AppNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Navigation/AppNavigation.js -------------------------------------------------------------------------------- /App/Services/PhotoUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Services/PhotoUpload.js -------------------------------------------------------------------------------- /App/Themes/ApplicationStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Themes/ApplicationStyles.js -------------------------------------------------------------------------------- /App/Themes/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Themes/Colors.js -------------------------------------------------------------------------------- /App/Themes/Fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Themes/Fonts.js -------------------------------------------------------------------------------- /App/Themes/Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Themes/Images.js -------------------------------------------------------------------------------- /App/Themes/Metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Themes/Metrics.js -------------------------------------------------------------------------------- /App/Themes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/App/Themes/index.js -------------------------------------------------------------------------------- /Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/Matchfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/Gemfile -------------------------------------------------------------------------------- /android/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/Gemfile.lock -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/echobind/chainreactphotobomb/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/java/com/echobind/chainreactphotobomb/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/echobind/chainreactphotobomb/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/java/com/echobind/chainreactphotobomb/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/fastlane/Appfile -------------------------------------------------------------------------------- /android/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/fastlane/Fastfile -------------------------------------------------------------------------------- /android/fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/fastlane/Pluginfile -------------------------------------------------------------------------------- /android/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/fastlane/README.md -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_20170629-074645.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_20170629-074645.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_20170629-075002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_20170629-075002.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | A real-time photostream for Chain React 2017! -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | com.echobind.chainreactphotobomb -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/fastlane/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/fastlane/report.xml -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/app.json -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb.app.dSYM.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb.app.dSYM.zip -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb.xcodeproj/xcshareddata/xcschemes/ChainReactPhotobomb-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb.xcodeproj/xcshareddata/xcschemes/ChainReactPhotobomb-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb.xcodeproj/xcshareddata/xcschemes/ChainReactPhotobomb.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb.xcodeproj/xcshareddata/xcschemes/ChainReactPhotobomb.xcscheme -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/AppDelegate.h -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/AppDelegate.m -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-20@1x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-29@1x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-40@1x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-50@1x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-57@1x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-72@1x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-76@1x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Landscape-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Landscape-736h@3x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Portrait-736h@3x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/Info.plist -------------------------------------------------------------------------------- /ios/ChainReactPhotobomb/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobomb/main.m -------------------------------------------------------------------------------- /ios/ChainReactPhotobombTests/ChainReactPhotobombTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobombTests/ChainReactPhotobombTests.m -------------------------------------------------------------------------------- /ios/ChainReactPhotobombTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/ChainReactPhotobombTests/Info.plist -------------------------------------------------------------------------------- /ios/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/Gemfile -------------------------------------------------------------------------------- /ios/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/Gemfile.lock -------------------------------------------------------------------------------- /ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/fastlane/Appfile -------------------------------------------------------------------------------- /ios/fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/fastlane/Deliverfile -------------------------------------------------------------------------------- /ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /ios/fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/fastlane/Pluginfile -------------------------------------------------------------------------------- /ios/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/fastlane/README.md -------------------------------------------------------------------------------- /ios/fastlane/metadata/copyright.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/en-US/description.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/en-US/keywords.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/en-US/name.txt: -------------------------------------------------------------------------------- 1 | Chain React Photobomb 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | http://www.chainreactphotobomb.com/privacy 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/en-US/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/en-US/release_notes.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | Real-time photo fun 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | MZGenre.Photography 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/review_information/demo_password.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/review_information/demo_user.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/review_information/email_address.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/review_information/first_name.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/review_information/last_name.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/review_information/notes.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/review_information/phone_number.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/trade_representative_contact_information/address_line1.txt: -------------------------------------------------------------------------------- 1 | 179 Great Rd Ste 240 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/trade_representative_contact_information/city_name.txt: -------------------------------------------------------------------------------- 1 | Stow 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/trade_representative_contact_information/country.txt: -------------------------------------------------------------------------------- 1 | United States 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/trade_representative_contact_information/is_displayed_on_app_store.txt: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/trade_representative_contact_information/postal_code.txt: -------------------------------------------------------------------------------- 1 | 01775 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/trade_representative_contact_information/state.txt: -------------------------------------------------------------------------------- 1 | Massachusetts 2 | -------------------------------------------------------------------------------- /ios/fastlane/metadata/trade_representative_contact_information/trade_name.txt: -------------------------------------------------------------------------------- 1 | Echobind, LLC 2 | -------------------------------------------------------------------------------- /ios/fastlane/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/fastlane/report.xml -------------------------------------------------------------------------------- /ios/fastlane/screenshots/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/ios/fastlane/screenshots/README.txt -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cball/ChainReactPhotobomb/HEAD/yarn.lock --------------------------------------------------------------------------------