An Android app for saving links into folders. Share a link from any app on your phone and it goes straight into a folder.
Built with Angular, Ionic and Capacitor.
- Save links into folders you make
- Share into it from any other app
- Titles and thumbnails appear on their own
- Drag to reorder
- Fix a title by hand if a site won't give one
- Stored on the phone, no account
npm install
npm start # http://localhost:4200npx ng build # build the web app
npx cap sync android # copy it into the Android project
cd android
./gradlew assembleRelease # build and sign the APKThe APK lands in android/app/build/outputs/apk/release/.
To sign it you need your own keystore, and a keystore.properties file in android/ pointing at
it. Both are git-ignored.
One file, src/app/services/folder.ts, holds all the folders and
links and everything you can do to them. The three screens just show that data. Nothing is stored
anywhere else.