Skip to content

Commit

Permalink
Merge pull request #252 from bounswe/3design_mobile
Browse files Browse the repository at this point in the history
Mobile app finalized for first milestone
  • Loading branch information
oguzkagnici authored Oct 21, 2024
2 parents b2c5b7f + 87f2a16 commit 41862f4
Show file tree
Hide file tree
Showing 32 changed files with 93,968 additions and 0 deletions.
35 changes: 35 additions & 0 deletions 3Design/mobile/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files

# dependencies
node_modules/

# Expo
.expo/
dist/
web-build/

# Native
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision

# Metro
.metro-health-check*

# debug
npm-debug.*
yarn-debug.*
yarn-error.*

# macOS
.DS_Store
*.pem

# env files
.env*

# typescript
*.tsbuildinfo
Binary file added 3Design/mobile/3Design.apk
Binary file not shown.
20 changes: 20 additions & 0 deletions 3Design/mobile/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { NavigationContainer } from '@react-navigation/native';

import StackNavigator from './app/navigation/StackNavigator';
import { CategoryProvider } from './app/context/CategoryContext';
import { PostScreenProvider } from './app/context/PostScreenContext';
import { AuthProvider } from './app/context/AuthContext';

export default function App() {
return (
<AuthProvider>
<PostScreenProvider>
<CategoryProvider>
<NavigationContainer>
<StackNavigator />
</NavigationContainer>
</CategoryProvider>
</PostScreenProvider>
</AuthProvider>
);
}
45 changes: 45 additions & 0 deletions 3Design/mobile/app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"expo": {
"name": "3Design",
"slug": "3Design",
"version": "0.1.0",
"orientation": "portrait",
"icon": "./app/assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./app/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./app/assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"permissions": ["INTERNET"],
"package": "com.onurcerli.ThreeDesign"
},
"web": {
"favicon": "./app/assets/favicon.png"
},
"plugins": [
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
]
],
"extra": {
"eas": {
"projectId": "b7f9f8c1-944b-488c-b640-b9c0d50edefd"
}
},
"assetBundlePatterns": ["app/assets/*"]
}
}
Loading

0 comments on commit 41862f4

Please sign in to comment.