First of all, make sure the version of flutter and rust is the version specified in here
- Ensure the protoc-gen is installed
which protoc-gen-dart
- Ensure the $HOME/.pub-cache/bin is shown in your $PATH.
echo $PATH
- Ensure VS Code uses bash as the default terminal You can check out this link for more information.
AppFlowy uses CodeGen
to generate some files that are ignored by git. So remove these files if there are
some errors, warnings, and reference errors.
Here are the files are safe to remove
AppFlowy/frontend/app_flowy/packages/flowy_sdk
AppFlowy/frontend/app_flowy/packages/appflowy_backend/lib/dispatch/dart_event
AppFlowy/frontend/app_flowy/packages/appflowy_backend/lib/protobuf
Flutter Web / Android / iOS is not supported yet. Please switch to macOS or other supported devices.
Q: How to use sql-data.json
https://github.com/AppFlowy-IO/appflowy/blob/main/backend/sqlx-data.json
A: Check the offline mode section:
https://docs.rs/sqlx/0.4.0-beta.1/sqlx/macro.query.html
A: https://opensource.com/article/19/7/create-pull-request-github
issue #112 Q: Hello, when I run app with vs code&android&mac m1, it gave error:
ArgumentError (Invalid argument(s): Failed to load dynamic library 'libdart_ffi.so': dlopen failed: library "libdart_ffi.so" not found)
A: Are you trying to build for android? Appflowy only supports desktops as of now
issue #191 Q. Unhandled Exception: Invalid argument(s): Failed to load dynamic library 'libdart_ffi.so' on Ubuntu.
A: I append ubuntu 21.04 source.list's content to /etc/apt/source.list
, and then upgrade libc6
.
# Append the ubuntu 20.04's source.list to its tail.
$ sudo vim /etc/apt/source.list
$ sudo apt upgrade libc6
Q: I follow the BUILD_ON_LINUX.md and failed on step 10 cargo make --profile development-linux-x86 flowy-sdk-dev
To Reproduce Just follow the BUILD_ON_LINUX.md
A: There are some issues in protobuf generation of appflowy on linux. If you skip that step, you can get it working. Protobuf has already been generated and is tracked in the repository. So it will work without regeneration as of now.
Q. While executing install_linux.sh script at compiling diesel_cli i'm getting following error:
error: linking with `cc` failed: exit status: 1
...
= note: /usr/bin/ld: cannot find -lsqlite3
collect2: error: ld returned 1 exit status
error: could not compile `diesel_cli` due to previous error
error: failed to compile `diesel_cli v2.0.0`, intermediate artifacts can be found at `/tmp/cargo-install4xWPP3`
⋊> ./app_flowy
** (app_flowy:21547): WARNING **: 03:05:10.061: Failed to start Flutter renderer: Unable to create a GL context
** (app_flowy:21547): WARNING **: 03:05:12.733: Unable to retrieve framework response: No engine to send to
[issue #255] (AppFlowy-IO/AppFlowy#255)
[ERROR:flutter/lib/ui/ui_dart_state.cc(198)] Unhandled Exception: Invalid argument(s): Failed to load dynamic library 'libdart_ffi.so': libssl.so.1.1: cannot open shared object file: No such file or directory
#0 _open (dart:ffi-patch/ffi_dynamic_library_patch.dart:12)
#1 new DynamicLibrary.open (dart:ffi-patch/ffi_dynamic_library_patch.dart:23)
#2 _open (package:flowy_sdk/ffi.dart:23)
#3 _dl (package:flowy_sdk/ffi.dart:10)
#4 _set_stream_port (package:flowy_sdk/ffi.dart)
#5 set_stream_port (package:flowy_sdk/ffi.dart)
#6 FlowySDK.init (package:flowy_sdk/flowy_sdk.dart:32)
#7 InitRustSDKTask.initialize.<anonymous closure> (package:app_flowy/startup/tasks/rust_sdk.dart:13)
#8 InitRustSDKTask.initialize.<anonymous closure> (package:app_flowy/startup/tasks/rust_sdk.dart:12)
#9 _rootRunUnary (dart:async/zone.dart:1434)
<asynchronous suspension>
#10 InitRustSDKTask.initialize (package:app_flowy/startup/tasks/rust_sdk.dart:12)
<asynchronous suspension>
#11 AppLauncher.launch (package:app_flowy/startup/startup.dart:99)
<asynchronous suspension>