(with: bool, without: bool, name: &str)
| 599 | if let Some(present) = out.android_startup_present { |
| 600 | println!("android startup present: {}", present); |
| 601 | } |
| 602 | if let Some(confidence) = out.android_startup_confidence.as_deref() { |
| 603 | println!("android startup confidence: {}", confidence); |
| 604 | } |
| 605 | if let Some(count) = out.android_startup_entrypoint_count { |
| 606 | println!("android startup entrypoints: {}", count); |
| 607 | } |
| 608 | if let Some(count) = out.android_startup_flutter_activity_count { |
| 609 | println!("android startup flutter activities: {}", count); |
| 610 | } |
| 611 | if let Some(total) = out.app_package_count_total { |
| 612 | println!("app packages: {}", total); |
| 613 | if let Some(top) = out.app_package_counts_top.as_ref() { |
| 614 | for item in top.iter().take(8) { |
| 615 | println!(" - {} ({})", item.package, item.functions); |
no outgoing calls
no test coverage detected