[PR #826] [CLOSED] Android build #4372

Closed
opened 2026-03-23 21:37:31 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/826
Author: @rileyhawk1417
Created: 8/11/2022
Status: Closed

Base: mainHead: android_build


📝 Commits (10+)

  • 4824826 testing: checking android build scripts
  • 8d780fe testing: making android build
  • a52ad75 testing: checking android version
  • 9b26b74 fix: bump to supported kotlin version
  • 1258108 chores: 🛠️ bump up gradle build versions
  • 8428d9b testing: 🛠️ android openssl build
  • 5f084d5 tmp stash
  • a83c8c8 test: testing openssl on android
  • 31be768 refactor: shifting functions
  • 0ab4e0d Merge remote-tracking branch 'upstream/main' into droid_test

📊 Changes

25 files changed (+550 additions, -34 deletions)

View changed files

📝 frontend/.vscode/launch.json (+38 -0)
📝 frontend/.vscode/tasks.json (+56 -0)
📝 frontend/Makefile.toml (+25 -0)
frontend/app_flowy/android/README.md (+147 -0)
📝 frontend/app_flowy/android/app/build.gradle (+10 -3)
📝 frontend/app_flowy/android/app/src/main/AndroidManifest.xml (+1 -0)
📝 frontend/app_flowy/android/build.gradle (+1 -1)
📝 frontend/app_flowy/android/gradle.properties (+1 -0)
📝 frontend/app_flowy/android/settings.gradle (+16 -0)
📝 frontend/app_flowy/packages/flowy_infra_ui/android/build.gradle (+1 -0)
📝 frontend/app_flowy/packages/flowy_infra_ui/android/src/main/java/com/example/flowy_infra_ui/FlowyInfraUIPlugin.java (+0 -0)
📝 frontend/app_flowy/packages/flowy_infra_ui/example/android/app/build.gradle (+20 -3)
frontend/app_flowy/packages/flowy_infra_ui/example/android/app/src/main/java/com/example/flowy_infra_ui_example/MainActivity.java (+0 -7)
📝 frontend/app_flowy/packages/flowy_infra_ui/example/android/build.gradle (+1 -1)
📝 frontend/app_flowy/packages/flowy_infra_ui/example/android/settings.gradle (+16 -0)
frontend/app_flowy/packages/flowy_infra_ui/example/example/android/app/src/main/java/com/example/flowy_infra_ui_example/FlutterActivity.java (+4 -0)
📝 frontend/app_flowy/packages/flowy_sdk/android/build.gradle (+2 -2)
📝 frontend/app_flowy/packages/flowy_sdk/example/android/app/build.gradle (+1 -1)
📝 frontend/app_flowy/packages/flowy_sdk/example/android/build.gradle (+1 -1)
📝 frontend/app_flowy/packages/flowy_sdk/lib/ffi.dart (+16 -11)

...and 5 more files

📄 Description

This branch is meant to allow AppFlowy to run on android devices.

Currently the app can run, but UI elements need to be resized to cater for mobile devices.


🔄 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/AppFlowy-IO/AppFlowy/pull/826 **Author:** [@rileyhawk1417](https://github.com/rileyhawk1417) **Created:** 8/11/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `android_build` --- ### 📝 Commits (10+) - [`4824826`](https://github.com/AppFlowy-IO/AppFlowy/commit/4824826aa39cb99b66cf7be99373870e411e333d) testing: checking android build scripts - [`8d780fe`](https://github.com/AppFlowy-IO/AppFlowy/commit/8d780feb723f630a2f3e50c1b79e430d9e769a17) testing: making android build - [`a52ad75`](https://github.com/AppFlowy-IO/AppFlowy/commit/a52ad75aa1ff8ba2fb9e4520dbccbfd8437209de) testing: checking android version - [`9b26b74`](https://github.com/AppFlowy-IO/AppFlowy/commit/9b26b74641b4c2933a1929c03fb484eb55ce175d) fix: bump to supported kotlin version - [`1258108`](https://github.com/AppFlowy-IO/AppFlowy/commit/1258108b5a87ff05fd03930d1234064ab4ffd49e) chores: 🛠️ bump up gradle build versions - [`8428d9b`](https://github.com/AppFlowy-IO/AppFlowy/commit/8428d9bd765a583e32f1737fa3c2f134d15d0e26) testing: 🛠️ android openssl build - [`5f084d5`](https://github.com/AppFlowy-IO/AppFlowy/commit/5f084d5c78a29620a7af77cadc79afdfe648875c) tmp stash - [`a83c8c8`](https://github.com/AppFlowy-IO/AppFlowy/commit/a83c8c8bc8c2779e2a9abe632d1ecc2a62981765) test: testing openssl on android - [`31be768`](https://github.com/AppFlowy-IO/AppFlowy/commit/31be76846b9b7b980e8678cee0b1bac95ecaa260) refactor: shifting functions - [`0ab4e0d`](https://github.com/AppFlowy-IO/AppFlowy/commit/0ab4e0dfdc7b1545ace31e8c0a728477cfbf202a) Merge remote-tracking branch 'upstream/main' into droid_test ### 📊 Changes **25 files changed** (+550 additions, -34 deletions) <details> <summary>View changed files</summary> 📝 `frontend/.vscode/launch.json` (+38 -0) 📝 `frontend/.vscode/tasks.json` (+56 -0) 📝 `frontend/Makefile.toml` (+25 -0) ➕ `frontend/app_flowy/android/README.md` (+147 -0) 📝 `frontend/app_flowy/android/app/build.gradle` (+10 -3) 📝 `frontend/app_flowy/android/app/src/main/AndroidManifest.xml` (+1 -0) 📝 `frontend/app_flowy/android/build.gradle` (+1 -1) 📝 `frontend/app_flowy/android/gradle.properties` (+1 -0) 📝 `frontend/app_flowy/android/settings.gradle` (+16 -0) 📝 `frontend/app_flowy/packages/flowy_infra_ui/android/build.gradle` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_infra_ui/android/src/main/java/com/example/flowy_infra_ui/FlowyInfraUIPlugin.java` (+0 -0) 📝 `frontend/app_flowy/packages/flowy_infra_ui/example/android/app/build.gradle` (+20 -3) ➖ `frontend/app_flowy/packages/flowy_infra_ui/example/android/app/src/main/java/com/example/flowy_infra_ui_example/MainActivity.java` (+0 -7) 📝 `frontend/app_flowy/packages/flowy_infra_ui/example/android/build.gradle` (+1 -1) 📝 `frontend/app_flowy/packages/flowy_infra_ui/example/android/settings.gradle` (+16 -0) ➕ `frontend/app_flowy/packages/flowy_infra_ui/example/example/android/app/src/main/java/com/example/flowy_infra_ui_example/FlutterActivity.java` (+4 -0) 📝 `frontend/app_flowy/packages/flowy_sdk/android/build.gradle` (+2 -2) 📝 `frontend/app_flowy/packages/flowy_sdk/example/android/app/build.gradle` (+1 -1) 📝 `frontend/app_flowy/packages/flowy_sdk/example/android/build.gradle` (+1 -1) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/ffi.dart` (+16 -11) _...and 5 more files_ </details> ### 📄 Description This branch is meant to allow AppFlowy to run on android devices. Currently the app can run, but UI elements need to be resized to cater for mobile devices. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:37:31 +00: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
AppFlowy-IO/AppFlowy#4372
No description provided.