Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 717 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 717 Bytes

mobile-entry-point

crates.io badge docs.rs badge CI Status

This 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!");
}