├── Chapter01 ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── Roboto.ttf │ │ │ │ ├── Roboto_medium.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ ├── Zocial.ttf │ │ │ │ └── rubicon-icon-font.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── grocerieslist │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.js ├── ios │ ├── GroceriesList-tvOS │ │ └── Info.plist │ ├── GroceriesList-tvOSTests │ │ └── Info.plist │ ├── GroceriesList.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── GroceriesList-tvOS.xcscheme │ │ │ └── GroceriesList.xcscheme │ ├── GroceriesList │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── GroceriesListTests │ │ ├── GroceriesListTests.m │ │ └── Info.plist └── src │ ├── main.js │ └── screens │ ├── AddProduct.js │ └── ShoppingList.js ├── Chapter02 ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── Roboto.ttf │ │ │ │ ├── Roboto_medium.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ ├── Zocial.ttf │ │ │ │ └── rubicon-icon-font.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── rssreader │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.js ├── ios │ ├── RSSReader-tvOS │ │ └── Info.plist │ ├── RSSReader-tvOSTests │ │ └── Info.plist │ ├── RSSReader.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── RSSReader-tvOS.xcscheme │ │ │ └── RSSReader.xcscheme │ ├── RSSReader │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── RSSReaderTests │ │ ├── Info.plist │ │ └── RSSReaderTests.m ├── package-lock.json ├── package.json ├── src │ ├── actions.js │ ├── main.js │ ├── screens │ │ ├── AddFeed.js │ │ ├── EntryDetail.js │ │ ├── FeedDetail.js │ │ └── FeedsList.js │ └── store.js └── yarn.lock ├── Chapter03 ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ └── openfont.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── carbooking │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── fonts │ └── openfont.ttf ├── img │ ├── car.png │ ├── class.png │ ├── classBar.png │ └── loading.png ├── index.js ├── ios │ ├── carBooking-tvOS │ │ └── Info.plist │ ├── carBooking-tvOSTests │ │ └── Info.plist │ ├── carBooking.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── carBooking-tvOS.xcscheme │ │ │ └── carBooking.xcscheme │ ├── carBooking │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── carBookingTests │ │ ├── Info.plist │ │ └── carBookingTests.m ├── package-lock.json ├── package.json ├── src │ ├── components │ │ ├── ClassSelection.js │ │ ├── ConfirmationModal.js │ │ ├── LocationPin.js │ │ └── LocationSearch.js │ └── main.js └── yarn.lock ├── Chapter04 ├── .DS_Store ├── app.json ├── img │ └── logo.png ├── index.android.js ├── index.ios.js ├── package.json └── src │ ├── .DS_Store │ ├── ._.DS_Store │ ├── ._main.js │ ├── actions │ └── index.js │ ├── api │ └── index.js │ ├── components │ ├── ActivityIndicator.js │ ├── Gallery.js │ ├── Header.js │ └── ImagesGrid.js │ ├── main.js │ ├── reducers │ └── images.js │ └── screens │ ├── Camera.js │ ├── ImagesList.js │ └── MyImages.js ├── Chapter05 ├── .DS_Store ├── app.json ├── img │ ├── indicator.jpg │ ├── string.jpg │ └── tuner.jpg ├── index.android.js ├── index.ios.js ├── ios │ ├── .DS_Store │ ├── FrequencyDetector.h │ ├── FrequencyDetector.m │ ├── SCListener │ │ ├── README.markdown │ │ ├── SCListener.h │ │ ├── SCListener.m │ │ ├── _kiss_fft_guts.h │ │ ├── kiss_fft.c │ │ ├── kiss_fft.h │ │ ├── kiss_fftr.c │ │ └── kiss_fftr.h │ ├── guitarTuner-tvOS │ │ └── Info.plist │ ├── guitarTuner-tvOSTests │ │ └── Info.plist │ ├── guitarTuner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── emiliorodriguez.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ ├── guitarTuner-tvOS.xcscheme │ │ │ │ └── guitarTuner.xcscheme │ │ └── xcuserdata │ │ │ └── emiliorodriguez.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── guitarTuner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── .DS_Store │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── .DS_Store │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-60@2x-1.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-Notification@3x.png │ │ │ │ ├── Icon-Small-40.png │ │ │ │ ├── Icon-Small-40@2x.png │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ └── Icon-Small@3x.png │ │ │ ├── Contents.json │ │ │ └── icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon.png │ │ ├── Info.plist │ │ └── main.m │ └── guitarTunerTests │ │ ├── Info.plist │ │ └── guitarTunerTests.m ├── package.json └── src │ ├── components │ ├── Strings.js │ └── Tuner.js │ └── utils │ └── index.js ├── Chapter06 ├── .DS_Store ├── android │ ├── 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 │ │ │ │ └── messagingapp │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── 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 │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── Firebase │ │ │ ├── Core │ │ │ │ └── Sources │ │ │ │ │ ├── Firebase.h │ │ │ │ │ └── module.modulemap │ │ │ └── README.md │ │ ├── FirebaseAnalytics │ │ │ └── Frameworks │ │ │ │ └── FirebaseAnalytics.framework │ │ │ │ ├── FirebaseAnalytics │ │ │ │ ├── Headers │ │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ │ ├── FIRAnalytics.h │ │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ │ ├── FIRAnalyticsSwiftNameSupport.h │ │ │ │ ├── FIRApp.h │ │ │ │ ├── FIRConfiguration.h │ │ │ │ ├── FIREventNames.h │ │ │ │ ├── FIROptions.h │ │ │ │ ├── FIRParameterNames.h │ │ │ │ ├── FIRUserPropertyNames.h │ │ │ │ └── FirebaseAnalytics.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── FirebaseCore │ │ │ └── Frameworks │ │ │ │ ├── FirebaseCore.framework │ │ │ │ ├── FirebaseCore │ │ │ │ ├── Headers │ │ │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ │ │ ├── FIRApp.h │ │ │ │ │ ├── FIRConfiguration.h │ │ │ │ │ ├── FIRCoreSwiftNameSupport.h │ │ │ │ │ ├── FIRLoggerLevel.h │ │ │ │ │ ├── FIROptions.h │ │ │ │ │ └── FirebaseCore.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ ├── FirebaseCoreDiagnostics.framework │ │ │ │ ├── FirebaseCoreDiagnostics │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── FirebaseNanoPB.framework │ │ │ │ └── FirebaseNanoPB │ │ ├── FirebaseInstanceID │ │ │ ├── CHANGELOG.md │ │ │ ├── Frameworks │ │ │ │ └── FirebaseInstanceID.framework │ │ │ │ │ ├── FirebaseInstanceID │ │ │ │ │ ├── Headers │ │ │ │ │ ├── FIRInstanceID.h │ │ │ │ │ └── FirebaseInstanceID.h │ │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ └── README.md │ │ ├── FirebaseMessaging │ │ │ └── Frameworks │ │ │ │ └── FirebaseMessaging.framework │ │ │ │ ├── FirebaseMessaging │ │ │ │ ├── Headers │ │ │ │ ├── FIRMessaging.h │ │ │ │ └── FirebaseMessaging.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── GoogleToolboxForMac │ │ │ ├── Foundation │ │ │ │ ├── GTMLogger.h │ │ │ │ ├── GTMLogger.m │ │ │ │ ├── GTMNSData+zlib.h │ │ │ │ └── GTMNSData+zlib.m │ │ │ ├── GTMDefines.h │ │ │ ├── LICENSE │ │ │ └── README.md │ │ ├── Headers │ │ │ ├── Private │ │ │ │ ├── Firebase │ │ │ │ │ └── Firebase.h │ │ │ │ ├── GoogleToolboxForMac │ │ │ │ │ ├── GTMDefines.h │ │ │ │ │ ├── GTMLogger.h │ │ │ │ │ └── GTMNSData+zlib.h │ │ │ │ ├── Protobuf │ │ │ │ │ ├── Any.pbobjc.h │ │ │ │ │ ├── Api.pbobjc.h │ │ │ │ │ ├── Duration.pbobjc.h │ │ │ │ │ ├── Empty.pbobjc.h │ │ │ │ │ ├── FieldMask.pbobjc.h │ │ │ │ │ ├── GPBArray.h │ │ │ │ │ ├── GPBArray_PackagePrivate.h │ │ │ │ │ ├── GPBBootstrap.h │ │ │ │ │ ├── GPBCodedInputStream.h │ │ │ │ │ ├── GPBCodedInputStream_PackagePrivate.h │ │ │ │ │ ├── GPBCodedOutputStream.h │ │ │ │ │ ├── GPBCodedOutputStream_PackagePrivate.h │ │ │ │ │ ├── GPBDescriptor.h │ │ │ │ │ ├── GPBDescriptor_PackagePrivate.h │ │ │ │ │ ├── GPBDictionary.h │ │ │ │ │ ├── GPBDictionary_PackagePrivate.h │ │ │ │ │ ├── GPBExtensionInternals.h │ │ │ │ │ ├── GPBExtensionRegistry.h │ │ │ │ │ ├── GPBMessage.h │ │ │ │ │ ├── GPBMessage_PackagePrivate.h │ │ │ │ │ ├── GPBProtocolBuffers.h │ │ │ │ │ ├── GPBProtocolBuffers_RuntimeSupport.h │ │ │ │ │ ├── GPBRootObject.h │ │ │ │ │ ├── GPBRootObject_PackagePrivate.h │ │ │ │ │ ├── GPBRuntimeTypes.h │ │ │ │ │ ├── GPBUnknownField.h │ │ │ │ │ ├── GPBUnknownFieldSet.h │ │ │ │ │ ├── GPBUnknownFieldSet_PackagePrivate.h │ │ │ │ │ ├── GPBUnknownField_PackagePrivate.h │ │ │ │ │ ├── GPBUtilities.h │ │ │ │ │ ├── GPBUtilities_PackagePrivate.h │ │ │ │ │ ├── GPBWellKnownTypes.h │ │ │ │ │ ├── GPBWireFormat.h │ │ │ │ │ ├── SourceContext.pbobjc.h │ │ │ │ │ ├── Struct.pbobjc.h │ │ │ │ │ ├── Timestamp.pbobjc.h │ │ │ │ │ ├── Type.pbobjc.h │ │ │ │ │ └── Wrappers.pbobjc.h │ │ │ │ └── nanopb │ │ │ │ │ ├── pb.h │ │ │ │ │ ├── pb_common.h │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ └── pb_encode.h │ │ │ └── Public │ │ │ │ ├── Firebase │ │ │ │ └── Firebase.h │ │ │ │ ├── FirebaseAnalytics │ │ │ │ └── FirebaseAnalytics │ │ │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ │ │ ├── FIRAnalytics.h │ │ │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ │ │ ├── FIRAnalyticsSwiftNameSupport.h │ │ │ │ │ ├── FIRApp.h │ │ │ │ │ ├── FIRConfiguration.h │ │ │ │ │ ├── FIREventNames.h │ │ │ │ │ ├── FIROptions.h │ │ │ │ │ ├── FIRParameterNames.h │ │ │ │ │ ├── FIRUserPropertyNames.h │ │ │ │ │ └── FirebaseAnalytics.h │ │ │ │ ├── FirebaseCore │ │ │ │ └── FirebaseCore │ │ │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ │ │ ├── FIRApp.h │ │ │ │ │ ├── FIRConfiguration.h │ │ │ │ │ ├── FIRCoreSwiftNameSupport.h │ │ │ │ │ ├── FIRLoggerLevel.h │ │ │ │ │ ├── FIROptions.h │ │ │ │ │ └── FirebaseCore.h │ │ │ │ ├── FirebaseInstanceID │ │ │ │ └── FirebaseInstanceID │ │ │ │ │ ├── FIRInstanceID.h │ │ │ │ │ └── FirebaseInstanceID.h │ │ │ │ ├── FirebaseMessaging │ │ │ │ └── FirebaseMessaging │ │ │ │ │ ├── FIRMessaging.h │ │ │ │ │ └── FirebaseMessaging.h │ │ │ │ ├── GoogleToolboxForMac │ │ │ │ ├── GTMDefines.h │ │ │ │ ├── GTMLogger.h │ │ │ │ └── GTMNSData+zlib.h │ │ │ │ ├── Protobuf │ │ │ │ ├── Any.pbobjc.h │ │ │ │ ├── Api.pbobjc.h │ │ │ │ ├── Duration.pbobjc.h │ │ │ │ ├── Empty.pbobjc.h │ │ │ │ ├── FieldMask.pbobjc.h │ │ │ │ ├── GPBArray.h │ │ │ │ ├── GPBArray_PackagePrivate.h │ │ │ │ ├── GPBBootstrap.h │ │ │ │ ├── GPBCodedInputStream.h │ │ │ │ ├── GPBCodedInputStream_PackagePrivate.h │ │ │ │ ├── GPBCodedOutputStream.h │ │ │ │ ├── GPBCodedOutputStream_PackagePrivate.h │ │ │ │ ├── GPBDescriptor.h │ │ │ │ ├── GPBDescriptor_PackagePrivate.h │ │ │ │ ├── GPBDictionary.h │ │ │ │ ├── GPBDictionary_PackagePrivate.h │ │ │ │ ├── GPBExtensionInternals.h │ │ │ │ ├── GPBExtensionRegistry.h │ │ │ │ ├── GPBMessage.h │ │ │ │ ├── GPBMessage_PackagePrivate.h │ │ │ │ ├── GPBProtocolBuffers.h │ │ │ │ ├── GPBProtocolBuffers_RuntimeSupport.h │ │ │ │ ├── GPBRootObject.h │ │ │ │ ├── GPBRootObject_PackagePrivate.h │ │ │ │ ├── GPBRuntimeTypes.h │ │ │ │ ├── GPBUnknownField.h │ │ │ │ ├── GPBUnknownFieldSet.h │ │ │ │ ├── GPBUnknownFieldSet_PackagePrivate.h │ │ │ │ ├── GPBUnknownField_PackagePrivate.h │ │ │ │ ├── GPBUtilities.h │ │ │ │ ├── GPBUtilities_PackagePrivate.h │ │ │ │ ├── GPBWellKnownTypes.h │ │ │ │ ├── GPBWireFormat.h │ │ │ │ ├── SourceContext.pbobjc.h │ │ │ │ ├── Struct.pbobjc.h │ │ │ │ ├── Timestamp.pbobjc.h │ │ │ │ ├── Type.pbobjc.h │ │ │ │ └── Wrappers.pbobjc.h │ │ │ │ └── nanopb │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ └── pb_encode.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Protobuf │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── objectivec │ │ │ │ ├── GPBArray.h │ │ │ │ ├── GPBArray.m │ │ │ │ ├── GPBArray_PackagePrivate.h │ │ │ │ ├── GPBBootstrap.h │ │ │ │ ├── GPBCodedInputStream.h │ │ │ │ ├── GPBCodedInputStream.m │ │ │ │ ├── GPBCodedInputStream_PackagePrivate.h │ │ │ │ ├── GPBCodedOutputStream.h │ │ │ │ ├── GPBCodedOutputStream.m │ │ │ │ ├── GPBCodedOutputStream_PackagePrivate.h │ │ │ │ ├── GPBDescriptor.h │ │ │ │ ├── GPBDescriptor.m │ │ │ │ ├── GPBDescriptor_PackagePrivate.h │ │ │ │ ├── GPBDictionary.h │ │ │ │ ├── GPBDictionary.m │ │ │ │ ├── GPBDictionary_PackagePrivate.h │ │ │ │ ├── GPBExtensionInternals.h │ │ │ │ ├── GPBExtensionInternals.m │ │ │ │ ├── GPBExtensionRegistry.h │ │ │ │ ├── GPBExtensionRegistry.m │ │ │ │ ├── GPBMessage.h │ │ │ │ ├── GPBMessage.m │ │ │ │ ├── GPBMessage_PackagePrivate.h │ │ │ │ ├── GPBProtocolBuffers.h │ │ │ │ ├── GPBProtocolBuffers_RuntimeSupport.h │ │ │ │ ├── GPBRootObject.h │ │ │ │ ├── GPBRootObject.m │ │ │ │ ├── GPBRootObject_PackagePrivate.h │ │ │ │ ├── GPBRuntimeTypes.h │ │ │ │ ├── GPBUnknownField.h │ │ │ │ ├── GPBUnknownField.m │ │ │ │ ├── GPBUnknownFieldSet.h │ │ │ │ ├── GPBUnknownFieldSet.m │ │ │ │ ├── GPBUnknownFieldSet_PackagePrivate.h │ │ │ │ ├── GPBUnknownField_PackagePrivate.h │ │ │ │ ├── GPBUtilities.h │ │ │ │ ├── GPBUtilities.m │ │ │ │ ├── GPBUtilities_PackagePrivate.h │ │ │ │ ├── GPBWellKnownTypes.h │ │ │ │ ├── GPBWellKnownTypes.m │ │ │ │ ├── GPBWireFormat.h │ │ │ │ ├── GPBWireFormat.m │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── Any.pbobjc.h │ │ │ │ ├── Any.pbobjc.m │ │ │ │ ├── Api.pbobjc.h │ │ │ │ ├── Api.pbobjc.m │ │ │ │ ├── Duration.pbobjc.h │ │ │ │ ├── Duration.pbobjc.m │ │ │ │ ├── Empty.pbobjc.h │ │ │ │ ├── Empty.pbobjc.m │ │ │ │ ├── FieldMask.pbobjc.h │ │ │ │ ├── FieldMask.pbobjc.m │ │ │ │ ├── SourceContext.pbobjc.h │ │ │ │ ├── SourceContext.pbobjc.m │ │ │ │ ├── Struct.pbobjc.h │ │ │ │ ├── Struct.pbobjc.m │ │ │ │ ├── Timestamp.pbobjc.h │ │ │ │ ├── Timestamp.pbobjc.m │ │ │ │ ├── Type.pbobjc.h │ │ │ │ ├── Type.pbobjc.m │ │ │ │ ├── Wrappers.pbobjc.h │ │ │ │ └── Wrappers.pbobjc.m │ │ ├── Target Support Files │ │ │ ├── GoogleToolboxForMac │ │ │ │ ├── GoogleToolboxForMac-dummy.m │ │ │ │ ├── GoogleToolboxForMac-prefix.pch │ │ │ │ └── GoogleToolboxForMac.xcconfig │ │ │ ├── Pods-messagingApp-tvOSTests │ │ │ │ ├── Pods-messagingApp-tvOSTests-acknowledgements.markdown │ │ │ │ ├── Pods-messagingApp-tvOSTests-acknowledgements.plist │ │ │ │ ├── Pods-messagingApp-tvOSTests-dummy.m │ │ │ │ ├── Pods-messagingApp-tvOSTests-frameworks.sh │ │ │ │ ├── Pods-messagingApp-tvOSTests-resources.sh │ │ │ │ ├── Pods-messagingApp-tvOSTests.debug.xcconfig │ │ │ │ └── Pods-messagingApp-tvOSTests.release.xcconfig │ │ │ ├── Pods-messagingApp │ │ │ │ ├── Pods-messagingApp-acknowledgements.markdown │ │ │ │ ├── Pods-messagingApp-acknowledgements.plist │ │ │ │ ├── Pods-messagingApp-dummy.m │ │ │ │ ├── Pods-messagingApp-frameworks.sh │ │ │ │ ├── Pods-messagingApp-resources.sh │ │ │ │ ├── Pods-messagingApp.debug.xcconfig │ │ │ │ └── Pods-messagingApp.release.xcconfig │ │ │ ├── Pods-messagingAppTests │ │ │ │ ├── Pods-messagingAppTests-acknowledgements.markdown │ │ │ │ ├── Pods-messagingAppTests-acknowledgements.plist │ │ │ │ ├── Pods-messagingAppTests-dummy.m │ │ │ │ ├── Pods-messagingAppTests-frameworks.sh │ │ │ │ ├── Pods-messagingAppTests-resources.sh │ │ │ │ ├── Pods-messagingAppTests.debug.xcconfig │ │ │ │ └── Pods-messagingAppTests.release.xcconfig │ │ │ ├── Protobuf │ │ │ │ ├── Protobuf-dummy.m │ │ │ │ ├── Protobuf-prefix.pch │ │ │ │ └── Protobuf.xcconfig │ │ │ └── nanopb │ │ │ │ ├── nanopb-dummy.m │ │ │ │ ├── nanopb-prefix.pch │ │ │ │ └── nanopb.xcconfig │ │ └── nanopb │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── pb.h │ │ │ ├── pb_common.c │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.c │ │ │ ├── pb_decode.h │ │ │ ├── pb_encode.c │ │ │ └── pb_encode.h │ ├── messagingApp-tvOS │ │ └── Info.plist │ ├── messagingApp-tvOSTests │ │ └── Info.plist │ ├── messagingApp.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── messagingApp-tvOS.xcscheme │ │ │ └── messagingApp.xcscheme │ ├── messagingApp.xcworkspace │ │ └── contents.xcworkspacedata │ ├── messagingApp │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── GoogleService-Info.plist │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── main.m │ │ └── messagingApp.entitlements │ └── messagingAppTests │ │ ├── Info.plist │ │ └── messagingAppTests.m ├── package-lock.json ├── package.json └── src │ ├── components │ ├── ListItem.js │ ├── LoginForm.js │ └── RegistrationForm.js │ ├── firebase.js │ ├── main.js │ ├── notifications.js │ ├── screens │ ├── Chat.js │ ├── Chats.js │ ├── Login.js │ ├── Profile.js │ └── Search.js │ └── stores │ ├── chats.js │ ├── index.js │ └── users.js ├── Chapter07 ├── .DS_Store ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── birdgame │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── images │ ├── .DS_Store │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── bg.png │ ├── game-over.png │ ├── ground.png │ ├── logo.png │ ├── parrot1.png │ ├── parrot2.png │ ├── reset.png │ ├── rock-down.png │ ├── rock-up.png │ └── tap.png ├── index.android.js ├── index.ios.js ├── ios │ ├── .DS_Store │ ├── birdGame-tvOS │ │ └── Info.plist │ ├── birdGame-tvOSTests │ │ └── Info.plist │ ├── birdGame.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── emilioicai.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ ├── birdGame-tvOS.xcscheme │ │ │ │ └── birdGame.xcscheme │ │ └── xcuserdata │ │ │ └── emilioicai.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── birdGame │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── birdGameTests │ │ ├── Info.plist │ │ └── birdGameTests.m ├── package-lock.json ├── package.json ├── sounds │ └── coin.wav └── src │ ├── actions │ └── index.js │ ├── components │ ├── GameContainer.js │ ├── GameOver.js │ ├── Ground.js │ ├── Parrot.js │ ├── RockDown.js │ ├── RockUp.js │ ├── Score.js │ ├── Start.js │ └── StartAgain.js │ ├── constants.js │ ├── main.js │ ├── reducers │ └── game.js │ └── sprites.js ├── Chapter08 ├── .DS_Store ├── __tests__ │ ├── index.android.js │ └── index.ios.js ├── android │ ├── .DS_Store │ ├── .gradle │ │ ├── .DS_Store │ │ └── 2.14.1 │ │ │ ├── .DS_Store │ │ │ ├── taskArtifacts │ │ │ ├── cache.properties │ │ │ ├── cache.properties.lock │ │ │ ├── fileHashes.bin │ │ │ ├── fileSnapshots.bin │ │ │ ├── fileSnapshotsToTreeSnapshotsIndex.bin │ │ │ └── taskArtifacts.bin │ │ │ └── tasks │ │ │ ├── .DS_Store │ │ │ └── _app_compileDebugJavaWithJavac │ │ │ ├── .DS_Store │ │ │ ├── localClassSetAnalysis │ │ │ ├── localClassSetAnalysis.bin │ │ │ └── localClassSetAnalysis.lock │ │ │ └── localJarClasspathSnapshot │ │ │ ├── localJarClasspathSnapshot.bin │ │ │ └── localJarClasspathSnapshot.lock │ ├── app │ │ ├── .DS_Store │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── .DS_Store │ │ │ └── main │ │ │ ├── .DS_Store │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ ├── .DS_Store │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── Roboto.ttf │ │ │ │ ├── Roboto_medium.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ ├── Zocial.ttf │ │ │ │ └── rubicon-icon-font.ttf │ │ │ ├── java │ │ │ ├── .DS_Store │ │ │ └── com │ │ │ │ ├── .DS_Store │ │ │ │ └── ecommerce │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── .DS_Store │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ ├── .DS_Store │ │ └── 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 │ ├── .DS_Store │ ├── ecommerce-tvOS │ │ └── Info.plist │ ├── ecommerce-tvOSTests │ │ └── Info.plist │ ├── ecommerce.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── ecommerce-tvOS.xcscheme │ │ │ └── ecommerce.xcscheme │ ├── ecommerce │ │ ├── .DS_Store │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── .DS_Store │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── ecommerceTests │ │ ├── Info.plist │ │ └── ecommerceTests.m ├── package.json └── src │ ├── api.js │ ├── components │ ├── Login.js │ ├── LoginOrRegister.js │ └── Register.js │ ├── main.js │ ├── reducers │ ├── payments.js │ ├── products.js │ └── user.js │ └── screens │ ├── MyCart.js │ ├── MyProfile.js │ ├── Payment.js │ ├── PaymentConfirmation.js │ ├── ProductDetail.js │ ├── ProductList.js │ └── Sales.js ├── LICENSE └── README.md /Chapter01/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /Chapter01/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/.buckconfig -------------------------------------------------------------------------------- /Chapter01/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/.flowconfig -------------------------------------------------------------------------------- /Chapter01/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /Chapter01/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/.gitignore -------------------------------------------------------------------------------- /Chapter01/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Chapter01/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/App.js -------------------------------------------------------------------------------- /Chapter01/__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/__tests__/App.js -------------------------------------------------------------------------------- /Chapter01/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/BUCK -------------------------------------------------------------------------------- /Chapter01/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter01/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/java/com/grocerieslist/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/java/com/grocerieslist/MainActivity.java -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/java/com/grocerieslist/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/java/com/grocerieslist/MainApplication.java -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter01/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter01/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/build.gradle -------------------------------------------------------------------------------- /Chapter01/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/gradle.properties -------------------------------------------------------------------------------- /Chapter01/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter01/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter01/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/gradlew -------------------------------------------------------------------------------- /Chapter01/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/gradlew.bat -------------------------------------------------------------------------------- /Chapter01/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/keystores/BUCK -------------------------------------------------------------------------------- /Chapter01/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Chapter01/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'GroceriesList' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /Chapter01/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/app.json -------------------------------------------------------------------------------- /Chapter01/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/index.js -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesList-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesList-tvOS/Info.plist -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesList-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesList-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesList.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesList.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesList.xcodeproj/xcshareddata/xcschemes/GroceriesList-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesList.xcodeproj/xcshareddata/xcschemes/GroceriesList-tvOS.xcscheme -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesList.xcodeproj/xcshareddata/xcschemes/GroceriesList.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesList.xcodeproj/xcshareddata/xcschemes/GroceriesList.xcscheme -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesList/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesList/AppDelegate.h -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesList/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesList/AppDelegate.m -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesList/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesList/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesList/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesList/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesList/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesList/Info.plist -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesList/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesList/main.m -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesListTests/GroceriesListTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesListTests/GroceriesListTests.m -------------------------------------------------------------------------------- /Chapter01/ios/GroceriesListTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/ios/GroceriesListTests/Info.plist -------------------------------------------------------------------------------- /Chapter01/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/src/main.js -------------------------------------------------------------------------------- /Chapter01/src/screens/AddProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/src/screens/AddProduct.js -------------------------------------------------------------------------------- /Chapter01/src/screens/ShoppingList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter01/src/screens/ShoppingList.js -------------------------------------------------------------------------------- /Chapter02/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/.babelrc -------------------------------------------------------------------------------- /Chapter02/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/.buckconfig -------------------------------------------------------------------------------- /Chapter02/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/.flowconfig -------------------------------------------------------------------------------- /Chapter02/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /Chapter02/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/.gitignore -------------------------------------------------------------------------------- /Chapter02/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Chapter02/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/App.js -------------------------------------------------------------------------------- /Chapter02/__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/__tests__/App.js -------------------------------------------------------------------------------- /Chapter02/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/BUCK -------------------------------------------------------------------------------- /Chapter02/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter02/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/java/com/rssreader/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/java/com/rssreader/MainActivity.java -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/java/com/rssreader/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/java/com/rssreader/MainApplication.java -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter02/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter02/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/build.gradle -------------------------------------------------------------------------------- /Chapter02/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/gradle.properties -------------------------------------------------------------------------------- /Chapter02/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter02/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter02/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/gradlew -------------------------------------------------------------------------------- /Chapter02/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/gradlew.bat -------------------------------------------------------------------------------- /Chapter02/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/keystores/BUCK -------------------------------------------------------------------------------- /Chapter02/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Chapter02/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/android/settings.gradle -------------------------------------------------------------------------------- /Chapter02/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/app.json -------------------------------------------------------------------------------- /Chapter02/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/index.js -------------------------------------------------------------------------------- /Chapter02/ios/RSSReader-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReader-tvOS/Info.plist -------------------------------------------------------------------------------- /Chapter02/ios/RSSReader-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReader-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Chapter02/ios/RSSReader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter02/ios/RSSReader.xcodeproj/xcshareddata/xcschemes/RSSReader-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReader.xcodeproj/xcshareddata/xcschemes/RSSReader-tvOS.xcscheme -------------------------------------------------------------------------------- /Chapter02/ios/RSSReader.xcodeproj/xcshareddata/xcschemes/RSSReader.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReader.xcodeproj/xcshareddata/xcschemes/RSSReader.xcscheme -------------------------------------------------------------------------------- /Chapter02/ios/RSSReader/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReader/AppDelegate.h -------------------------------------------------------------------------------- /Chapter02/ios/RSSReader/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReader/AppDelegate.m -------------------------------------------------------------------------------- /Chapter02/ios/RSSReader/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReader/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter02/ios/RSSReader/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReader/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter02/ios/RSSReader/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReader/Info.plist -------------------------------------------------------------------------------- /Chapter02/ios/RSSReader/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReader/main.m -------------------------------------------------------------------------------- /Chapter02/ios/RSSReaderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReaderTests/Info.plist -------------------------------------------------------------------------------- /Chapter02/ios/RSSReaderTests/RSSReaderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/ios/RSSReaderTests/RSSReaderTests.m -------------------------------------------------------------------------------- /Chapter02/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/package-lock.json -------------------------------------------------------------------------------- /Chapter02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/package.json -------------------------------------------------------------------------------- /Chapter02/src/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/src/actions.js -------------------------------------------------------------------------------- /Chapter02/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/src/main.js -------------------------------------------------------------------------------- /Chapter02/src/screens/AddFeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/src/screens/AddFeed.js -------------------------------------------------------------------------------- /Chapter02/src/screens/EntryDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/src/screens/EntryDetail.js -------------------------------------------------------------------------------- /Chapter02/src/screens/FeedDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/src/screens/FeedDetail.js -------------------------------------------------------------------------------- /Chapter02/src/screens/FeedsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/src/screens/FeedsList.js -------------------------------------------------------------------------------- /Chapter02/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/src/store.js -------------------------------------------------------------------------------- /Chapter02/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter02/yarn.lock -------------------------------------------------------------------------------- /Chapter03/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /Chapter03/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/.buckconfig -------------------------------------------------------------------------------- /Chapter03/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/.flowconfig -------------------------------------------------------------------------------- /Chapter03/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /Chapter03/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/.gitignore -------------------------------------------------------------------------------- /Chapter03/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Chapter03/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/App.js -------------------------------------------------------------------------------- /Chapter03/__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/__tests__/App.js -------------------------------------------------------------------------------- /Chapter03/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/BUCK -------------------------------------------------------------------------------- /Chapter03/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter03/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/assets/fonts/openfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/src/main/assets/fonts/openfont.ttf -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/java/com/carbooking/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/src/main/java/com/carbooking/MainActivity.java -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/java/com/carbooking/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/src/main/java/com/carbooking/MainApplication.java -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter03/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/build.gradle -------------------------------------------------------------------------------- /Chapter03/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/gradle.properties -------------------------------------------------------------------------------- /Chapter03/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter03/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter03/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/gradlew -------------------------------------------------------------------------------- /Chapter03/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/gradlew.bat -------------------------------------------------------------------------------- /Chapter03/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/keystores/BUCK -------------------------------------------------------------------------------- /Chapter03/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Chapter03/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/android/settings.gradle -------------------------------------------------------------------------------- /Chapter03/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/app.json -------------------------------------------------------------------------------- /Chapter03/fonts/openfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/fonts/openfont.ttf -------------------------------------------------------------------------------- /Chapter03/img/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/img/car.png -------------------------------------------------------------------------------- /Chapter03/img/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/img/class.png -------------------------------------------------------------------------------- /Chapter03/img/classBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/img/classBar.png -------------------------------------------------------------------------------- /Chapter03/img/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/img/loading.png -------------------------------------------------------------------------------- /Chapter03/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/index.js -------------------------------------------------------------------------------- /Chapter03/ios/carBooking-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBooking-tvOS/Info.plist -------------------------------------------------------------------------------- /Chapter03/ios/carBooking-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBooking-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Chapter03/ios/carBooking.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBooking.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter03/ios/carBooking.xcodeproj/xcshareddata/xcschemes/carBooking-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBooking.xcodeproj/xcshareddata/xcschemes/carBooking-tvOS.xcscheme -------------------------------------------------------------------------------- /Chapter03/ios/carBooking.xcodeproj/xcshareddata/xcschemes/carBooking.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBooking.xcodeproj/xcshareddata/xcschemes/carBooking.xcscheme -------------------------------------------------------------------------------- /Chapter03/ios/carBooking/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBooking/AppDelegate.h -------------------------------------------------------------------------------- /Chapter03/ios/carBooking/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBooking/AppDelegate.m -------------------------------------------------------------------------------- /Chapter03/ios/carBooking/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBooking/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter03/ios/carBooking/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBooking/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter03/ios/carBooking/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBooking/Info.plist -------------------------------------------------------------------------------- /Chapter03/ios/carBooking/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBooking/main.m -------------------------------------------------------------------------------- /Chapter03/ios/carBookingTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBookingTests/Info.plist -------------------------------------------------------------------------------- /Chapter03/ios/carBookingTests/carBookingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/ios/carBookingTests/carBookingTests.m -------------------------------------------------------------------------------- /Chapter03/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/package-lock.json -------------------------------------------------------------------------------- /Chapter03/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/package.json -------------------------------------------------------------------------------- /Chapter03/src/components/ClassSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/src/components/ClassSelection.js -------------------------------------------------------------------------------- /Chapter03/src/components/ConfirmationModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/src/components/ConfirmationModal.js -------------------------------------------------------------------------------- /Chapter03/src/components/LocationPin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/src/components/LocationPin.js -------------------------------------------------------------------------------- /Chapter03/src/components/LocationSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/src/components/LocationSearch.js -------------------------------------------------------------------------------- /Chapter03/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/src/main.js -------------------------------------------------------------------------------- /Chapter03/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter03/yarn.lock -------------------------------------------------------------------------------- /Chapter04/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/.DS_Store -------------------------------------------------------------------------------- /Chapter04/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/app.json -------------------------------------------------------------------------------- /Chapter04/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/img/logo.png -------------------------------------------------------------------------------- /Chapter04/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/index.android.js -------------------------------------------------------------------------------- /Chapter04/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/index.ios.js -------------------------------------------------------------------------------- /Chapter04/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/package.json -------------------------------------------------------------------------------- /Chapter04/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/.DS_Store -------------------------------------------------------------------------------- /Chapter04/src/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/._.DS_Store -------------------------------------------------------------------------------- /Chapter04/src/._main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/._main.js -------------------------------------------------------------------------------- /Chapter04/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/actions/index.js -------------------------------------------------------------------------------- /Chapter04/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/api/index.js -------------------------------------------------------------------------------- /Chapter04/src/components/ActivityIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/components/ActivityIndicator.js -------------------------------------------------------------------------------- /Chapter04/src/components/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/components/Gallery.js -------------------------------------------------------------------------------- /Chapter04/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/components/Header.js -------------------------------------------------------------------------------- /Chapter04/src/components/ImagesGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/components/ImagesGrid.js -------------------------------------------------------------------------------- /Chapter04/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/main.js -------------------------------------------------------------------------------- /Chapter04/src/reducers/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/reducers/images.js -------------------------------------------------------------------------------- /Chapter04/src/screens/Camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/screens/Camera.js -------------------------------------------------------------------------------- /Chapter04/src/screens/ImagesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/screens/ImagesList.js -------------------------------------------------------------------------------- /Chapter04/src/screens/MyImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter04/src/screens/MyImages.js -------------------------------------------------------------------------------- /Chapter05/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/.DS_Store -------------------------------------------------------------------------------- /Chapter05/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/app.json -------------------------------------------------------------------------------- /Chapter05/img/indicator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/img/indicator.jpg -------------------------------------------------------------------------------- /Chapter05/img/string.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/img/string.jpg -------------------------------------------------------------------------------- /Chapter05/img/tuner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/img/tuner.jpg -------------------------------------------------------------------------------- /Chapter05/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/index.android.js -------------------------------------------------------------------------------- /Chapter05/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/index.ios.js -------------------------------------------------------------------------------- /Chapter05/ios/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/.DS_Store -------------------------------------------------------------------------------- /Chapter05/ios/FrequencyDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/FrequencyDetector.h -------------------------------------------------------------------------------- /Chapter05/ios/FrequencyDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/FrequencyDetector.m -------------------------------------------------------------------------------- /Chapter05/ios/SCListener/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/SCListener/README.markdown -------------------------------------------------------------------------------- /Chapter05/ios/SCListener/SCListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/SCListener/SCListener.h -------------------------------------------------------------------------------- /Chapter05/ios/SCListener/SCListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/SCListener/SCListener.m -------------------------------------------------------------------------------- /Chapter05/ios/SCListener/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/SCListener/_kiss_fft_guts.h -------------------------------------------------------------------------------- /Chapter05/ios/SCListener/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/SCListener/kiss_fft.c -------------------------------------------------------------------------------- /Chapter05/ios/SCListener/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/SCListener/kiss_fft.h -------------------------------------------------------------------------------- /Chapter05/ios/SCListener/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/SCListener/kiss_fftr.c -------------------------------------------------------------------------------- /Chapter05/ios/SCListener/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/SCListener/kiss_fftr.h -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner-tvOS/Info.plist -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner.xcodeproj/xcshareddata/xcschemes/guitarTuner-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner.xcodeproj/xcshareddata/xcschemes/guitarTuner-tvOS.xcscheme -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner.xcodeproj/xcshareddata/xcschemes/guitarTuner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner.xcodeproj/xcshareddata/xcschemes/guitarTuner.xcscheme -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/.DS_Store -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/.DS_Store -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-Notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-Notification@3x.png -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/icon.imageset/Contents.json -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Images.xcassets/icon.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Images.xcassets/icon.imageset/icon.png -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/Info.plist -------------------------------------------------------------------------------- /Chapter05/ios/guitarTuner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTuner/main.m -------------------------------------------------------------------------------- /Chapter05/ios/guitarTunerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTunerTests/Info.plist -------------------------------------------------------------------------------- /Chapter05/ios/guitarTunerTests/guitarTunerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/ios/guitarTunerTests/guitarTunerTests.m -------------------------------------------------------------------------------- /Chapter05/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/package.json -------------------------------------------------------------------------------- /Chapter05/src/components/Strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/src/components/Strings.js -------------------------------------------------------------------------------- /Chapter05/src/components/Tuner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/src/components/Tuner.js -------------------------------------------------------------------------------- /Chapter05/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter05/src/utils/index.js -------------------------------------------------------------------------------- /Chapter06/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/.DS_Store -------------------------------------------------------------------------------- /Chapter06/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/BUCK -------------------------------------------------------------------------------- /Chapter06/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter06/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/java/com/messagingapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/java/com/messagingapp/MainActivity.java -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/java/com/messagingapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/java/com/messagingapp/MainApplication.java -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter06/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/build.gradle -------------------------------------------------------------------------------- /Chapter06/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/gradle.properties -------------------------------------------------------------------------------- /Chapter06/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/gradlew -------------------------------------------------------------------------------- /Chapter06/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/gradlew.bat -------------------------------------------------------------------------------- /Chapter06/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/keystores/BUCK -------------------------------------------------------------------------------- /Chapter06/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Chapter06/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/android/settings.gradle -------------------------------------------------------------------------------- /Chapter06/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/app.json -------------------------------------------------------------------------------- /Chapter06/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/index.android.js -------------------------------------------------------------------------------- /Chapter06/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/index.ios.js -------------------------------------------------------------------------------- /Chapter06/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Podfile -------------------------------------------------------------------------------- /Chapter06/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Podfile.lock -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Firebase/Core/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Firebase/Core/Sources/Firebase.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Firebase/Core/Sources/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Firebase/Core/Sources/module.modulemap -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Firebase/README.md -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/FirebaseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/FirebaseCore -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRApp.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRLoggerLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRLoggerLevel.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIROptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIROptions.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FirebaseCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FirebaseCore.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseNanoPB.framework/FirebaseNanoPB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseCore/Frameworks/FirebaseNanoPB.framework/FirebaseNanoPB -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseInstanceID/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseInstanceID/CHANGELOG.md -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h: -------------------------------------------------------------------------------- 1 | #import "FIRInstanceID.h" 2 | -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseInstanceID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseInstanceID/README.md -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseMessaging/Frameworks/FirebaseMessaging.framework/FirebaseMessaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/FirebaseMessaging/Frameworks/FirebaseMessaging.framework/FirebaseMessaging -------------------------------------------------------------------------------- /Chapter06/ios/Pods/FirebaseMessaging/Frameworks/FirebaseMessaging.framework/Headers/FirebaseMessaging.h: -------------------------------------------------------------------------------- 1 | #import "FIRMessaging.h" 2 | -------------------------------------------------------------------------------- /Chapter06/ios/Pods/GoogleToolboxForMac/Foundation/GTMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/GoogleToolboxForMac/Foundation/GTMLogger.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/GoogleToolboxForMac/Foundation/GTMLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/GoogleToolboxForMac/Foundation/GTMLogger.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/GoogleToolboxForMac/Foundation/GTMNSData+zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/GoogleToolboxForMac/Foundation/GTMNSData+zlib.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/GoogleToolboxForMac/Foundation/GTMNSData+zlib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/GoogleToolboxForMac/Foundation/GTMNSData+zlib.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/GoogleToolboxForMac/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/GoogleToolboxForMac/GTMDefines.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/GoogleToolboxForMac/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/GoogleToolboxForMac/LICENSE -------------------------------------------------------------------------------- /Chapter06/ios/Pods/GoogleToolboxForMac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/GoogleToolboxForMac/README.md -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Firebase/Firebase.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/GoogleToolboxForMac/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/GoogleToolboxForMac/GTMDefines.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/GoogleToolboxForMac/GTMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/GoogleToolboxForMac/GTMLogger.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/GoogleToolboxForMac/GTMNSData+zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/GoogleToolboxForMac/GTMNSData+zlib.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/Any.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/Any.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/Api.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/Api.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/Duration.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/Duration.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/Empty.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/Empty.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/FieldMask.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/FieldMask.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBArray.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBArray_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBArray_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBBootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBBootstrap.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBCodedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBCodedInputStream.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBCodedInputStream_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBCodedInputStream_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBCodedOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBCodedOutputStream.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBCodedOutputStream_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBCodedOutputStream_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBDescriptor.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBDescriptor_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBDescriptor_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBDictionary.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBDictionary_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBDictionary_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBExtensionInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBExtensionInternals.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBExtensionRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBExtensionRegistry.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBMessage.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBMessage_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBMessage_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBProtocolBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBProtocolBuffers.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBProtocolBuffers_RuntimeSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBProtocolBuffers_RuntimeSupport.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBRootObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBRootObject.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBRootObject_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBRootObject_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBRuntimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBRuntimeTypes.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUnknownField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUnknownField.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUnknownFieldSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUnknownFieldSet.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUnknownFieldSet_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUnknownFieldSet_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUnknownField_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUnknownField_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUtilities.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUtilities_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBUtilities_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBWellKnownTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBWellKnownTypes.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/GPBWireFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/GPBWireFormat.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/SourceContext.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/SourceContext.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/Struct.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/Struct.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/Timestamp.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/Timestamp.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/Type.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/Type.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/Protobuf/Wrappers.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/Protobuf/Wrappers.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/nanopb/pb.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/nanopb/pb_common.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/nanopb/pb_decode.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Private/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Private/nanopb/pb_encode.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Firebase/Firebase.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalytics.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRApp.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRConfiguration.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIREventNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIREventNames.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIROptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIROptions.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRParameterNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRParameterNames.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRUserPropertyNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRUserPropertyNames.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FirebaseAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FirebaseAnalytics.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIRAnalyticsConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIRAnalyticsConfiguration.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIRApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIRApp.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIRConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIRConfiguration.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIRCoreSwiftNameSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIRCoreSwiftNameSupport.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIRLoggerLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIRLoggerLevel.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIROptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FIROptions.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FirebaseCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseCore/FirebaseCore/FirebaseCore.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseInstanceID/FirebaseInstanceID/FIRInstanceID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseInstanceID/FirebaseInstanceID/FIRInstanceID.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseInstanceID/FirebaseInstanceID/FirebaseInstanceID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseInstanceID/FirebaseInstanceID/FirebaseInstanceID.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseMessaging/FirebaseMessaging/FIRMessaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseMessaging/FirebaseMessaging/FIRMessaging.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/FirebaseMessaging/FirebaseMessaging/FirebaseMessaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/FirebaseMessaging/FirebaseMessaging/FirebaseMessaging.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/GoogleToolboxForMac/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/GoogleToolboxForMac/GTMDefines.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/GoogleToolboxForMac/GTMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/GoogleToolboxForMac/GTMLogger.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/GoogleToolboxForMac/GTMNSData+zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/GoogleToolboxForMac/GTMNSData+zlib.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/Any.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/Any.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/Api.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/Api.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/Duration.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/Duration.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/Empty.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/Empty.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/FieldMask.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/FieldMask.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBArray.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBArray_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBArray_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBBootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBBootstrap.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBCodedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBCodedInputStream.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBCodedInputStream_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBCodedInputStream_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBCodedOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBCodedOutputStream.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBCodedOutputStream_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBCodedOutputStream_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBDescriptor.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBDescriptor_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBDescriptor_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBDictionary.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBDictionary_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBDictionary_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBExtensionInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBExtensionInternals.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBExtensionRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBExtensionRegistry.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBMessage.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBMessage_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBMessage_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBProtocolBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBProtocolBuffers.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBProtocolBuffers_RuntimeSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBProtocolBuffers_RuntimeSupport.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBRootObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBRootObject.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBRootObject_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBRootObject_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBRuntimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBRuntimeTypes.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUnknownField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUnknownField.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUnknownFieldSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUnknownFieldSet.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUnknownFieldSet_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUnknownFieldSet_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUnknownField_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUnknownField_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUtilities.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUtilities_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBUtilities_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBWellKnownTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBWellKnownTypes.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/GPBWireFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/GPBWireFormat.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/SourceContext.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/SourceContext.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/Struct.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/Struct.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/Timestamp.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/Timestamp.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/Type.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/Type.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/Protobuf/Wrappers.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/Protobuf/Wrappers.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/nanopb/pb.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/nanopb/pb_common.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/nanopb/pb_decode.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Headers/Public/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Headers/Public/nanopb/pb_encode.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Manifest.lock -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/LICENSE -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/README.md -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBArray.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBArray.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBArray_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBArray_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBBootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBBootstrap.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedInputStream.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedInputStream.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedInputStream_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedInputStream_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedOutputStream.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedOutputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedOutputStream.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedOutputStream_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBCodedOutputStream_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBDescriptor.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBDescriptor.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBDescriptor_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBDescriptor_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBDictionary.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBDictionary.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBDictionary_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBDictionary_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBExtensionInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBExtensionInternals.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBExtensionInternals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBExtensionInternals.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBExtensionRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBExtensionRegistry.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBExtensionRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBExtensionRegistry.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBMessage.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBMessage.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBMessage_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBMessage_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBProtocolBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBProtocolBuffers.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBProtocolBuffers_RuntimeSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBProtocolBuffers_RuntimeSupport.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBRootObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBRootObject.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBRootObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBRootObject.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBRootObject_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBRootObject_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBRuntimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBRuntimeTypes.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownField.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownField.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownFieldSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownFieldSet.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownFieldSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownFieldSet.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownFieldSet_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownFieldSet_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownField_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBUnknownField_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBUtilities.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBUtilities.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBUtilities_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBUtilities_PackagePrivate.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBWellKnownTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBWellKnownTypes.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBWellKnownTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBWellKnownTypes.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBWireFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBWireFormat.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/GPBWireFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/GPBWireFormat.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/SourceContext.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/SourceContext.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/SourceContext.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/SourceContext.pbobjc.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-dummy.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.xcconfig -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/Pods-messagingApp/Pods-messagingApp-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/Pods-messagingApp/Pods-messagingApp-dummy.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/Pods-messagingApp/Pods-messagingApp-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/Pods-messagingApp/Pods-messagingApp-frameworks.sh -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/Pods-messagingApp/Pods-messagingApp-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/Pods-messagingApp/Pods-messagingApp-resources.sh -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/Pods-messagingApp/Pods-messagingApp.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/Pods-messagingApp/Pods-messagingApp.debug.xcconfig -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/Pods-messagingApp/Pods-messagingApp.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/Pods-messagingApp/Pods-messagingApp.release.xcconfig -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/Pods-messagingAppTests/Pods-messagingAppTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/Pods-messagingAppTests/Pods-messagingAppTests-dummy.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/Protobuf/Protobuf-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/Protobuf/Protobuf-dummy.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/Protobuf/Protobuf-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/Protobuf/Protobuf-prefix.pch -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/Protobuf/Protobuf.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/Protobuf/Protobuf.xcconfig -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/nanopb/nanopb-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/nanopb/nanopb-dummy.m -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/nanopb/nanopb-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/nanopb/nanopb-prefix.pch -------------------------------------------------------------------------------- /Chapter06/ios/Pods/Target Support Files/nanopb/nanopb.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/Target Support Files/nanopb/nanopb.xcconfig -------------------------------------------------------------------------------- /Chapter06/ios/Pods/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/nanopb/LICENSE.txt -------------------------------------------------------------------------------- /Chapter06/ios/Pods/nanopb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/nanopb/README.md -------------------------------------------------------------------------------- /Chapter06/ios/Pods/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/nanopb/pb.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/nanopb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/nanopb/pb_common.c -------------------------------------------------------------------------------- /Chapter06/ios/Pods/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/nanopb/pb_common.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/nanopb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/nanopb/pb_decode.c -------------------------------------------------------------------------------- /Chapter06/ios/Pods/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/nanopb/pb_decode.h -------------------------------------------------------------------------------- /Chapter06/ios/Pods/nanopb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/nanopb/pb_encode.c -------------------------------------------------------------------------------- /Chapter06/ios/Pods/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/Pods/nanopb/pb_encode.h -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp-tvOS/Info.plist -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp.xcodeproj/xcshareddata/xcschemes/messagingApp-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp.xcodeproj/xcshareddata/xcschemes/messagingApp-tvOS.xcscheme -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp.xcodeproj/xcshareddata/xcschemes/messagingApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp.xcodeproj/xcshareddata/xcschemes/messagingApp.xcscheme -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp/AppDelegate.h -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp/AppDelegate.m -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp/GoogleService-Info.plist -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp/Info.plist -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp/main.m -------------------------------------------------------------------------------- /Chapter06/ios/messagingApp/messagingApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingApp/messagingApp.entitlements -------------------------------------------------------------------------------- /Chapter06/ios/messagingAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingAppTests/Info.plist -------------------------------------------------------------------------------- /Chapter06/ios/messagingAppTests/messagingAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/ios/messagingAppTests/messagingAppTests.m -------------------------------------------------------------------------------- /Chapter06/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/package-lock.json -------------------------------------------------------------------------------- /Chapter06/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/package.json -------------------------------------------------------------------------------- /Chapter06/src/components/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/components/ListItem.js -------------------------------------------------------------------------------- /Chapter06/src/components/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/components/LoginForm.js -------------------------------------------------------------------------------- /Chapter06/src/components/RegistrationForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/components/RegistrationForm.js -------------------------------------------------------------------------------- /Chapter06/src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/firebase.js -------------------------------------------------------------------------------- /Chapter06/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/main.js -------------------------------------------------------------------------------- /Chapter06/src/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/notifications.js -------------------------------------------------------------------------------- /Chapter06/src/screens/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/screens/Chat.js -------------------------------------------------------------------------------- /Chapter06/src/screens/Chats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/screens/Chats.js -------------------------------------------------------------------------------- /Chapter06/src/screens/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/screens/Login.js -------------------------------------------------------------------------------- /Chapter06/src/screens/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/screens/Profile.js -------------------------------------------------------------------------------- /Chapter06/src/screens/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/screens/Search.js -------------------------------------------------------------------------------- /Chapter06/src/stores/chats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/stores/chats.js -------------------------------------------------------------------------------- /Chapter06/src/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/stores/index.js -------------------------------------------------------------------------------- /Chapter06/src/stores/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter06/src/stores/users.js -------------------------------------------------------------------------------- /Chapter07/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/.DS_Store -------------------------------------------------------------------------------- /Chapter07/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/BUCK -------------------------------------------------------------------------------- /Chapter07/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter07/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter07/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter07/android/app/src/main/java/com/birdgame/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/src/main/java/com/birdgame/MainActivity.java -------------------------------------------------------------------------------- /Chapter07/android/app/src/main/java/com/birdgame/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/src/main/java/com/birdgame/MainApplication.java -------------------------------------------------------------------------------- /Chapter07/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter07/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter07/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/build.gradle -------------------------------------------------------------------------------- /Chapter07/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/gradle.properties -------------------------------------------------------------------------------- /Chapter07/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter07/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter07/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/gradlew -------------------------------------------------------------------------------- /Chapter07/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/gradlew.bat -------------------------------------------------------------------------------- /Chapter07/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/keystores/BUCK -------------------------------------------------------------------------------- /Chapter07/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Chapter07/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/android/settings.gradle -------------------------------------------------------------------------------- /Chapter07/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/app.json -------------------------------------------------------------------------------- /Chapter07/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/.DS_Store -------------------------------------------------------------------------------- /Chapter07/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/0.png -------------------------------------------------------------------------------- /Chapter07/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/1.png -------------------------------------------------------------------------------- /Chapter07/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/2.png -------------------------------------------------------------------------------- /Chapter07/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/3.png -------------------------------------------------------------------------------- /Chapter07/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/4.png -------------------------------------------------------------------------------- /Chapter07/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/5.png -------------------------------------------------------------------------------- /Chapter07/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/6.png -------------------------------------------------------------------------------- /Chapter07/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/7.png -------------------------------------------------------------------------------- /Chapter07/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/8.png -------------------------------------------------------------------------------- /Chapter07/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/9.png -------------------------------------------------------------------------------- /Chapter07/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/bg.png -------------------------------------------------------------------------------- /Chapter07/images/game-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/game-over.png -------------------------------------------------------------------------------- /Chapter07/images/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/ground.png -------------------------------------------------------------------------------- /Chapter07/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/logo.png -------------------------------------------------------------------------------- /Chapter07/images/parrot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/parrot1.png -------------------------------------------------------------------------------- /Chapter07/images/parrot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/parrot2.png -------------------------------------------------------------------------------- /Chapter07/images/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/reset.png -------------------------------------------------------------------------------- /Chapter07/images/rock-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/rock-down.png -------------------------------------------------------------------------------- /Chapter07/images/rock-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/rock-up.png -------------------------------------------------------------------------------- /Chapter07/images/tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/images/tap.png -------------------------------------------------------------------------------- /Chapter07/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/index.android.js -------------------------------------------------------------------------------- /Chapter07/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/index.ios.js -------------------------------------------------------------------------------- /Chapter07/ios/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/.DS_Store -------------------------------------------------------------------------------- /Chapter07/ios/birdGame-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame-tvOS/Info.plist -------------------------------------------------------------------------------- /Chapter07/ios/birdGame-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Chapter07/ios/birdGame.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter07/ios/birdGame.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter07/ios/birdGame.xcodeproj/xcshareddata/xcschemes/birdGame-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame.xcodeproj/xcshareddata/xcschemes/birdGame-tvOS.xcscheme -------------------------------------------------------------------------------- /Chapter07/ios/birdGame.xcodeproj/xcshareddata/xcschemes/birdGame.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame.xcodeproj/xcshareddata/xcschemes/birdGame.xcscheme -------------------------------------------------------------------------------- /Chapter07/ios/birdGame/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame/AppDelegate.h -------------------------------------------------------------------------------- /Chapter07/ios/birdGame/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame/AppDelegate.m -------------------------------------------------------------------------------- /Chapter07/ios/birdGame/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter07/ios/birdGame/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter07/ios/birdGame/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame/Info.plist -------------------------------------------------------------------------------- /Chapter07/ios/birdGame/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGame/main.m -------------------------------------------------------------------------------- /Chapter07/ios/birdGameTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGameTests/Info.plist -------------------------------------------------------------------------------- /Chapter07/ios/birdGameTests/birdGameTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/ios/birdGameTests/birdGameTests.m -------------------------------------------------------------------------------- /Chapter07/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/package-lock.json -------------------------------------------------------------------------------- /Chapter07/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/package.json -------------------------------------------------------------------------------- /Chapter07/sounds/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/sounds/coin.wav -------------------------------------------------------------------------------- /Chapter07/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/actions/index.js -------------------------------------------------------------------------------- /Chapter07/src/components/GameContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/components/GameContainer.js -------------------------------------------------------------------------------- /Chapter07/src/components/GameOver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/components/GameOver.js -------------------------------------------------------------------------------- /Chapter07/src/components/Ground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/components/Ground.js -------------------------------------------------------------------------------- /Chapter07/src/components/Parrot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/components/Parrot.js -------------------------------------------------------------------------------- /Chapter07/src/components/RockDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/components/RockDown.js -------------------------------------------------------------------------------- /Chapter07/src/components/RockUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/components/RockUp.js -------------------------------------------------------------------------------- /Chapter07/src/components/Score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/components/Score.js -------------------------------------------------------------------------------- /Chapter07/src/components/Start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/components/Start.js -------------------------------------------------------------------------------- /Chapter07/src/components/StartAgain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/components/StartAgain.js -------------------------------------------------------------------------------- /Chapter07/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/constants.js -------------------------------------------------------------------------------- /Chapter07/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/main.js -------------------------------------------------------------------------------- /Chapter07/src/reducers/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/reducers/game.js -------------------------------------------------------------------------------- /Chapter07/src/sprites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter07/src/sprites.js -------------------------------------------------------------------------------- /Chapter08/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/.DS_Store -------------------------------------------------------------------------------- /Chapter08/__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/__tests__/index.android.js -------------------------------------------------------------------------------- /Chapter08/__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/__tests__/index.ios.js -------------------------------------------------------------------------------- /Chapter08/android/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/.gradle/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/.gradle/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/.gradle/2.14.1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/.gradle/2.14.1/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/.gradle/2.14.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Sat Sep 23 09:58:20 BST 2017 2 | -------------------------------------------------------------------------------- /Chapter08/android/.gradle/2.14.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/.gradle/2.14.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /Chapter08/android/.gradle/2.14.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/.gradle/2.14.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /Chapter08/android/.gradle/2.14.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/.gradle/2.14.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /Chapter08/android/.gradle/2.14.1/taskArtifacts/fileSnapshotsToTreeSnapshotsIndex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/.gradle/2.14.1/taskArtifacts/fileSnapshotsToTreeSnapshotsIndex.bin -------------------------------------------------------------------------------- /Chapter08/android/.gradle/2.14.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/.gradle/2.14.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /Chapter08/android/.gradle/2.14.1/tasks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/.gradle/2.14.1/tasks/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/BUCK -------------------------------------------------------------------------------- /Chapter08/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter08/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter08/android/app/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/java/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/java/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/java/com/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/java/com/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/java/com/ecommerce/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/java/com/ecommerce/MainActivity.java -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/java/com/ecommerce/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/java/com/ecommerce/MainApplication.java -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/res/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter08/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter08/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/build.gradle -------------------------------------------------------------------------------- /Chapter08/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/gradle.properties -------------------------------------------------------------------------------- /Chapter08/android/gradle/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/gradle/.DS_Store -------------------------------------------------------------------------------- /Chapter08/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter08/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter08/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/gradlew -------------------------------------------------------------------------------- /Chapter08/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/gradlew.bat -------------------------------------------------------------------------------- /Chapter08/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/keystores/BUCK -------------------------------------------------------------------------------- /Chapter08/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Chapter08/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ecommerce' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /Chapter08/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/app.json -------------------------------------------------------------------------------- /Chapter08/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/index.android.js -------------------------------------------------------------------------------- /Chapter08/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/index.ios.js -------------------------------------------------------------------------------- /Chapter08/ios/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/.DS_Store -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce-tvOS/Info.plist -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce.xcodeproj/xcshareddata/xcschemes/ecommerce-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce.xcodeproj/xcshareddata/xcschemes/ecommerce-tvOS.xcscheme -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce.xcodeproj/xcshareddata/xcschemes/ecommerce.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce.xcodeproj/xcshareddata/xcschemes/ecommerce.xcscheme -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce/.DS_Store -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce/AppDelegate.h -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce/AppDelegate.m -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce/Images.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce/Images.xcassets/.DS_Store -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce/Info.plist -------------------------------------------------------------------------------- /Chapter08/ios/ecommerce/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerce/main.m -------------------------------------------------------------------------------- /Chapter08/ios/ecommerceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerceTests/Info.plist -------------------------------------------------------------------------------- /Chapter08/ios/ecommerceTests/ecommerceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/ios/ecommerceTests/ecommerceTests.m -------------------------------------------------------------------------------- /Chapter08/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/package.json -------------------------------------------------------------------------------- /Chapter08/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/api.js -------------------------------------------------------------------------------- /Chapter08/src/components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/components/Login.js -------------------------------------------------------------------------------- /Chapter08/src/components/LoginOrRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/components/LoginOrRegister.js -------------------------------------------------------------------------------- /Chapter08/src/components/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/components/Register.js -------------------------------------------------------------------------------- /Chapter08/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/main.js -------------------------------------------------------------------------------- /Chapter08/src/reducers/payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/reducers/payments.js -------------------------------------------------------------------------------- /Chapter08/src/reducers/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/reducers/products.js -------------------------------------------------------------------------------- /Chapter08/src/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/reducers/user.js -------------------------------------------------------------------------------- /Chapter08/src/screens/MyCart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/screens/MyCart.js -------------------------------------------------------------------------------- /Chapter08/src/screens/MyProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/screens/MyProfile.js -------------------------------------------------------------------------------- /Chapter08/src/screens/Payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/screens/Payment.js -------------------------------------------------------------------------------- /Chapter08/src/screens/PaymentConfirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/screens/PaymentConfirmation.js -------------------------------------------------------------------------------- /Chapter08/src/screens/ProductDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/screens/ProductDetail.js -------------------------------------------------------------------------------- /Chapter08/src/screens/ProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/screens/ProductList.js -------------------------------------------------------------------------------- /Chapter08/src/screens/Sales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/Chapter08/src/screens/Sales.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/React-Native-Blueprints/HEAD/README.md --------------------------------------------------------------------------------