Skip to content

Commit b95030a

Browse files
committed
clean files
1 parent 6bd22c9 commit b95030a

File tree

111 files changed

+11209
-61703
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+11209
-61703
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
> Why do I have a folder named ".expo" in my project?
2+
3+
The ".expo" folder is created when an Expo project is started using "expo start" command.
4+
5+
> What do the files contain?
6+
7+
- "devices.json": contains information about devices that have recently opened this project. This is used to populate the "Development sessions" list in your development builds.
8+
- "packager-info.json": contains port numbers and process PIDs that are used to serve the application to the mobile device/simulator.
9+
- "settings.json": contains the server configuration that is used to serve the application manifest.
10+
11+
> Should I commit the ".expo" folder?
12+
13+
No, you should not share the ".expo" folder. It does not contain any information that is relevant for other developers working on the project, it is specific to your machine.
14+
15+
Upon project creation, the ".expo" folder is already added to your ".gitignore" file.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"expoServerPort": 8081,
3+
"packagerPort": 8081
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"dependencies": "4015377116a2dc6181726ee37e8dc51455f9a300",
3+
"devDependencies": "6f3f830d029ecde026746180e46f699cc53d3b39"
4+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"scheme": "com.tolacambo.CosyncJWTReactExpo",
3+
"hostType": "lan",
4+
"lanType": "ip",
5+
"devClient": true,
6+
"dev": true,
7+
"minify": false,
8+
"urlRandomness": null,
9+
"https": false
10+
}

CosyncJWT/CosyncJWTExpo/.expo/xcodebuild-error.log

Whitespace-only changes.

CosyncJWT/CosyncJWTExpo/.expo/xcodebuild.log

Lines changed: 11174 additions & 0 deletions
Large diffs are not rendered by default.

CosyncJWT/CosyncJWTExpo/screens/LoginScreen.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ import { AuthContext } from '../context/AuthContext';
4343

4444
const LoginScreen = props => {
4545

46-
let [userEmail, setUserEmail] = useState('[email protected]');
47-
let [userPassword, setUserPassword] = useState('qwerty');
46+
let [userEmail, setUserEmail] = useState('');
47+
let [userPassword, setUserPassword] = useState('');
4848
let [loading, setLoading] = useState(false);
4949
let [isCompleteLogin, setCompleteLogin] = useState(false);
5050
let [loginCode, setLoginCode] = useState('');

CosyncJWT/ReactNative-Expo/ExpoCosyncJWT/.gitignore

Lines changed: 0 additions & 120 deletions
This file was deleted.

CosyncJWT/ReactNative-Expo/ExpoCosyncJWT/App.js

Lines changed: 0 additions & 61 deletions
This file was deleted.

CosyncJWT/ReactNative-Expo/ExpoCosyncJWT/README.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)