Skip to content

Commit

Permalink
React Native 0.75
Browse files Browse the repository at this point in the history
  • Loading branch information
hsjoberg committed Aug 17, 2024
1 parent 5bcdb43 commit 3311fc6
Show file tree
Hide file tree
Showing 12 changed files with 2,604 additions and 2,890 deletions.
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ GEM
specs:
CFPropertyList (3.0.6)
rexml
activesupport (6.1.7.4)
activesupport (6.1.7.8)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand Down Expand Up @@ -63,10 +63,10 @@ GEM
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
httpclient (2.8.3)
i18n (1.14.1)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.7.1)
minitest (5.18.1)
minitest (5.25.0)
molinillo (0.8.0)
nanaimo (0.3.0)
nap (1.1.0)
Expand All @@ -85,14 +85,14 @@ GEM
colored2 (~> 3.1)
nanaimo (~> 0.3.0)
rexml (~> 3.2.4)
zeitwerk (2.6.8)
zeitwerk (2.6.17)

PLATFORMS
ruby

DEPENDENCIES
activesupport (>= 6.1.7.3, < 7.1.0)
cocoapods (~> 1.13)
activesupport (>= 6.1.7.5, < 7.1.0)
cocoapods (>= 1.13, < 1.15)

RUBY VERSION
ruby 2.6.10p210
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import androidx.work.WorkerParameters;

import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.BridgeReactContext;
import com.reactnativecommunity.asyncstorage.ReactDatabaseSupplier;
import com.reactnativecommunity.asyncstorage.AsyncLocalStorageUtil;
import com.facebook.react.bridge.Arguments;
Expand Down Expand Up @@ -72,7 +73,7 @@ public class LndMobileScheduledSyncWorker extends ListenableWorker {
public LndMobileScheduledSyncWorker(@NonNull Context context, @NonNull WorkerParameters workerParams) {
super(context, workerParams);
dbSupplier = ReactDatabaseSupplier.getInstance(getApplicationContext());
blixtTor = new BlixtTor(new ReactApplicationContext(getApplicationContext()));
blixtTor = new BlixtTor(new BridgeReactContext(getApplicationContext()));
}

@Override
Expand All @@ -93,7 +94,7 @@ public ListenableFuture<Result> startWork() {
return null;
}

KeychainModule keychain = new KeychainModule(new ReactApplicationContext(getApplicationContext()));
KeychainModule keychain = new KeychainModule(new BridgeReactContext(getApplicationContext()));

WritableMap keychainOptions = Arguments.createMap();
WritableMap keychainOptionsAuthenticationPrompt = Arguments.createMap();
Expand Down
1 change: 1 addition & 0 deletions ios/BlixtWallet.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -739,6 +739,7 @@
OTHER_LDFLAGS = "$(inherited)";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
USE_HERMES = true;
};
name = Debug;
Expand Down
Loading

0 comments on commit 3311fc6

Please sign in to comment.