mirror of
https://github.com/ivRodriguezCA/RE-iOS-Apps
synced 2026-01-09 18:42:49 +00:00
Merge pull request #15 from izmcm/patch-1
Fix Frida set userdefaults command
This commit is contained in:
@@ -467,8 +467,8 @@ If you've played around with the `CoinZa` application, you've probably noticed t
|
|||||||
- Up until this point all you've done is following the same steps that you did with `Cydia` but with `Frida`'s interactive console. But you have one step left, enabling the pro version:
|
- Up until this point all you've done is following the same steps that you did with `Cydia` but with `Frida`'s interactive console. But you have one step left, enabling the pro version:
|
||||||
```javascript
|
```javascript
|
||||||
function setProVersion() {
|
function setProVersion() {
|
||||||
var userDefaultsClass = ObjC.classes.NSUserDefaults;
|
var userDefaultsClass = ObjC.classes.NSUserDefaults.standardUserDefaults();
|
||||||
userDefaultsClass.setObject_forKey_(true,'isProVersion');
|
userDefaultsClass.setObject_forKey_('YES', 'isProVersion');
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
- Now if you increase the balance of any wallet you'll get an extra 20% for free!
|
- Now if you increase the balance of any wallet you'll get an extra 20% for free!
|
||||||
|
|||||||
Reference in New Issue
Block a user