Initial commit

This commit is contained in:
2024-05-05 16:10:00 -04:00
commit cca8173be4
18 changed files with 3706 additions and 0 deletions

25
README.md Normal file
View File

@@ -0,0 +1,25 @@
# Android eframe template
A basic eframe template with android support.
## Compile for Desktop
Run cargo as normal
```
cargo build
```
## Compile for Web
use [Trunk](https://trunkrs.dev/#install).
```
trunk build
```
## Compile for Android
use [xbuild](https://github.com/rust-mobile/xbuild).
```
x build --platform android --arch arm64
```
If this fails check that you have the required external build tools installed with
```
x doctor
```