mirror of
https://github.com/jkcoxson/idevice.git
synced 2026-03-02 06:26:15 +01:00
Tools only looks up user apps
This commit is contained in:
@@ -60,7 +60,10 @@ async fn main() {
|
|||||||
let mut instproxy_client = InstallationProxyClient::connect(&*provider)
|
let mut instproxy_client = InstallationProxyClient::connect(&*provider)
|
||||||
.await
|
.await
|
||||||
.expect("Unable to connect to instproxy");
|
.expect("Unable to connect to instproxy");
|
||||||
let apps = instproxy_client.get_apps(None, None).await.unwrap();
|
let apps = instproxy_client
|
||||||
|
.get_apps(Some("User".to_string()), None)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
for app in apps.keys() {
|
for app in apps.keys() {
|
||||||
println!("{app}");
|
println!("{app}");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user