Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ This plugin for working with Kaoinc 1S device and implements core messenger func
rustup target add armv7-linux-androideabi
rustup target add i686-linux-android
rustup target add aarch64-linux-android
rustup target add x86_64-linux-android
```
* Update local.properties file
```
Expand Down
2 changes: 1 addition & 1 deletion kaonic-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ android {
cargo {
module = "./kaonic"
libname = "kaonic"
targets = ["arm", "arm64", "x86"]
targets = ["arm", "arm64", "x86", "x86_64"]
verbose
profile = 'release'
features {
Expand Down
2 changes: 1 addition & 1 deletion kaonic-plugin/kaonic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ serde_json = "1.0.140"
rmp-serde = "1.3.0"

# reticulum-rs isn't public yet
reticulum = { path = "../../../reticulum-rs" }
reticulum = { path = "../../../Reticulum-rs" }

# Logging
log = "0.4.26"
Expand Down
2 changes: 2 additions & 0 deletions kaonic-plugin/kaonic/src/messenger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ async fn handle_in_data<T: Platform + Send + 'static>(
},
LinkEvent::Activated => {},
LinkEvent::Closed => {},
LinkEvent::Proof(_) => {},
}
},
_ = cancel.cancelled() => {
Expand Down Expand Up @@ -622,6 +623,7 @@ async fn handle_out_data<T: Platform + Send + 'static>(
},
LinkEvent::Activated => {},
LinkEvent::Closed => {},
LinkEvent::Proof(_) => {},
}
},
_ = cancel.cancelled() => {
Expand Down