A small resume editor for writing, previewing, and printing a clean resume. The web app is the primary version. The Android app is a native Kotlin/Jetpack Compose starter that follows the same data shape and visual direction.
Run it locally with npm.
npm install
npm run devUse PORT when the default port is busy.
PORT=3001 npm run devCheck and build before shipping.
npm run lint
npm run build
npm startThe Android project is in android/. Open that directory in Android Studio, or build the debug APK from the command line.
cd android
gradle assembleDebugInstall the debug build on a connected device or emulator.
~/Library/Android/sdk/platform-tools/adb install -r app/build/outputs/apk/debug/app-debug.apkThe web app includes template selection, theme selection, resume editing, HTML export, and print/PDF flow. The Android app currently includes the native shell, theme controls, section navigation, editable identity/contact fields, and a resume preview.