| Crates.io | mobile-entry-point |
| lib.rs | mobile-entry-point |
| version | 0.1.1 |
| created_at | 2020-11-06 19:10:26.251205+00 |
| updated_at | 2020-11-06 21:47:07.433704+00 |
| description | Generate app entry-point boilerplate for iOS & Android! |
| homepage | |
| repository | https://github.com/BrainiumLLC/mobile-entry-point |
| max_upload_size | |
| id | 309312 |
| size | 17,900 |
mobile-entry-pointThis attribute macro wraps a function to make it the entry-point for an iOS or Android mobile app. Use cargo-mobile to generate matching project files!
use mobile_entry_point::mobile_entry_point;
#[mobile_entry_point]
fn main() {
println!("Hello world!");
}