How to enable ChatKit CKMadridService in jailbreaked iOS 5?

272 Views Asked by At

I'm writing an app like wifiSMS,but CKMadridService is always disabled.

NSLog(@"is madrid service supported ?  %hhd , Enabled? %hhd ",[CKMadridService isMadridSupported] ,[CKMadridService isMadridEnabled] );

how can i enable CKMadridService ?

2

There are 2 best solutions below

2
On

You could also try hooking CKMadridService and return YES always, maybe this will allow you to send messages from within any process

0
On

Looking at ChatKit disassembly, isMadridEnabled is checking caller app bundle identifier. It will return true only if bundle ID equals to com.apple.MobileSMS or com.apple.springboard. So you could try to inject your dylib into springboard in order to send iMessages this way. I don't know for sure but at least isMadridEnabled should return true.