Skip to content

Commit 2652951

Browse files
committed
Enhanced mobile versions of MovieVerse
1 parent a75e82a commit 2652951

File tree

268 files changed

+38696
-9448
lines changed

Some content is hidden

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

268 files changed

+38696
-9448
lines changed

.vscode/settings.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"editor.tabSize": 2,
66
"editor.insertSpaces": true,
77
"editor.codeActionsOnSave": {
8-
"source.fixAll": true,
9-
"source.organizeImports": true
8+
"source.fixAll": "explicit",
9+
"source.organizeImports": "explicit"
1010
},
1111
"files.trimTrailingWhitespace": true,
1212
"files.insertFinalNewline": true,
@@ -53,4 +53,4 @@
5353
"ms-vscode.vscode-typescript-next",
5454
"dsznajder.es7-react-js-snippets"
5555
]
56-
}
56+
}

MovieVerse-Mobile/.idea/codeStyles/Project.xml

+123
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MovieVerse-Mobile/.idea/codeStyles/codeStyleConfig.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MovieVerse-Mobile/README.md

+44-1
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,54 @@ MovieVerse is a dynamic, user-friendly mobile application that offers an extensi
2121
- **Movie Details**: Tap on any movie to view detailed information, including ratings, overviews, and more.
2222
- **Responsive Design**: Enjoy a consistent and engaging user experience on both iPhones and iPads.
2323

24+
### And many more!
25+
2426
## Installation
2527

2628
1. **Download the App**: Visit the App Store and search for "MovieVerse" to download and install the app on your iOS device.
2729
2. **Open MovieVerse**: Tap on the MovieVerse icon on your home screen to launch the app.
2830

31+
## Development
32+
33+
### Prerequisites
34+
- [Xcode](https://developer.apple.com/xcode/) 12.5 or later
35+
- [CocoaPods](https://cocoapods.org/) 1.10.1 or later
36+
- [Android Studio](https://developer.android.com/studio) 4.2.1 or later
37+
- [Android SDK](https://developer.android.com/studio#downloads) 30.0.3 or later
38+
- [Apache Cordova](https://cordova.apache.org/) 10.0.0 or later
39+
- [Node.js](https://nodejs.org/en/) 14.17.0 or later
40+
- [npm](https://www.npmjs.com/) 6.14.13 or later
41+
42+
### Instructions
43+
1. **Clone the Repository**: Clone the repository to your local machine using the following command:
44+
```
45+
git clone
46+
```
47+
2. **Install Dependencies**: Navigate to the project directory and install the dependencies using the following command:
48+
```
49+
npm install
50+
```
51+
3. **Add iOS Platform**: Add the iOS platform to the project using the following command:
52+
```
53+
cordova platform add ios
54+
```
55+
4. **Add Android Platform**: Add the Android platform to the project using the following command:
56+
```
57+
cordova platform add android
58+
```
59+
5. **Build the Project**: Build the project using the following command:
60+
```
61+
cordova build ios
62+
cordova build android
63+
```
64+
6. **Run the Project**: Run the project using the following command:
65+
```
66+
cordova emulate ios
67+
cordova emulate android
68+
```
69+
7. **Open the Project**: Open the project in Xcode or Android Studio to view the source code and test the app within the simulator.
70+
8. **Enjoy coding!**
71+
2972
## Usage
3073

3174
### Browsing Movies
@@ -48,7 +91,7 @@ MovieVerse is a dynamic, user-friendly mobile application that offers an extensi
4891

4992
## Support
5093

51-
For support, feedback, or inquiries, please email us at hoangson091104@gmail.com.
94+
For support, feedback, or inquiries, please email us at [info@movie-verse.com](mailto:[email protected]).
5295

5396
## Updates and Feedback
5497

MovieVerse-Mobile/build.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"ios": {
3+
"debug": {
4+
"deploymentTarget": "17.0"
5+
},
6+
"release": {
7+
"deploymentTarget": "17.0"
8+
}
9+
}
10+
}

MovieVerse-Mobile/config.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<widget id="io.cordova.hellocordova" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
33
<name>MovieVerse</name>
44
<description>Your Ultimate Movie and Filmography Database</description>
5-
<author email="hoangson091104@gmail.com" href="https://hoangsonww.github.io/My-Portfolio-Website/">
5+
<author email="info@movie-verse.com" href="https://sonnguyenhoang.com/">
66
David Nguyen
77
</author>
88
<platform name="ios">
9-
<!-- iOS icons -->
9+
<!-- iOS icon -->
1010
<icon src="www/icons/iOSIcon.png" width="180" height="180"/>
1111
</platform>
1212
<platform name="android">
13-
<!-- Android icons -->
13+
<!-- Android icon -->
1414
<icon src="www/icons/AndroidIcon.png" density="xxxhdpi"/>
1515
</platform>
1616
<content src="index.html" />

0 commit comments

Comments
 (0)