[PR #949] [MERGED] Android app with capacitor #1795

Closed
opened 2026-02-25 23:30:51 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/floccusaddon/floccus/pull/949
Author: @marcelklehr
Created: 8/31/2021
Status: Merged
Merged: 9/17/2021
Merged by: @marcelklehr

Base: developHead: capacitor


📝 Commits (10+)

  • 7721777 Start android app with nativescript-vue
  • 2010779 Refactor: Rename LocalTree to BrowserTree
  • cf92483 Refactor: Rename AccountStorage to BrowserAccountStorage
  • ce39ae8 Refactor: Move browser-specifics from Account to BrowserAccount
  • b9de0aa Move LocalTree to BrowserTree and disconnect it from Account and Sync strategies
  • 8642401 Move Controller to BrowserController
  • a891683 Remove nativescript
  • d0ea071 Refactor sync errors to avoid using i18n
  • e8d1775 Fix BrowserAccountStorage imports
  • 03c8684 Fix LocalTabs typings

📊 Changes

115 files changed (+27541 additions, -2523 deletions)

View changed files

📝 .github/workflows/build.yml (+4 -0)
📝 .github/workflows/tests.yml (+33 -13)
android/.gitignore (+96 -0)
android/.idea/compiler.xml (+6 -0)
android/.idea/jarRepositories.xml (+30 -0)
android/app/.gitignore (+2 -0)
android/app/build.gradle (+51 -0)
android/app/capacitor.build.gradle (+23 -0)
android/app/proguard-rules.pro (+21 -0)
android/app/src/main/AndroidManifest.xml (+50 -0)
android/app/src/main/assets/capacitor.config.json (+13 -0)
android/app/src/main/assets/capacitor.plugins.json (+22 -0)
android/app/src/main/java/org/handmadeideas/floccus/MainActivity.java (+23 -0)
android/app/src/main/res/drawable-land-hdpi/splash.png (+0 -0)
android/app/src/main/res/drawable-land-mdpi/splash.png (+0 -0)
android/app/src/main/res/drawable-land-xhdpi/splash.png (+0 -0)
android/app/src/main/res/drawable-land-xxhdpi/splash.png (+0 -0)
android/app/src/main/res/drawable-land-xxxhdpi/splash.png (+0 -0)
android/app/src/main/res/drawable-port-hdpi/splash.png (+0 -0)
android/app/src/main/res/drawable-port-mdpi/splash.png (+0 -0)

...and 80 more files

📄 Description

embarking on the road to #861

todo

preview

Peek 2021-09-03 13-34


🔄 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/floccusaddon/floccus/pull/949 **Author:** [@marcelklehr](https://github.com/marcelklehr) **Created:** 8/31/2021 **Status:** ✅ Merged **Merged:** 9/17/2021 **Merged by:** [@marcelklehr](https://github.com/marcelklehr) **Base:** `develop` ← **Head:** `capacitor` --- ### 📝 Commits (10+) - [`7721777`](https://github.com/floccusaddon/floccus/commit/7721777654f22f0e9a5ddfd6236af4ebf96c5e98) Start android app with nativescript-vue - [`2010779`](https://github.com/floccusaddon/floccus/commit/201077944afb4ba36bca5670a3e56fa3daaec680) Refactor: Rename LocalTree to BrowserTree - [`cf92483`](https://github.com/floccusaddon/floccus/commit/cf9248333ab9abebb9e992b28cbfc437634b73db) Refactor: Rename AccountStorage to BrowserAccountStorage - [`ce39ae8`](https://github.com/floccusaddon/floccus/commit/ce39ae8a3bc43df4550ce3430a65119f1971b001) Refactor: Move browser-specifics from Account to BrowserAccount - [`b9de0aa`](https://github.com/floccusaddon/floccus/commit/b9de0aa8580e05f1186bd6addc021a41d237254a) Move LocalTree to BrowserTree and disconnect it from Account and Sync strategies - [`8642401`](https://github.com/floccusaddon/floccus/commit/86424018afc6cac2fd77c2230deb5411719e33e6) Move Controller to BrowserController - [`a891683`](https://github.com/floccusaddon/floccus/commit/a8916833e06ded3b1776a0d9b1843ee5bd5f4734) Remove nativescript - [`d0ea071`](https://github.com/floccusaddon/floccus/commit/d0ea071b8798c783046f0cf45a1cabaaabbb1f78) Refactor sync errors to avoid using i18n - [`e8d1775`](https://github.com/floccusaddon/floccus/commit/e8d17750dc06f53b4d1fe8032dbd33712acaa5cd) Fix BrowserAccountStorage imports - [`03c8684`](https://github.com/floccusaddon/floccus/commit/03c868484677c306accf26d522b43636cbbc6f68) Fix LocalTabs typings ### 📊 Changes **115 files changed** (+27541 additions, -2523 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build.yml` (+4 -0) 📝 `.github/workflows/tests.yml` (+33 -13) ➕ `android/.gitignore` (+96 -0) ➕ `android/.idea/compiler.xml` (+6 -0) ➕ `android/.idea/jarRepositories.xml` (+30 -0) ➕ `android/app/.gitignore` (+2 -0) ➕ `android/app/build.gradle` (+51 -0) ➕ `android/app/capacitor.build.gradle` (+23 -0) ➕ `android/app/proguard-rules.pro` (+21 -0) ➕ `android/app/src/main/AndroidManifest.xml` (+50 -0) ➕ `android/app/src/main/assets/capacitor.config.json` (+13 -0) ➕ `android/app/src/main/assets/capacitor.plugins.json` (+22 -0) ➕ `android/app/src/main/java/org/handmadeideas/floccus/MainActivity.java` (+23 -0) ➕ `android/app/src/main/res/drawable-land-hdpi/splash.png` (+0 -0) ➕ `android/app/src/main/res/drawable-land-mdpi/splash.png` (+0 -0) ➕ `android/app/src/main/res/drawable-land-xhdpi/splash.png` (+0 -0) ➕ `android/app/src/main/res/drawable-land-xxhdpi/splash.png` (+0 -0) ➕ `android/app/src/main/res/drawable-land-xxxhdpi/splash.png` (+0 -0) ➕ `android/app/src/main/res/drawable-port-hdpi/splash.png` (+0 -0) ➕ `android/app/src/main/res/drawable-port-mdpi/splash.png` (+0 -0) _...and 80 more files_ </details> ### 📄 Description embarking on the road to #861 ### todo - [ ] Fix WebDAV adapter (depends on https://github.com/capacitor-community/http/issues/167) - [ ] Fix Google Drive adapter (depends on https://github.com/capacitor-community/http/issues/167) - [ ] Implement moving items - [ ] i18n ### preview ![Peek 2021-09-03 13-34](https://user-images.githubusercontent.com/986878/131999023-dccdea0f-54a0-4d0d-ab43-6337fa78b7f7.gif) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-25 23:30:51 +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/floccus#1795
No description provided.