-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.xml
More file actions
45 lines (38 loc) · 1.03 KB
/
notes.xml
File metadata and controls
45 lines (38 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Samples>
<EmptyScreen>
import React from 'react';
import { View } from "react-native";
export default function Sample(){
<View />
}
</EmptyScreen>
</Samples>
<StartCommands>
cd C:\Users\thais.maria.RODOMINAS\Documents\GitHub\MyQuotesApp
npx react-native start
cd C:\Users\thais.maria.RODOMINAS\Documents\GitHub\MyQuotesApp
npx react-native run-android
</StartCommands>
<Firebase>
<Android-build.gradle>
dependencies {
...
classpath 'com.google.gms:google-services:4.2.0'
}
</Android-build.gradle>
<Android-App-build.gradle>
defaultConfig {
multiDexEnabled true
}
dependencies {
implementation 'com.google.firebase:firebase-core:17.0.0'
implementation 'com.google.firebase:firebase-firestore:20.0.0'
implementation 'com.android.support:multidex:1.0.3'
}
//In the bottom
<react-native-paper Icons>
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
</react-native-paper Icons>
apply plugin: 'com.google.gms.google-services'
</Android-App-build.gradle>
</Firebase>