Skip to content

Commit

Permalink
Translations and Settings
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaIannoli committed Nov 11, 2023
1 parent db67352 commit 7605f22
Show file tree
Hide file tree
Showing 34 changed files with 19,679 additions and 0 deletions.
Binary file added app/JAM/.DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions app/JAM/.expo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
> Why do I have a folder named ".expo" in my project?
The ".expo" folder is created when an Expo project is started using "expo start" command.
> What do the files contain?
- "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.
- "settings.json": contains the server configuration that is used to serve the application manifest.
> Should I commit the ".expo" folder?
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.
Upon project creation, the ".expo" folder is already added to your ".gitignore" file.
3 changes: 3 additions & 0 deletions app/JAM/.expo/devices.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"devices": []
}
7 changes: 7 additions & 0 deletions app/JAM/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

132 changes: 132 additions & 0 deletions app/JAM/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions app/JAM/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import "./config/FirebaseConfig";
import RootNavigation from "./navigation/Index";
import {StreetsInfosProvider} from "./components/StreetsInfosProvider";

export default function App() {
return (
<StreetsInfosProvider>
<RootNavigation />
</StreetsInfosProvider>
)
}
Loading

0 comments on commit 7605f22

Please sign in to comment.