MCPcopy Index your code
hub / github.com/NativeScript/SimDeck / is_android_component_name

Function is_android_component_name

packages/server/src/android.rs:1817–1822  ·  view source on GitHub ↗
(value: &str)

Source from the content-addressed store, hash-verified

1815}
1816
1817fn is_android_component_name(value: &str) -> bool {
1818 value
1819 .split_once('/')
1820 .map(|(package, activity)| !package.is_empty() && !activity.is_empty())
1821 .unwrap_or(false)
1822}
1823
1824fn android_cmdline_tool_path(name: &str) -> PathBuf {
1825 let root = sdk_root();

Callers 1

launch_packageMethod · 0.85

Calls 1

is_emptyMethod · 0.80

Tested by

no test coverage detected