16 releases

0.2.0 Jul 20, 2023
0.1.10 Aug 8, 2022
0.1.9 Jul 26, 2022
0.1.6 Jun 30, 2022
0.0.4 Jun 7, 2021

#1727 in Parser implementations

Download history 51/week @ 2024-02-19 68/week @ 2024-02-26 6/week @ 2024-03-04 8/week @ 2024-03-11 13/week @ 2024-03-18 20/week @ 2024-03-25

52 downloads per month
Used in 6 crates (3 directly)

Apache-2.0

365KB
2.5K SLoC

Android Manifest

CI Info Crate Info API Docs Crate

AndroidManifest serializer and deserializer for Rust. This library will also likely continue to stay up to date with the official AndroidManifest specification as changes happen.

# Cargo.toml
[dependencies]
android-manifest = "*"

Create AndroidManifest.xml by yourself:

let manifest = AndroidManifest {
    package: "com.example.toggletest".to_string(),
    version_code: Some(1),
    version_name: Some("1.0".to_string()),
    application: Application {
        allow_backup: Some(true.into())),
        icon: Some(MipmapOrDrawableResource::mipmap("ic_launcher", None)),
        label: Some(StringResourceOrString::resource("app_name", None)),
        theme: Some(StyleResource::new("AppTheme", None)),
        activity: vec![Activity {
            label: Some(StringResourceOrString::resource("app_name", None)),
            name: "com.example.toggletest.MainActivity".to_string(),
            intent_filter: vec![IntentFilter {
                action: vec![Action {
                    name: Some("android.intent.action.MAIN".to_string()),
                }],
                category: vec![Category {
                    name: Some("android.intent.category.LAUNCHER".to_string()),
                }],
                ..Default::default()
            }],
            ..Default::default()
        }],
        ..Default::default()
    },
    ..Default::default()
};
let serialized_manifest = android_manifest::to_string_pretty(&manifest).unwrap();

Or parse any AndroidManifest.xml file:

let xml = r#"
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.example.toggletest"
          android:versionCode="1"
          android:versionName="1.0">
    <application android:allowBackup="true"
               android:icon="@drawable/ic_launcher"
               android:label="@string/app_name"
               android:theme="@style/AppTheme">
        <activity android:label="@string/app_name"
                  android:name="com.example.toggletest.MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>"#;
let manifest: AndroidManifest = android_manifest::from_str(xml).unwrap();

License

This project is licensed under Apache License, Version 2.0, (LICENSE or http://www.apache.org/licenses/LICENSE-2.0).

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in toml-rs by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.8–1.5MB
~33K SLoC