0

I am making an in-house (Enterprise) app. I want to delete other installed apps from the iOS device programmatically. I have successfully retrieved the installed apps' info (e.g. name, bundleId, version, icon etc.) using Apple's private framework methods. Please tell me how can I do that (i.e. delete an app). Thanks.

newenglander
  • 2,019
  • 24
  • 55
iOS_Learner
  • 159
  • 9

3 Answers3

2

Here is a solution (No jailbreak No crash) but its not working every time. Sometime it failed to uninstall application and return NO.

NSBundle *b = [NSBundle bundleWithPath:@"/System/Library/PrivateFrameworks/MobileCoreServices.framework"];
BOOL success = [b load];
if(success)
{
    Class LSApplicationWorkspace = NSClassFromString(@"LSApplicationWorkspace");
    id si = [LSApplicationWorkspace valueForKey:@"defaultWorkspace"];

    SEL selector=NSSelectorFromString(@"uninstallApplication:withOptions:");
    BOOL what=[si performSelector:selector withObject:@"Bundle_ID" withObject:nil];
}
Blind Ninja
  • 1,063
  • 13
  • 28
1

This is not possible with a non Jailbroken device, even with private APIs.

Rukshan
  • 7,902
  • 6
  • 43
  • 61
  • @sleepwalkersfx I found one method in Private Headers .... That is - (BOOL)uninstallApplication:(id)arg1 withOptions:(id)arg2; Its in LSApplicationworkspace. It takes two arguments. I passed first argument bundle identifier and second arguement was nil. This method deleted app successfully but after that crash occurred. – iOS_Learner Aug 12 '15 at 05:07
0

You will need an MDM solution, which gives the company quite a lot of power over enrolled devices. Using iOS software, there is no way whatsoever. And I'll just assume that your enterprise won't let jailbroken phones anywhere near it!

gnasher729
  • 51,477
  • 5
  • 75
  • 98