diff --git a/.gitignore b/.gitignore index 14a1171..5d64756 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,56 @@ -# See https://help.github.com/ignore-files/ for more about ignoring files. +# OSX +# +.DS_Store -# expo -.expo/ +# Xcode +# +build/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +*.moved-aside +DerivedData +*.hmap +*.ipa +*.xcuserstate +project.xcworkspace -# dependencies -/node_modules +# Android/IntelliJ +# +build/ +.idea +.gradle +local.properties +*.iml -# misc -.env.local -.env.development.local -.env.test.local -.env.production.local +# node.js +# +node_modules/ +npm-debug.log +yarn-error.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* +# BUCK +buck-out/ +\.buckd/ +*.keystore + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://docs.fastlane.tools/best-practices/source-control/ + +*/fastlane/report.xml +*/fastlane/Preview.html +*/fastlane/screenshots + +# Bundle artifact +*.jsbundle diff --git a/App.js b/App.js index dd1d45a..56421fc 100644 --- a/App.js +++ b/App.js @@ -1,9 +1,3 @@ -/** - * Sample React Native App - * https://github.com/facebook/react-native - * @flow - */ - import React, { Component } from 'react'; import { Platform, @@ -12,6 +6,8 @@ import { View } from 'react-native'; +import RunInfo from './components/run-info'; +import MapView from 'react-native-maps'; const instructions = Platform.select({ ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu', @@ -23,22 +19,42 @@ type Props = {}; export default class App extends Component { render() { return ( - - - Welcome to React Native! - - - To get started, edit App.js - - - {instructions} - - + + + {/*Map View*/} + {/**/} + {/**/} + {/**/} + {/**/} + {/**/} + + ); } } const styles = StyleSheet.create({ + infoWrapper: { + position: 'absolute', + left: 0, + bottom: 0, + right: 0, + flexDirection: 'row', + flex: 1 + }, + map: { + ...StyleSheet.absoluteFillObject + }, + container: { flex: 1, justifyContent: 'center', diff --git a/android/app/BUCK b/android/app/BUCK index df0efff..e653e1d 100644 --- a/android/app/BUCK +++ b/android/app/BUCK @@ -45,12 +45,12 @@ android_library( android_build_config( name = "build_config", - package = "com.applo", + package = "com.myapp", ) android_resource( name = "res", - package = "com.applo", + package = "com.myapp", res = "src/main/res", ) diff --git a/android/app/build.gradle b/android/app/build.gradle index e38b9bf..5cf629e 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -98,7 +98,7 @@ android { buildToolsVersion "23.0.1" defaultConfig { - applicationId "com.applo" + applicationId "com.myapp" minSdkVersion 16 targetSdkVersion 22 versionCode 1 @@ -137,8 +137,9 @@ android { } dependencies { + compile project(':react-native-maps') compile fileTree(dir: "libs", include: ["*.jar"]) - compile "com.android.support:appcompat-v7:23.0.1" + compile "com.android.support:appcompat-v7:24.0.0" compile "com.facebook.react:react-native:+" // From node_modules } diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 68874c7..64ae6e8 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,8 +1,9 @@ + package="com.myapp"> + + diff --git a/android/app/src/main/java/com/applo/MainActivity.java b/android/app/src/main/java/com/myapp/MainActivity.java similarity index 87% rename from android/app/src/main/java/com/applo/MainActivity.java rename to android/app/src/main/java/com/myapp/MainActivity.java index 4f2099a..719e24a 100644 --- a/android/app/src/main/java/com/applo/MainActivity.java +++ b/android/app/src/main/java/com/myapp/MainActivity.java @@ -1,4 +1,4 @@ -package com.applo; +package com.myapp; import com.facebook.react.ReactActivity; @@ -10,6 +10,6 @@ public class MainActivity extends ReactActivity { */ @Override protected String getMainComponentName() { - return "applo"; + return "myApp"; } } diff --git a/android/app/src/main/java/com/applo/MainApplication.java b/android/app/src/main/java/com/myapp/MainApplication.java similarity index 88% rename from android/app/src/main/java/com/applo/MainApplication.java rename to android/app/src/main/java/com/myapp/MainApplication.java index 00a65bc..a846ce7 100644 --- a/android/app/src/main/java/com/applo/MainApplication.java +++ b/android/app/src/main/java/com/myapp/MainApplication.java @@ -1,8 +1,9 @@ -package com.applo; +package com.myapp; import android.app.Application; import com.facebook.react.ReactApplication; +import com.airbnb.android.react.maps.MapsPackage; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.react.shell.MainReactPackage; @@ -22,7 +23,8 @@ public class MainApplication extends Application implements ReactApplication { @Override protected List getPackages() { return Arrays.asList( - new MainReactPackage() + new MainReactPackage(), + new MapsPackage() ); } diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml index ae29fd1..e510ebd 100644 --- a/android/app/src/main/res/values/strings.xml +++ b/android/app/src/main/res/values/strings.xml @@ -1,3 +1,3 @@ - applo + myApp diff --git a/android/build.gradle b/android/build.gradle index eed9972..b379221 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -3,9 +3,10 @@ buildscript { repositories { jcenter() + google() } dependencies { - classpath 'com.android.tools.build:gradle:2.2.3' + classpath 'com.android.tools.build:gradle:3.1.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files @@ -21,4 +22,4 @@ allprojects { url "$rootDir/../node_modules/react-native/android" } } -} +} \ No newline at end of file diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index dbdc05d..e6d7cad 100644 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip \ No newline at end of file diff --git a/android/settings.gradle b/android/settings.gradle index df58f3b..3926117 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,3 +1,5 @@ -rootProject.name = 'applo' +rootProject.name = 'myApp' +include ':react-native-maps' +project(':react-native-maps').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-maps/lib/android') include ':app' diff --git a/app.json b/app.json index 9c807b1..829593a 100644 --- a/app.json +++ b/app.json @@ -1,4 +1,4 @@ { - "name": "applo", - "displayName": "applo" + "name": "myApp", + "displayName": "myApp" } \ No newline at end of file diff --git a/components/run-info.js b/components/run-info.js new file mode 100644 index 0000000..9638893 --- /dev/null +++ b/components/run-info.js @@ -0,0 +1,18 @@ +import React, { Component } from 'react'; +import { + Platform, + StyleSheet, + Text, + View +} from 'react-native'; + +export default class RunInfo extends Component { + render() { + return ( + + {this.props.title} + {this.props.value} + + ) + } +} diff --git a/index.js b/index.js index 8451efa..a46de2c 100644 --- a/index.js +++ b/index.js @@ -1,4 +1,4 @@ import { AppRegistry } from 'react-native'; import App from './App'; -AppRegistry.registerComponent('applo', () => App); +AppRegistry.registerComponent('myApp', () => App); diff --git a/ios/applo-tvOS/Info.plist b/ios/myApp-tvOS/Info.plist similarity index 100% rename from ios/applo-tvOS/Info.plist rename to ios/myApp-tvOS/Info.plist diff --git a/ios/applo-tvOSTests/Info.plist b/ios/myApp-tvOSTests/Info.plist similarity index 100% rename from ios/applo-tvOSTests/Info.plist rename to ios/myApp-tvOSTests/Info.plist diff --git a/ios/applo.xcodeproj/project.pbxproj b/ios/myApp.xcodeproj/project.pbxproj similarity index 89% rename from ios/applo.xcodeproj/project.pbxproj rename to ios/myApp.xcodeproj/project.pbxproj index d95e93e..02dd440 100644 --- a/ios/applo.xcodeproj/project.pbxproj +++ b/ios/myApp.xcodeproj/project.pbxproj @@ -5,14 +5,13 @@ }; objectVersion = 46; objects = { - /* Begin PBXBuildFile section */ 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; - 00E356F31AD99517003FC87E /* apploTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* apploTests.m */; }; + 00E356F31AD99517003FC87E /* myAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* myAppTests.m */; }; 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; @@ -33,11 +32,12 @@ 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; - 2DCD954D1E0B4F2C00145EB5 /* apploTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* apploTests.m */; }; + 2DCD954D1E0B4F2C00145EB5 /* myAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* myAppTests.m */; }; 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; + 608CB2C7674942D09C586EAF /* libAirMaps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6789FD44E0F94F94BCC983CB /* libAirMaps.a */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -81,7 +81,7 @@ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; proxyType = 1; remoteGlobalIDString = 13B07F861A680F5B00A75B9A; - remoteInfo = applo; + remoteInfo = myApp; }; 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -109,7 +109,7 @@ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; proxyType = 1; remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; - remoteInfo = "applo-tvOS"; + remoteInfo = "myApp-tvOS"; }; 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -323,26 +323,28 @@ 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; - 00E356EE1AD99517003FC87E /* apploTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = apploTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 00E356EE1AD99517003FC87E /* myAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = myAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 00E356F21AD99517003FC87E /* apploTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = apploTests.m; sourceTree = ""; }; + 00E356F21AD99517003FC87E /* myAppTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = myAppTests.m; sourceTree = ""; }; 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; - 13B07F961A680F5B00A75B9A /* applo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = applo.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = applo/AppDelegate.h; sourceTree = ""; }; - 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = applo/AppDelegate.m; sourceTree = ""; }; + 13B07F961A680F5B00A75B9A /* myApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = myApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = myApp/AppDelegate.h; sourceTree = ""; }; + 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = myApp/AppDelegate.m; sourceTree = ""; }; 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; - 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = applo/Images.xcassets; sourceTree = ""; }; - 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = applo/Info.plist; sourceTree = ""; }; - 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = applo/main.m; sourceTree = ""; }; + 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = myApp/Images.xcassets; sourceTree = ""; }; + 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = myApp/Info.plist; sourceTree = ""; }; + 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = myApp/main.m; sourceTree = ""; }; 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; - 2D02E47B1E0B4A5D006451C7 /* applo-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "applo-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2D02E4901E0B4A5D006451C7 /* applo-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "applo-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2D02E47B1E0B4A5D006451C7 /* myApp-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "myApp-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2D02E4901E0B4A5D006451C7 /* myApp-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "myApp-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; + 01A01E18FB1041499B8E4795 /* AirMaps.xcodeproj */ = {isa = PBXFileReference; name = "AirMaps.xcodeproj"; path = "../node_modules/react-native-maps/lib/ios/AirMaps.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; + 6789FD44E0F94F94BCC983CB /* libAirMaps.a */ = {isa = PBXFileReference; name = "libAirMaps.a"; path = "libAirMaps.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -371,6 +373,7 @@ 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, + 608CB2C7674942D09C586EAF /* libAirMaps.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -442,13 +445,13 @@ name = Products; sourceTree = ""; }; - 00E356EF1AD99517003FC87E /* apploTests */ = { + 00E356EF1AD99517003FC87E /* myAppTests */ = { isa = PBXGroup; children = ( - 00E356F21AD99517003FC87E /* apploTests.m */, + 00E356F21AD99517003FC87E /* myAppTests.m */, 00E356F01AD99517003FC87E /* Supporting Files */, ); - path = apploTests; + path = myAppTests; sourceTree = ""; }; 00E356F01AD99517003FC87E /* Supporting Files */ = { @@ -479,7 +482,7 @@ name = Products; sourceTree = ""; }; - 13B07FAE1A68108700A75B9A /* applo */ = { + 13B07FAE1A68108700A75B9A /* myApp */ = { isa = PBXGroup; children = ( 008F07F21AC5B25A0029DE68 /* main.jsbundle */, @@ -490,7 +493,7 @@ 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 13B07FB71A68108700A75B9A /* main.m */, ); - name = applo; + name = myApp; sourceTree = ""; }; 146834001AC3E56700842450 /* Products */ = { @@ -557,6 +560,7 @@ 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, + 01A01E18FB1041499B8E4795 /* AirMaps.xcodeproj */, ); name = Libraries; sourceTree = ""; @@ -573,9 +577,9 @@ 83CBB9F61A601CBA00E9B192 = { isa = PBXGroup; children = ( - 13B07FAE1A68108700A75B9A /* applo */, + 13B07FAE1A68108700A75B9A /* myApp */, 832341AE1AAA6A7D00B99B32 /* Libraries */, - 00E356EF1AD99517003FC87E /* apploTests */, + 00E356EF1AD99517003FC87E /* myAppTests */, 83CBBA001A601CBA00E9B192 /* Products */, 2D16E6871FA4F8E400B85C8A /* Frameworks */, ); @@ -587,10 +591,10 @@ 83CBBA001A601CBA00E9B192 /* Products */ = { isa = PBXGroup; children = ( - 13B07F961A680F5B00A75B9A /* applo.app */, - 00E356EE1AD99517003FC87E /* apploTests.xctest */, - 2D02E47B1E0B4A5D006451C7 /* applo-tvOS.app */, - 2D02E4901E0B4A5D006451C7 /* applo-tvOSTests.xctest */, + 13B07F961A680F5B00A75B9A /* myApp.app */, + 00E356EE1AD99517003FC87E /* myAppTests.xctest */, + 2D02E47B1E0B4A5D006451C7 /* myApp-tvOS.app */, + 2D02E4901E0B4A5D006451C7 /* myApp-tvOSTests.xctest */, ); name = Products; sourceTree = ""; @@ -607,9 +611,9 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - 00E356ED1AD99517003FC87E /* apploTests */ = { + 00E356ED1AD99517003FC87E /* myAppTests */ = { isa = PBXNativeTarget; - buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "apploTests" */; + buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "myAppTests" */; buildPhases = ( 00E356EA1AD99517003FC87E /* Sources */, 00E356EB1AD99517003FC87E /* Frameworks */, @@ -620,14 +624,14 @@ dependencies = ( 00E356F51AD99517003FC87E /* PBXTargetDependency */, ); - name = apploTests; - productName = apploTests; - productReference = 00E356EE1AD99517003FC87E /* apploTests.xctest */; + name = myAppTests; + productName = myAppTests; + productReference = 00E356EE1AD99517003FC87E /* myAppTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; - 13B07F861A680F5B00A75B9A /* applo */ = { + 13B07F861A680F5B00A75B9A /* myApp */ = { isa = PBXNativeTarget; - buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "applo" */; + buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "myApp" */; buildPhases = ( 13B07F871A680F5B00A75B9A /* Sources */, 13B07F8C1A680F5B00A75B9A /* Frameworks */, @@ -638,14 +642,14 @@ ); dependencies = ( ); - name = applo; + name = myApp; productName = "Hello World"; - productReference = 13B07F961A680F5B00A75B9A /* applo.app */; + productReference = 13B07F961A680F5B00A75B9A /* myApp.app */; productType = "com.apple.product-type.application"; }; - 2D02E47A1E0B4A5D006451C7 /* applo-tvOS */ = { + 2D02E47A1E0B4A5D006451C7 /* myApp-tvOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "applo-tvOS" */; + buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "myApp-tvOS" */; buildPhases = ( 2D02E4771E0B4A5D006451C7 /* Sources */, 2D02E4781E0B4A5D006451C7 /* Frameworks */, @@ -656,14 +660,14 @@ ); dependencies = ( ); - name = "applo-tvOS"; - productName = "applo-tvOS"; - productReference = 2D02E47B1E0B4A5D006451C7 /* applo-tvOS.app */; + name = "myApp-tvOS"; + productName = "myApp-tvOS"; + productReference = 2D02E47B1E0B4A5D006451C7 /* myApp-tvOS.app */; productType = "com.apple.product-type.application"; }; - 2D02E48F1E0B4A5D006451C7 /* applo-tvOSTests */ = { + 2D02E48F1E0B4A5D006451C7 /* myApp-tvOSTests */ = { isa = PBXNativeTarget; - buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "applo-tvOSTests" */; + buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "myApp-tvOSTests" */; buildPhases = ( 2D02E48C1E0B4A5D006451C7 /* Sources */, 2D02E48D1E0B4A5D006451C7 /* Frameworks */, @@ -674,9 +678,9 @@ dependencies = ( 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, ); - name = "applo-tvOSTests"; - productName = "applo-tvOSTests"; - productReference = 2D02E4901E0B4A5D006451C7 /* applo-tvOSTests.xctest */; + name = "myApp-tvOSTests"; + productName = "myApp-tvOSTests"; + productReference = 2D02E4901E0B4A5D006451C7 /* myApp-tvOSTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; /* End PBXNativeTarget section */ @@ -685,7 +689,7 @@ 83CBB9F71A601CBA00E9B192 /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 0610; + LastUpgradeCheck = 610; ORGANIZATIONNAME = Facebook; TargetAttributes = { 00E356ED1AD99517003FC87E = { @@ -703,7 +707,7 @@ }; }; }; - buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "applo" */; + buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "myApp" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; @@ -766,10 +770,10 @@ ); projectRoot = ""; targets = ( - 13B07F861A680F5B00A75B9A /* applo */, - 00E356ED1AD99517003FC87E /* apploTests */, - 2D02E47A1E0B4A5D006451C7 /* applo-tvOS */, - 2D02E48F1E0B4A5D006451C7 /* applo-tvOSTests */, + 13B07F861A680F5B00A75B9A /* myApp */, + 00E356ED1AD99517003FC87E /* myAppTests */, + 2D02E47A1E0B4A5D006451C7 /* myApp-tvOS */, + 2D02E48F1E0B4A5D006451C7 /* myApp-tvOSTests */, ); }; /* End PBXProject section */ @@ -1106,7 +1110,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 00E356F31AD99517003FC87E /* apploTests.m in Sources */, + 00E356F31AD99517003FC87E /* myAppTests.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1132,7 +1136,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2DCD954D1E0B4F2C00145EB5 /* apploTests.m in Sources */, + 2DCD954D1E0B4F2C00145EB5 /* myAppTests.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1141,12 +1145,12 @@ /* Begin PBXTargetDependency section */ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = 13B07F861A680F5B00A75B9A /* applo */; + target = 13B07F861A680F5B00A75B9A /* myApp */; targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; }; 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = 2D02E47A1E0B4A5D006451C7 /* applo-tvOS */; + target = 2D02E47A1E0B4A5D006451C7 /* myApp-tvOS */; targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -1158,7 +1162,7 @@ 13B07FB21A68108700A75B9A /* Base */, ); name = LaunchScreen.xib; - path = applo; + path = myApp; sourceTree = ""; }; /* End PBXVariantGroup section */ @@ -1172,7 +1176,7 @@ "DEBUG=1", "$(inherited)", ); - INFOPLIST_FILE = apploTests/Info.plist; + INFOPLIST_FILE = myAppTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; OTHER_LDFLAGS = ( @@ -1180,7 +1184,15 @@ "-lc++", ); PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/applo.app/applo"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/myApp.app/myApp"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)\..\node_modules\react-native-maps\lib\ios/**", + ); }; name = Debug; }; @@ -1189,7 +1201,7 @@ buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; COPY_PHASE_STRIP = NO; - INFOPLIST_FILE = apploTests/Info.plist; + INFOPLIST_FILE = myAppTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; OTHER_LDFLAGS = ( @@ -1197,7 +1209,15 @@ "-lc++", ); PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/applo.app/applo"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/myApp.app/myApp"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)\..\node_modules\react-native-maps\lib\ios/**", + ); }; name = Release; }; @@ -1207,15 +1227,19 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CURRENT_PROJECT_VERSION = 1; DEAD_CODE_STRIPPING = NO; - INFOPLIST_FILE = applo/Info.plist; + INFOPLIST_FILE = myApp/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", "-lc++", ); - PRODUCT_NAME = applo; + PRODUCT_NAME = myApp; VERSIONING_SYSTEM = "apple-generic"; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)\..\node_modules\react-native-maps\lib\ios/**", + ); }; name = Debug; }; @@ -1224,15 +1248,19 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CURRENT_PROJECT_VERSION = 1; - INFOPLIST_FILE = applo/Info.plist; + INFOPLIST_FILE = myApp/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", "-lc++", ); - PRODUCT_NAME = applo; + PRODUCT_NAME = myApp; VERSIONING_SYSTEM = "apple-generic"; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)\..\node_modules\react-native-maps\lib\ios/**", + ); }; name = Release; }; @@ -1248,17 +1276,25 @@ DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_TESTABILITY = YES; GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "applo-tvOS/Info.plist"; + INFOPLIST_FILE = "myApp-tvOS/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; OTHER_LDFLAGS = ( "-ObjC", "-lc++", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.applo-tvOS"; + PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.myApp-tvOS"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = appletvos; TARGETED_DEVICE_FAMILY = 3; TVOS_DEPLOYMENT_TARGET = 9.2; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)\..\node_modules\react-native-maps\lib\ios/**", + ); }; name = Debug; }; @@ -1274,17 +1310,25 @@ COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "applo-tvOS/Info.plist"; + INFOPLIST_FILE = "myApp-tvOS/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; OTHER_LDFLAGS = ( "-ObjC", "-lc++", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.applo-tvOS"; + PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.myApp-tvOS"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = appletvos; TARGETED_DEVICE_FAMILY = 3; TVOS_DEPLOYMENT_TARGET = 9.2; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)\..\node_modules\react-native-maps\lib\ios/**", + ); }; name = Release; }; @@ -1299,17 +1343,25 @@ DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_TESTABILITY = YES; GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "applo-tvOSTests/Info.plist"; + INFOPLIST_FILE = "myApp-tvOSTests/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; OTHER_LDFLAGS = ( "-ObjC", "-lc++", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.applo-tvOSTests"; + PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.myApp-tvOSTests"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = appletvos; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/applo-tvOS.app/applo-tvOS"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/myApp-tvOS.app/myApp-tvOS"; TVOS_DEPLOYMENT_TARGET = 10.1; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)\..\node_modules\react-native-maps\lib\ios/**", + ); }; name = Debug; }; @@ -1324,17 +1376,25 @@ COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "applo-tvOSTests/Info.plist"; + INFOPLIST_FILE = "myApp-tvOSTests/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; OTHER_LDFLAGS = ( "-ObjC", "-lc++", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.applo-tvOSTests"; + PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.myApp-tvOSTests"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = appletvos; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/applo-tvOS.app/applo-tvOS"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/myApp-tvOS.app/myApp-tvOS"; TVOS_DEPLOYMENT_TARGET = 10.1; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)\..\node_modules\react-native-maps\lib\ios/**", + ); }; name = Release; }; @@ -1417,7 +1477,7 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "apploTests" */ = { + 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "myAppTests" */ = { isa = XCConfigurationList; buildConfigurations = ( 00E356F61AD99517003FC87E /* Debug */, @@ -1426,7 +1486,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "applo" */ = { + 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "myApp" */ = { isa = XCConfigurationList; buildConfigurations = ( 13B07F941A680F5B00A75B9A /* Debug */, @@ -1435,7 +1495,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "applo-tvOS" */ = { + 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "myApp-tvOS" */ = { isa = XCConfigurationList; buildConfigurations = ( 2D02E4971E0B4A5E006451C7 /* Debug */, @@ -1444,7 +1504,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "applo-tvOSTests" */ = { + 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "myApp-tvOSTests" */ = { isa = XCConfigurationList; buildConfigurations = ( 2D02E4991E0B4A5E006451C7 /* Debug */, @@ -1453,7 +1513,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "applo" */ = { + 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "myApp" */ = { isa = XCConfigurationList; buildConfigurations = ( 83CBBA201A601CBA00E9B192 /* Debug */, diff --git a/ios/applo.xcodeproj/xcshareddata/xcschemes/applo-tvOS.xcscheme b/ios/myApp.xcodeproj/xcshareddata/xcschemes/myApp-tvOS.xcscheme similarity index 80% rename from ios/applo.xcodeproj/xcshareddata/xcschemes/applo-tvOS.xcscheme rename to ios/myApp.xcodeproj/xcshareddata/xcschemes/myApp-tvOS.xcscheme index d35e76e..f7dade0 100644 --- a/ios/applo.xcodeproj/xcshareddata/xcschemes/applo-tvOS.xcscheme +++ b/ios/myApp.xcodeproj/xcshareddata/xcschemes/myApp-tvOS.xcscheme @@ -29,9 +29,9 @@ + BuildableName = "myApp-tvOS.app" + BlueprintName = "myApp-tvOS" + ReferencedContainer = "container:myApp.xcodeproj"> + BuildableName = "myApp-tvOSTests.xctest" + BlueprintName = "myApp-tvOSTests" + ReferencedContainer = "container:myApp.xcodeproj"> @@ -61,9 +61,9 @@ + BuildableName = "myApp-tvOSTests.xctest" + BlueprintName = "myApp-tvOSTests" + ReferencedContainer = "container:myApp.xcodeproj"> @@ -71,9 +71,9 @@ + BuildableName = "myApp-tvOS.app" + BlueprintName = "myApp-tvOS" + ReferencedContainer = "container:myApp.xcodeproj"> @@ -94,9 +94,9 @@ + BuildableName = "myApp-tvOS.app" + BlueprintName = "myApp-tvOS" + ReferencedContainer = "container:myApp.xcodeproj"> @@ -113,9 +113,9 @@ + BuildableName = "myApp-tvOS.app" + BlueprintName = "myApp-tvOS" + ReferencedContainer = "container:myApp.xcodeproj"> diff --git a/ios/applo.xcodeproj/xcshareddata/xcschemes/applo.xcscheme b/ios/myApp.xcodeproj/xcshareddata/xcschemes/myApp.xcscheme similarity index 81% rename from ios/applo.xcodeproj/xcshareddata/xcschemes/applo.xcscheme rename to ios/myApp.xcodeproj/xcshareddata/xcschemes/myApp.xcscheme index 83e8294..d23dc34 100644 --- a/ios/applo.xcodeproj/xcshareddata/xcschemes/applo.xcscheme +++ b/ios/myApp.xcodeproj/xcshareddata/xcschemes/myApp.xcscheme @@ -29,9 +29,9 @@ + BuildableName = "myApp.app" + BlueprintName = "myApp" + ReferencedContainer = "container:myApp.xcodeproj"> + BuildableName = "myAppTests.xctest" + BlueprintName = "myAppTests" + ReferencedContainer = "container:myApp.xcodeproj"> @@ -61,9 +61,9 @@ + BuildableName = "myAppTests.xctest" + BlueprintName = "myAppTests" + ReferencedContainer = "container:myApp.xcodeproj"> @@ -71,9 +71,9 @@ + BuildableName = "myApp.app" + BlueprintName = "myApp" + ReferencedContainer = "container:myApp.xcodeproj"> @@ -94,9 +94,9 @@ + BuildableName = "myApp.app" + BlueprintName = "myApp" + ReferencedContainer = "container:myApp.xcodeproj"> @@ -113,9 +113,9 @@ + BuildableName = "myApp.app" + BlueprintName = "myApp" + ReferencedContainer = "container:myApp.xcodeproj"> diff --git a/ios/applo/AppDelegate.h b/ios/myApp/AppDelegate.h similarity index 100% rename from ios/applo/AppDelegate.h rename to ios/myApp/AppDelegate.h diff --git a/ios/applo/AppDelegate.m b/ios/myApp/AppDelegate.m similarity index 99% rename from ios/applo/AppDelegate.m rename to ios/myApp/AppDelegate.m index 7c8c861..578929f 100644 --- a/ios/applo/AppDelegate.m +++ b/ios/myApp/AppDelegate.m @@ -19,7 +19,7 @@ jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation - moduleName:@"applo" + moduleName:@"myApp" initialProperties:nil launchOptions:launchOptions]; rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; diff --git a/ios/applo/Base.lproj/LaunchScreen.xib b/ios/myApp/Base.lproj/LaunchScreen.xib similarity index 98% rename from ios/applo/Base.lproj/LaunchScreen.xib rename to ios/myApp/Base.lproj/LaunchScreen.xib index 95e73f9..3d30ece 100644 --- a/ios/applo/Base.lproj/LaunchScreen.xib +++ b/ios/myApp/Base.lproj/LaunchScreen.xib @@ -18,7 +18,7 @@ -