[PR #1049] [MERGED] Mobile App #1114

Closed
opened 2026-03-03 00:24:42 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/1049
Author: @Rokt33r
Created: 7/13/2021
Status: Merged
Merged: 7/26/2021
Merged by: @Rokt33r

Base: masterHead: mobile


📝 Commits (10+)

📊 Changes

276 files changed (+19106 additions, -98 deletions)

View changed files

📝 .env.default (+0 -1)
android/.gitignore (+16 -0)
android/app/.gitignore (+1 -0)
android/app/build.gradle (+49 -0)
android/app/proguard-rules.pro (+21 -0)
android/app/src/androidTest/java/com/boostio/boostnote/ExampleInstrumentedTest.kt (+24 -0)
android/app/src/main/AndroidManifest.xml (+40 -0)
android/app/src/main/java/com/boostio/boostnote/MainActivity.kt (+163 -0)
android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml (+24 -0)
android/app/src/main/res/drawable/ic_launcher_background.xml (+23 -0)
android/app/src/main/res/layout/activity_main.xml (+17 -0)
android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml (+5 -0)
android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml (+5 -0)
android/app/src/main/res/mipmap-hdpi/ic_launcher.png (+0 -0)
android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png (+0 -0)
android/app/src/main/res/mipmap-mdpi/ic_launcher.png (+0 -0)
android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png (+0 -0)
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png (+0 -0)
android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png (+0 -0)
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png (+0 -0)

...and 80 more files

📄 Description

Changes

Notes

  • Using the same api of desktop login. We probably want to change pathname of the route one day

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/BoostIO/BoostNote-App/pull/1049 **Author:** [@Rokt33r](https://github.com/Rokt33r) **Created:** 7/13/2021 **Status:** ✅ Merged **Merged:** 7/26/2021 **Merged by:** [@Rokt33r](https://github.com/Rokt33r) **Base:** `master` ← **Head:** `mobile` --- ### 📝 Commits (10+) - [`a8630d7`](https://github.com/BoostIO/BoostNote-App/commit/a8630d71d571d4921af2cbf1b9de2823ffaf98f7) Add mobile script - [`01439a5`](https://github.com/BoostIO/BoostNote-App/commit/01439a5395471fc4eb40648657a79d846f666618) Implement basic functionality - [`ba4dc5c`](https://github.com/BoostIO/BoostNote-App/commit/ba4dc5c22645111e659b0a1dff2b9e39431abf85) Fix navigator - [`1fb6eeb`](https://github.com/BoostIO/BoostNote-App/commit/1fb6eeb37ef637bc9f8c2c4daafa0c3d912865cc) Fix style errors in MarkdownView - [`85b2bb0`](https://github.com/BoostIO/BoostNote-App/commit/85b2bb05282ce2d5840ca07d870beb3b1eb9f594) Add justify-center className to ModalLine - [`bd5aec0`](https://github.com/BoostIO/BoostNote-App/commit/bd5aec0d936af5324b8fbfda8113cb140d6ab98a) Clean up settings modal - [`b336ecd`](https://github.com/BoostIO/BoostNote-App/commit/b336ecd69fb9b385c2295992ad36f13feb81cdd2) Justify placeholder text of RoundedImage - [`398a979`](https://github.com/BoostIO/BoostNote-App/commit/398a9792ce796c27f5ab0741dd08d09ac49d61fb) Clean up all pages - [`552bc90`](https://github.com/BoostIO/BoostNote-App/commit/552bc900167dc248a5b8e97fda84c05ece499f65) Implement SearchModal - [`87c0f82`](https://github.com/BoostIO/BoostNote-App/commit/87c0f82b2d1c3e9421630bf9068c84118d4e6bc2) Implement DocCreateModal ### 📊 Changes **276 files changed** (+19106 additions, -98 deletions) <details> <summary>View changed files</summary> 📝 `.env.default` (+0 -1) ➕ `android/.gitignore` (+16 -0) ➕ `android/app/.gitignore` (+1 -0) ➕ `android/app/build.gradle` (+49 -0) ➕ `android/app/proguard-rules.pro` (+21 -0) ➕ `android/app/src/androidTest/java/com/boostio/boostnote/ExampleInstrumentedTest.kt` (+24 -0) ➕ `android/app/src/main/AndroidManifest.xml` (+40 -0) ➕ `android/app/src/main/java/com/boostio/boostnote/MainActivity.kt` (+163 -0) ➕ `android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml` (+24 -0) ➕ `android/app/src/main/res/drawable/ic_launcher_background.xml` (+23 -0) ➕ `android/app/src/main/res/layout/activity_main.xml` (+17 -0) ➕ `android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml` (+5 -0) ➕ `android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml` (+5 -0) ➕ `android/app/src/main/res/mipmap-hdpi/ic_launcher.png` (+0 -0) ➕ `android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png` (+0 -0) ➕ `android/app/src/main/res/mipmap-mdpi/ic_launcher.png` (+0 -0) ➕ `android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png` (+0 -0) ➕ `android/app/src/main/res/mipmap-xhdpi/ic_launcher.png` (+0 -0) ➕ `android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png` (+0 -0) ➕ `android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png` (+0 -0) _...and 80 more files_ </details> ### 📄 Description # Changes - Added files for mobile - Frontend modules : /src/mobile/ - iOS Project : /ios/ - Android Project : /android/ - Added scripts for mobile(dev:mobile, build:mobile) https://github.com/BoostIO/BoostNote.next/pull/1049/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519 - Made SignInForrm responsive https://github.com/BoostIO/BoostNote.next/pull/1049/files#diff-19ec20ae74b5338e7d055bc5a3135f81ea678b11d76259e6f46193b6310833ed - Fixed conditional of blur handler of TagsAutoCOmpleteInput for iOS https://github.com/BoostIO/BoostNote.next/pull/1049/files#diff-558ce883365900f6cf2ea564b6c6c16a28ef87a03c5e0c144ce56dba853b3715 - Added getShortFormattedBoosthubDateTime method to lib/date. https://github.com/BoostIO/BoostNote.next/pull/1049/files#diff-3e2d18d38c96fdff05bcbfbb2bdcab5b29e46f5b3d0564c469688d9b52ab9182 - Added mobilePreferencesKey to localStorageKeys https://github.com/BoostIO/BoostNote.next/pull/1049/files#diff-95c3b380a47a919fda6b8b7eb1a375536c163fb03361e6e800816af7ba3178f5 - Discarded BOOST_NOTE_BASE_URL env var https://github.com/BoostIO/BoostNote.next/pull/1049/files#diff-c530b667ec8bc8abedbc2980da088c77dec4c8a33bedb7c551bc4b9345384509 - Fixed getOsName to support mobile device https://github.com/BoostIO/BoostNote.next/pull/1049/files#diff-c5d85ba90a1791dfff815ce751e96613e41c5818abe1d946b6dfa7b381f2ec6d - Fixed input type of switch. There is no switch type so browser will consider it as text input(keyboard is shown in iOS when switcher is focused) https://github.com/BoostIO/BoostNote.next/pull/1049/files#diff-51e2ddcf3ea5d38c64c2d518c009e8a0799404125173421403d38efdd3ead586 # Notes - Using the same api of desktop login. We probably want to change pathname of the route one day --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 00:24:42 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/BoostNote-App#1114
No description provided.