2024-01-29 10:34:51 +01:00
2024-01-15 10:22:53 +01:00
2024-01-28 21:53:06 +01:00
2024-01-29 10:34:51 +01:00
2024-01-14 14:56:39 +01:00
2024-01-27 23:20:08 +01:00
2024-01-14 02:26:22 +01:00
2024-01-14 02:26:22 +01:00
2024-01-29 10:34:51 +01:00
2024-01-14 21:24:49 +01:00
2024-01-14 14:56:39 +01:00
2024-01-14 14:56:39 +01:00
2024-01-14 02:26:22 +01:00
2024-01-22 22:43:19 +01:00
2024-01-14 21:24:49 +01:00
2024-01-14 21:24:49 +01:00
2024-01-14 15:05:13 +01:00
2024-01-14 21:24:49 +01:00
2024-01-29 10:09:00 +01:00
2024-01-29 10:09:00 +01:00
2024-01-14 14:56:39 +01:00
2024-01-14 14:56:39 +01:00

movie-web native-app

Native-app for movie-web.

Getting started

pnpm install

// Having nx installed globally is recommended
pnpm install -g nx

// If you don't want nx installed globally, you can use the following command
(pnpm exec or npx) nx <command>

Running tasks

To execute tasks with Nx use the following syntax:

nx <target> <project> <...options>

For example, to run the mobile app:

Android

nx run mobile:android

iOS

nx run mobile:ios

Building archives

Android .apk

nx run mobile:prebuild --platform=android
cd apps/mobile/android && ./gradlew assembleRelease

iOS .app

Real device

nx run mobile:prebuild --platform=ios
cd apps/mobile/ios && xcodebuild archive -workspace movieweb.xcworkspace -scheme "movieweb" -sdk iphoneos -configuration "Release"  -archivePath "build/app.xcarchive" -destination generic/platform=iOS CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO

Simulator

nx run mobile:prebuild --platform=ios
cd apps/mobile/ios && xcodebuild archive -workspace movieweb.xcworkspace -scheme "movieweb" -sdk iphonesimulator -configuration "Release"  -archivePath "build/app.xcarchive" -destination "generic/platform=iOS Simulator" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO

Repository information

This project uses Nx to manage the monorepo. For more information about Nx, visit nx.dev.

Mobile app

The mobile app is built with React Native and Expo. For more information about Expo, visit expo.io.

Description
The native app version of movie-web
Readme 11 MiB
Languages
TypeScript 80.4%
JavaScript 15.9%
Handlebars 3.5%
CSS 0.2%