Mustafa Dur
Mustafa Dur
Sorry I don't speak Objective-C but you may use something like this. ``` swift extension String { func trim() -> String { return self.stringByTrimmingCharactersInSet(.whitespaceAndNewlineCharacterSet()) } func clean() ->String { return...
I was searching for a solution to resign IPA files besides using [Fastlane](https://github.com/fastlane/fastlane/blob/master/sigh/lib/assets/resign.sh). Therefore, I can list what I expect from ipa resigning. Most apps have multiple targets(Notification Extention,Watch App,...
Hi @indygreg Unfortunately I don't have any experience related to Rust. I don't think I can help with PR. However, if you need some sample files to understand how the...
This library, if implemented like Fastlane, can resign the application. For example, if you signed your app with an Ad Hoc provisioning profile you **must** sign with an App Store...
The unzipping and zipping part is the easiest part. The hardest part is handling signing without using Apple's codesign. Let me once again write the peculiarities of the signing. Most...
That's cool then. If it is implemented, this issue can be closed.
With the following modification, I could dump image2 with the below command ```diff diff --git a/profiledef.c b/profiledef.c index b9a648f..e8a4e7d 100644 --- a/profiledef.c +++ b/profiledef.c @@ -219,6 +219,14 @@ struct bcm2_profile...
I opened a PR https://github.com/jclehner/bcm2-utils/pull/46 I have a couple of questions. - Since dumping with serial is slow, is there a way to enable telnet console once again so I...
> Does this device still allow downloading a `GatewaySettings.bin` file? If so, it's possible that it can be modified to re-enable telnet using `bcm2cfg`. Unfortunately, they disabled downloading the `GatewaySettings.bin`...
If you are using default LockSmith setup then your service is setup with this code ```swift public let LocksmithDefaultService = Bundle.main.infoDictionary![String(kCFBundleIdentifierKey)] as? String ?? "com.locksmith.defaultService" ``` It means it is...