Skip to content

Commit

Permalink
Merge pull request #26 from beac0n/feature/4-create-android-app
Browse files Browse the repository at this point in the history
Feature/4 create android app
  • Loading branch information
beac0n authored Oct 19, 2024
2 parents b9e215d + b5ec469 commit 28290be
Show file tree
Hide file tree
Showing 27 changed files with 5,480 additions and 443 deletions.
3 changes: 3 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[target.aarch64-linux-android]
ar = "/opt/android-ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-ar"
linker = "/opt/android-ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android35-clang"
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: target/release/client
asset_path: target/x86_64-unknown-linux-gnu/release/client
asset_name: client-${{ env.TAG_NAME }}-x86_64-linux
asset_content_type: application/octet-stream
- name: Upload Release Asset - Commander
Expand All @@ -144,7 +144,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: target/release/commander
asset_path: target/x86_64-unknown-linux-gnu/release/commander
asset_name: commander-${{ env.TAG_NAME }}-x86_64-linux
asset_content_type: application/octet-stream
- name: Upload Release Asset - Server
Expand All @@ -153,6 +153,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: target/release/server
asset_path: target/x86_64-unknown-linux-gnu/release/server
asset_name: server-${{ env.TAG_NAME }}-x86_64-linux
asset_content_type: application/octet-stream
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"rust-lang.rust-analyzer",
"vadimcn.vscode-lldb",
"Slint.slint"
]
}
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
}
}
Loading

0 comments on commit 28290be

Please sign in to comment.