crossbow-android 0.2.3

Cross-Platform build tools and toolkit for games
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This file is workaround for this RustEmbed issue:
//! https://github.com/pyrossh/rust-embed/issues/144

use rust_embed::RustEmbed;

#[derive(RustEmbed)]
#[folder = "./java/app"]
#[include = "src/*"]
#[include = "*.xml"]
#[include = "*.gradle"]
#[exclude = "build/"]
#[exclude = "libs/"]
pub struct CrossbowAndroidAppTemplate;