Skip to content

Commit 01fbd41

Browse files
committed
Updates with out messages
1 parent 783e530 commit 01fbd41

File tree

5 files changed

+80
-42
lines changed

5 files changed

+80
-42
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,5 @@ android/app/libs
4141
android/keystores/debug.keystore
4242
ios/GoogleService-Info.plist
4343
config/development.js
44+
config/development*.js
45+
ios/GoogleService-Info*

app/components/Entrance/index.js

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class Entrance extends Component{
3535
this.state.transformAnim,
3636
{toValue: 50,
3737
duration: 1200,
38-
delay:2000,
38+
delay:1600,
3939
easing: Easing.elastic(2),
4040
},
4141
).start();
@@ -44,18 +44,22 @@ export class Entrance extends Component{
4444
{toValue: 0,
4545
duration: 800,
4646
easing: Easing.elastic(1),
47-
delay:2200,
47+
delay:1600,
4848
},
4949
).start();
5050
setTimeout(() => {
5151
this.props.hideThis();
52-
}, 3300);
52+
}, 2000);
5353
}
5454

5555
render () {
5656
return(
5757
<Animated.View style={[styles.entrance,{opacity:this.state.opacityAnim}]}>
58-
<AnimatedIcon size={60} style={[styles.twitter,{transform:[{scale:this.state.transformAnim}]}]} name="social-twitter"></AnimatedIcon>
58+
<AnimatedIcon size={60}
59+
style={[styles.icon,
60+
{transform:[{scale:this.state.transformAnim}]}
61+
]}
62+
name="ios-notifications-outline" />
5963
</Animated.View>
6064
)
6165
}
@@ -64,13 +68,24 @@ export class Entrance extends Component{
6468
export default Entrance;
6569

6670
const styles = StyleSheet.create({
71+
container: {
72+
width: sizing.width,
73+
height: sizing.height
74+
},
6775
entrance:{
6876
position: "absolute",
6977
top:0, left:0,
78+
bottom: 0, right: 0,
7079
height: sizing.height,
7180
width: sizing.width,
7281
backgroundColor:"#1b95e0",
7382
alignItems:"center",
7483
justifyContent:"center"
75-
}
84+
},
85+
icon:{
86+
color:"#fff",
87+
position:"relative",
88+
top: -20,
89+
textAlign: "center"
90+
},
7691
});

app/containers/App.js

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,52 @@ import {
99
} from 'react-native'
1010

1111
import FirestackNavigator from '../components/Navigation/Navigator'
12+
import sizing from '../utils/sizing';
13+
import Entrance from '../components/Entrance'
1214

1315
export class App extends React.Component {
1416

17+
constructor(props, context) {
18+
super(props, context);
19+
20+
this.state = {
21+
showEntrance: true
22+
}
23+
}
24+
25+
_hideEntrance() {
26+
this.setState({showEntrance: false});
27+
}
28+
1529
_navigate({type}) {
1630
console.log('_navigate called with type', type);
1731
}
1832

1933
render() {
34+
let entrance = this.state.showEntrance ?
35+
<Entrance hideThis={() => this._hideEntrance() }/> :
36+
<View></View>;
37+
2038
const {firestack, navigationState} = this.props;
39+
2140
return (
2241
<View style={styles.container}>
2342
<FirestackNavigator
2443
{...this.props}
2544
firestack={firestack}
2645
navigationState={navigationState}
2746
navigate={this._navigate.bind(this)} />
47+
{/* entrance */}
2848
</View>
2949
)
3050
}
3151
}
3252

3353
const styles = StyleSheet.create({
3454
container: {
35-
flex: 1
55+
flex: 1,
56+
width: sizing.width,
57+
height: sizing.height
3658
}
3759
})
3860

ios/FirestackApp.xcodeproj/project.pbxproj

Lines changed: 32 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,18 @@
2222
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
2323
140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
2424
146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
25-
19E8C03521CB41C29E35A895 /* libFirestack.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C4ABD54D516A46C9B2D6126A /* libFirestack.a */; };
2625
1BB9346E5CBD4089AE6CA21E /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B808222ADB44437DA36DCDF9 /* Foundation.ttf */; };
2726
312ED60BB2A348208454DC71 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8AD21815E4A44D239F9534EF /* Zocial.ttf */; };
2827
3292109EDFC74E2EA3382AE7 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CD1C51677EA04F9098CC993B /* EvilIcons.ttf */; };
28+
3F3FF7DEEF2F4BA9AA0D2BA4 /* libFirestack.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C4202E819964FA480112ED5 /* libFirestack.a */; };
2929
4568701C1A8A4585B4BA4357 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 544026725FD0496BAA65856C /* Ionicons.ttf */; };
3030
4E0702F83A654041B3B8ED66 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 73665BEC25D84E3F9E808CBC /* MaterialIcons.ttf */; };
3131
652B0EA2CF124EC1B94BD16C /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0EB2DA65D8144CB7AEE992EB /* Entypo.ttf */; };
3232
7F2768C575184BBB9EE606FE /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = ED824E9D6604436D9C2098A8 /* Octicons.ttf */; };
3333
832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
3434
92C51B91D42E48249FF35703 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2AE12C0154994575B88D3503 /* FontAwesome.ttf */; };
3535
AB7BCCC7E7984E1BAE8A1483 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C199524C8BC47899BE343FF /* libRNVectorIcons.a */; };
36-
D93A035F1D863657003F6214 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = D93A035E1D863657003F6214 /* GoogleService-Info.plist */; };
37-
D9BF0C661D829CA100B63A25 /* libFirestack.a in Embed frameworks */ = {isa = PBXBuildFile; fileRef = D9BF0C5A1D829C8A00B63A25 /* libFirestack.a */; };
36+
D90883011D89C36F00FB6742 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = D90883001D89C36F00FB6742 /* GoogleService-Info.plist */; };
3837
/* End PBXBuildFile section */
3938

4039
/* Begin PBXContainerItemProxy section */
@@ -115,20 +114,20 @@
115114
remoteGlobalIDString = 58B5119B1A9E6C1200147676;
116115
remoteInfo = RCTText;
117116
};
117+
D90882F11D89C1FE00FB6742 /* PBXContainerItemProxy */ = {
118+
isa = PBXContainerItemProxy;
119+
containerPortal = 5C79FCFB39474BEE9482AD64 /* Firestack.xcodeproj */;
120+
proxyType = 2;
121+
remoteGlobalIDString = 134814201AA4EA6300B7C361;
122+
remoteInfo = Firestack;
123+
};
118124
D9136C661D86900800ADDA44 /* PBXContainerItemProxy */ = {
119125
isa = PBXContainerItemProxy;
120126
containerPortal = B96EC81B730846B88D21380E /* RNVectorIcons.xcodeproj */;
121127
proxyType = 2;
122128
remoteGlobalIDString = 5DBEB1501B18CEA900B34395;
123129
remoteInfo = RNVectorIcons;
124130
};
125-
D9BF0C591D829C8A00B63A25 /* PBXContainerItemProxy */ = {
126-
isa = PBXContainerItemProxy;
127-
containerPortal = 06A761EAC24846858BBD9CA8 /* Firestack.xcodeproj */;
128-
proxyType = 2;
129-
remoteGlobalIDString = 134814201AA4EA6300B7C361;
130-
remoteInfo = Firestack;
131-
};
132131
/* End PBXContainerItemProxy section */
133132

134133
/* Begin PBXCopyFilesBuildPhase section */
@@ -138,7 +137,6 @@
138137
dstPath = "";
139138
dstSubfolderSpec = 10;
140139
files = (
141-
D9BF0C661D829CA100B63A25 /* libFirestack.a in Embed frameworks */,
142140
);
143141
name = "Embed frameworks";
144142
runOnlyForDeploymentPostprocessing = 0;
@@ -155,7 +153,6 @@
155153
00E356EE1AD99517003FC87E /* FirestackAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FirestackAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
156154
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
157155
00E356F21AD99517003FC87E /* FirestackAppTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FirestackAppTests.m; sourceTree = "<group>"; };
158-
06A761EAC24846858BBD9CA8 /* Firestack.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = Firestack.xcodeproj; path = "../node_modules/react-native-firestack/ios/Firestack.xcodeproj"; sourceTree = "<group>"; };
159156
0EB2DA65D8144CB7AEE992EB /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = "<group>"; };
160157
139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
161158
139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
@@ -168,17 +165,18 @@
168165
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = FirestackApp/main.m; sourceTree = "<group>"; };
169166
146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
170167
2AE12C0154994575B88D3503 /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = "<group>"; };
168+
2C4202E819964FA480112ED5 /* libFirestack.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = archive.ar; path = libFirestack.a; sourceTree = "<group>"; };
171169
4C199524C8BC47899BE343FF /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = "<group>"; };
172170
544026725FD0496BAA65856C /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = "<group>"; };
171+
5C79FCFB39474BEE9482AD64 /* Firestack.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = Firestack.xcodeproj; path = "../node_modules/react-native-firestack/ios/Firestack.xcodeproj"; sourceTree = "<group>"; };
173172
73665BEC25D84E3F9E808CBC /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = "<group>"; };
174173
78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
175174
832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
176175
8AD21815E4A44D239F9534EF /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = "<group>"; };
177176
B808222ADB44437DA36DCDF9 /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = "<group>"; };
178177
B96EC81B730846B88D21380E /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = "<group>"; };
179-
C4ABD54D516A46C9B2D6126A /* libFirestack.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = archive.ar; path = libFirestack.a; sourceTree = "<group>"; };
180178
CD1C51677EA04F9098CC993B /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = "<group>"; };
181-
D93A035E1D863657003F6214 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
179+
D90883001D89C36F00FB6742 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
182180
ED824E9D6604436D9C2098A8 /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 0; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = "<group>"; };
183181
/* End PBXFileReference section */
184182

@@ -205,8 +203,8 @@
205203
832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
206204
00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
207205
139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
208-
19E8C03521CB41C29E35A895 /* libFirestack.a in Frameworks */,
209206
AB7BCCC7E7984E1BAE8A1483 /* libRNVectorIcons.a in Frameworks */,
207+
3F3FF7DEEF2F4BA9AA0D2BA4 /* libFirestack.a in Frameworks */,
210208
);
211209
runOnlyForDeploymentPostprocessing = 0;
212210
};
@@ -344,8 +342,8 @@
344342
832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
345343
00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
346344
139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
347-
06A761EAC24846858BBD9CA8 /* Firestack.xcodeproj */,
348345
B96EC81B730846B88D21380E /* RNVectorIcons.xcodeproj */,
346+
5C79FCFB39474BEE9482AD64 /* Firestack.xcodeproj */,
349347
);
350348
name = Libraries;
351349
sourceTree = "<group>";
@@ -361,7 +359,7 @@
361359
83CBB9F61A601CBA00E9B192 = {
362360
isa = PBXGroup;
363361
children = (
364-
D93A035E1D863657003F6214 /* GoogleService-Info.plist */,
362+
D90883001D89C36F00FB6742 /* GoogleService-Info.plist */,
365363
13B07FAE1A68108700A75B9A /* FirestackApp */,
366364
832341AE1AAA6A7D00B99B32 /* Libraries */,
367365
00E356EF1AD99517003FC87E /* FirestackAppTests */,
@@ -381,18 +379,18 @@
381379
name = Products;
382380
sourceTree = "<group>";
383381
};
384-
D9136C581D86900800ADDA44 /* Products */ = {
382+
D90882EE1D89C1FE00FB6742 /* Products */ = {
385383
isa = PBXGroup;
386384
children = (
387-
D9136C671D86900800ADDA44 /* libRNVectorIcons.a */,
385+
D90882F21D89C1FE00FB6742 /* libFirestack.a */,
388386
);
389387
name = Products;
390388
sourceTree = "<group>";
391389
};
392-
D9BF0C561D829C8A00B63A25 /* Products */ = {
390+
D9136C581D86900800ADDA44 /* Products */ = {
393391
isa = PBXGroup;
394392
children = (
395-
D9BF0C5A1D829C8A00B63A25 /* libFirestack.a */,
393+
D9136C671D86900800ADDA44 /* libRNVectorIcons.a */,
396394
);
397395
name = Products;
398396
sourceTree = "<group>";
@@ -465,8 +463,8 @@
465463
projectDirPath = "";
466464
projectReferences = (
467465
{
468-
ProductGroup = D9BF0C561D829C8A00B63A25 /* Products */;
469-
ProjectRef = 06A761EAC24846858BBD9CA8 /* Firestack.xcodeproj */;
466+
ProductGroup = D90882EE1D89C1FE00FB6742 /* Products */;
467+
ProjectRef = 5C79FCFB39474BEE9482AD64 /* Firestack.xcodeproj */;
470468
},
471469
{
472470
ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
@@ -592,18 +590,18 @@
592590
remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
593591
sourceTree = BUILT_PRODUCTS_DIR;
594592
};
595-
D9136C671D86900800ADDA44 /* libRNVectorIcons.a */ = {
593+
D90882F21D89C1FE00FB6742 /* libFirestack.a */ = {
596594
isa = PBXReferenceProxy;
597595
fileType = archive.ar;
598-
path = libRNVectorIcons.a;
599-
remoteRef = D9136C661D86900800ADDA44 /* PBXContainerItemProxy */;
596+
path = libFirestack.a;
597+
remoteRef = D90882F11D89C1FE00FB6742 /* PBXContainerItemProxy */;
600598
sourceTree = BUILT_PRODUCTS_DIR;
601599
};
602-
D9BF0C5A1D829C8A00B63A25 /* libFirestack.a */ = {
600+
D9136C671D86900800ADDA44 /* libRNVectorIcons.a */ = {
603601
isa = PBXReferenceProxy;
604602
fileType = archive.ar;
605-
path = libFirestack.a;
606-
remoteRef = D9BF0C591D829C8A00B63A25 /* PBXContainerItemProxy */;
603+
path = libRNVectorIcons.a;
604+
remoteRef = D9136C661D86900800ADDA44 /* PBXContainerItemProxy */;
607605
sourceTree = BUILT_PRODUCTS_DIR;
608606
};
609607
/* End PBXReferenceProxy section */
@@ -622,9 +620,9 @@
622620
files = (
623621
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
624622
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
625-
D93A035F1D863657003F6214 /* GoogleService-Info.plist in Resources */,
626623
652B0EA2CF124EC1B94BD16C /* Entypo.ttf in Resources */,
627624
3292109EDFC74E2EA3382AE7 /* EvilIcons.ttf in Resources */,
625+
D90883011D89C36F00FB6742 /* GoogleService-Info.plist in Resources */,
628626
92C51B91D42E48249FF35703 /* FontAwesome.ttf in Resources */,
629627
1BB9346E5CBD4089AE6CA21E /* Foundation.ttf in Resources */,
630628
4568701C1A8A4585B4BA4357 /* Ionicons.ttf in Resources */,
@@ -708,7 +706,6 @@
708706
LIBRARY_SEARCH_PATHS = (
709707
"$(inherited)",
710708
"\"$(SRCROOT)/$(TARGET_NAME)\"",
711-
"\"$(SRCROOT)/$(TARGET_NAME)\"",
712709
);
713710
PRODUCT_NAME = "$(TARGET_NAME)";
714711
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FirestackApp.app/FirestackApp";
@@ -726,7 +723,6 @@
726723
LIBRARY_SEARCH_PATHS = (
727724
"$(inherited)",
728725
"\"$(SRCROOT)/$(TARGET_NAME)\"",
729-
"\"$(SRCROOT)/$(TARGET_NAME)\"",
730726
);
731727
PRODUCT_NAME = "$(TARGET_NAME)";
732728
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FirestackApp.app/FirestackApp";
@@ -742,8 +738,8 @@
742738
"$(inherited)",
743739
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
744740
"$(SRCROOT)/../node_modules/react-native/React/**",
745-
"$(SRCROOT)/../node_modules/react-native-firestack/ios/Firestack/**",
746741
"$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
742+
"$(SRCROOT)/../node_modules/react-native-firestack/ios/Firestack/**",
747743
);
748744
INFOPLIST_FILE = FirestackApp/Info.plist;
749745
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
@@ -766,8 +762,8 @@
766762
"$(inherited)",
767763
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
768764
"$(SRCROOT)/../node_modules/react-native/React/**",
769-
"$(SRCROOT)/../node_modules/react-native-firestack/ios/Firestack/**",
770765
"$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
766+
"$(SRCROOT)/../node_modules/react-native-firestack/ios/Firestack/**",
771767
);
772768
INFOPLIST_FILE = FirestackApp/Info.plist;
773769
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
@@ -820,8 +816,8 @@
820816
"$(inherited)",
821817
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
822818
"$(SRCROOT)/../node_modules/react-native/React/**",
823-
"$(SRCROOT)/../node_modules/react-native-firestack/ios/Firestack/**",
824819
"$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
820+
"$(SRCROOT)/../node_modules/react-native-firestack/ios/Firestack/**",
825821
);
826822
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
827823
MTL_ENABLE_DEBUG_INFO = YES;
@@ -862,8 +858,8 @@
862858
"$(inherited)",
863859
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
864860
"$(SRCROOT)/../node_modules/react-native/React/**",
865-
"$(SRCROOT)/../node_modules/react-native-firestack/ios/Firestack/**",
866861
"$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
862+
"$(SRCROOT)/../node_modules/react-native-firestack/ios/Firestack/**",
867863
);
868864
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
869865
MTL_ENABLE_DEBUG_INFO = NO;

scripts/adb-logcat.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/local/env bash
2+
3+
adb logcat | grep $(adb shell ps | grep -i com.firestackapp | cut -c10-15)

0 commit comments

Comments
 (0)