Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
marchinram committed Aug 28, 2023
1 parent 9ecb1a4 commit 20a3c9b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.5
3.2.2
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'https://rubygems.org'

# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby '2.7.5'
ruby '3.2.2'

gem 'cocoapods', '~> 1.11', '>= 1.11.2'
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ DEPENDENCIES
cocoapods (~> 1.11, >= 1.11.2)

RUBY VERSION
ruby 2.7.5p203
ruby 3.2.2p53

BUNDLED WITH
2.1.4
9 changes: 4 additions & 5 deletions ios/RNMovementSample/AppDelegate.mm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

#import <React/RCTAppSetupUtils.h>

#import <MovementSdk/MovementSdk.h>
#import <MovementSdk/MovementSdk-Swift.h>
#import <movement-sdk-react-native/RNMovementSdk.h>

Expand Down Expand Up @@ -35,10 +34,10 @@ @implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[FSQMovementSdkManager sharedManager] configureWithConsumerKey:@"CONSUMER_KEY"
secret:@"CONSUMER_SECRET"
delegate:nil
completion:nil];
[[FSQMovementSdkManager shared] configureWithConsumerKey:@"CONSUMER_KEY"
secret:@"CONSUMER_SECRET"
delegate:nil
completion:nil];

RCTAppSetupPrepareApp(application);

Expand Down

0 comments on commit 20a3c9b

Please sign in to comment.