Skip to content

Commit

Permalink
Update framework to v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mattijah committed Jun 9, 2020
1 parent 2ced0a3 commit b608a0b
Show file tree
Hide file tree
Showing 54 changed files with 384 additions and 33 deletions.
Empty file modified Examples/ObjC-DemoApp/DemoApp.xcodeproj/project.pbxproj
100644 → 100755
Empty file.
Empty file.
Empty file modified Examples/ObjC-DemoApp/DemoApp/AppDelegate.h
100644 → 100755
Empty file.
5 changes: 3 additions & 2 deletions Examples/ObjC-DemoApp/DemoApp/AppDelegate.m
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ @implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
#pragma mark 1. Register your app
[WombatAuth.shared registerAppWithName:@"Testing App" icon:[NSURL URLWithString:@"https://assets.website-files.com/5cde8c951beecf3604688a58/5d120b2cba030f78d70c7236_Wombat_logo_transparent-p-500.png"]];
// You can optionally also specify `chainID`. If omitted, the wallet will use the EOS blockchain as default
[WombatAuth.shared registerAppWithName:@"Testing App" icon:[NSURL URLWithString:@"https://assets.website-files.com/5cde8c951beecf3604688a58/5d120b2cba030f78d70c7236_Wombat_logo_transparent-p-500.png"] chainID: nil];
return YES;
}

Expand All @@ -33,7 +34,7 @@ - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDiction
[self showAlertWithTitle:@"Push" message:transactionID];
break;
}
case WMActionTypeSignTransaction: {
case WMActionTypeSignData: {
NSString *signature = [result.data valueForKey:@"signature"];
[self showAlertWithTitle:@"Sign" message:signature];
break;
Expand Down
Empty file modified Examples/ObjC-DemoApp/DemoApp/Base.lproj/Main.storyboard
100644 → 100755
Empty file.
Empty file modified Examples/ObjC-DemoApp/DemoApp/Info.plist
100644 → 100755
Empty file.
Empty file modified Examples/ObjC-DemoApp/DemoApp/ViewController.h
100644 → 100755
Empty file.
Empty file modified Examples/ObjC-DemoApp/DemoApp/ViewController.m
100644 → 100755
Empty file.
Empty file modified Examples/ObjC-DemoApp/DemoApp/main.m
100644 → 100755
Empty file.
Loading

0 comments on commit b608a0b

Please sign in to comment.