[PR #327] [MERGED] Android app #726

Closed
opened 2026-03-03 00:22:55 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/327
Author: @Rokt33r
Created: 2/4/2020
Status: Merged
Merged: 2/4/2020
Merged by: @Rokt33r

Base: masterHead: mobile2


📝 Commits (10+)

  • 561d808 Setup mobile
  • 8be9082 Add viewport for mobile app
  • 282876b Implement generalStatus store for mobile
  • 524040c Add TopBarLayout
  • 057ca26 Implement basic features
  • 7382c31 Show nav item control button always
  • d30fbd2 Improve empty placeholder for note list
  • f1e9d76 Prepend icon to note list title
  • 15e8c16 Move TagList in NoteDetail
  • 2c391b3 Implement swipe menu

📊 Changes

82 files changed (+6123 additions, -1349 deletions)

View changed files

📝 .gitignore (+1 -0)
android/.gitignore (+14 -0)
android/app/.gitignore (+1 -0)
android/app/build.gradle (+36 -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 (+26 -0)
android/app/src/main/assets/.gitignore (+1 -0)
android/app/src/main/java/com/boostio/boostnote/MainActivity.kt (+53 -0)
android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml (+34 -0)
android/app/src/main/res/drawable/ic_launcher_background.xml (+170 -0)
android/app/src/main/res/layout/activity_main.xml (+15 -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)

...and 62 more files

📄 Description

No description provided


🔄 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/327 **Author:** [@Rokt33r](https://github.com/Rokt33r) **Created:** 2/4/2020 **Status:** ✅ Merged **Merged:** 2/4/2020 **Merged by:** [@Rokt33r](https://github.com/Rokt33r) **Base:** `master` ← **Head:** `mobile2` --- ### 📝 Commits (10+) - [`561d808`](https://github.com/BoostIO/BoostNote-App/commit/561d808f0a811aeb642f5cf95c27a659dd24f11c) Setup mobile - [`8be9082`](https://github.com/BoostIO/BoostNote-App/commit/8be9082ff5fbf0bcb564145467c519b283441f6f) Add viewport for mobile app - [`282876b`](https://github.com/BoostIO/BoostNote-App/commit/282876bff5192ee39310c44cce6185d1cf7fc11c) Implement generalStatus store for mobile - [`524040c`](https://github.com/BoostIO/BoostNote-App/commit/524040cf2556a7a0afe954ae85c1eef7e28b7d29) Add TopBarLayout - [`057ca26`](https://github.com/BoostIO/BoostNote-App/commit/057ca261d6c97c6282a939cf48e1f7e6ebae845d) Implement basic features - [`7382c31`](https://github.com/BoostIO/BoostNote-App/commit/7382c31e47e7d84d1551f1bfeb1f1ea7c6b23474) Show nav item control button always - [`d30fbd2`](https://github.com/BoostIO/BoostNote-App/commit/d30fbd2d31234fbe675daccc972bb0ea50260759) Improve empty placeholder for note list - [`f1e9d76`](https://github.com/BoostIO/BoostNote-App/commit/f1e9d7661984cc0c14c723c0a6dd070c996d6d99) Prepend icon to note list title - [`15e8c16`](https://github.com/BoostIO/BoostNote-App/commit/15e8c162d7a7a4150c866dfc775bdd20061b4686) Move TagList in NoteDetail - [`2c391b3`](https://github.com/BoostIO/BoostNote-App/commit/2c391b3d0054a9950446ed5c40eac9ce839049a4) Implement swipe menu ### 📊 Changes **82 files changed** (+6123 additions, -1349 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) ➕ `android/.gitignore` (+14 -0) ➕ `android/app/.gitignore` (+1 -0) ➕ `android/app/build.gradle` (+36 -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` (+26 -0) ➕ `android/app/src/main/assets/.gitignore` (+1 -0) ➕ `android/app/src/main/java/com/boostio/boostnote/MainActivity.kt` (+53 -0) ➕ `android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml` (+34 -0) ➕ `android/app/src/main/res/drawable/ic_launcher_background.xml` (+170 -0) ➕ `android/app/src/main/res/layout/activity_main.xml` (+15 -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) _...and 62 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 00:22:55 +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#726
No description provided.