Vietnamese Lunar Calendar mobile application built with Expo and React Native for both iOS and Android platforms.
cd mobile
npx react-native run-android
npx react-native run-android --mode release
credentials.json is generated from Expocredentials.jsonversionCode and versionName in mobile\android\app\build.gradlecd android
./gradlew assembleRelease # APK
./gradlew bundleRelease # AAB (recommended for Play Store)
eas build --platform android
CFBundleShortVersionString in mobile\ios\LchmAI\Info.plist# Generate ios folder
npx expo prebuild --platform ios
npm install
cd ios && pod install && cd ..
cd mobile
# For testing (no Apple account needed)
eas build --platform ios --profile preview
# For App Store (Apple Developer account required)
eas build --platform ios --profile production
# Submit to App Store
eas submit --platform ios