Skip to content

Commit

Permalink
Merge pull request #4914 from bithyve/dev
Browse files Browse the repository at this point in the history
Release v1.2.10
  • Loading branch information
pratyakxx authored Jul 15, 2024
2 parents f84c2cd + 9c58d17 commit d63c179
Show file tree
Hide file tree
Showing 95 changed files with 7,468 additions and 7,691 deletions.
2 changes: 2 additions & 0 deletions App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import config from 'src/utils/service-utilities/config';
import { customTheme } from './src/navigation/themes';
import Navigator from './src/navigation/Navigator';
import { persistor, store } from './src/store/store';
import NotificationHandler from 'src/hooks/useNotificationHandler';

LogBox.ignoreLogs([
"[react-native-gesture-handler] Seems like you're using an old API with gesture components, check out new Gestures system!",
Expand Down Expand Up @@ -47,6 +48,7 @@ function App() {
return (
<GestureHandlerRootView style={{ flex: 1 }}>
<NativeBaseProvider theme={customTheme}>
<NotificationHandler />
<StatusBar translucent backgroundColor="transparent" barStyle="light-content" />
<LocalizationProvider>
<AppContextProvider>
Expand Down
14 changes: 7 additions & 7 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ android {
applicationId "io.hexawallet.keeper"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 369
versionName "1.2.9"
versionCode 374
versionName "1.2.10"
missingDimensionStrategy 'react-native-camera', 'general'
missingDimensionStrategy 'store', 'play'
multiDexEnabled true
Expand Down Expand Up @@ -167,12 +167,12 @@ dependencies {
strictly '1.3.1'
}
}
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}")
// debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}")

debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
exclude group:'com.squareup.okhttp3', module:'okhttp'
}
debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}")
// debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
// exclude group:'com.squareup.okhttp3', module:'okhttp'
// }
// debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}")

if (hermesEnabled.toBoolean()) {
implementation("com.facebook.react:hermes-android")
Expand Down
75 changes: 0 additions & 75 deletions android/app/src/debug/java/com/hexa_keeper/ReactNativeFlipper.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ public void onCreate() {
// If you opted-in for the New Architecture, we load the native entry point for this app.
DefaultNewArchitectureEntryPoint.load();
}
io.hexawallet.keeper.ReactNativeFlipper.initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
// io.hexawallet.keeper.ReactNativeFlipper.initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
}
}
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android.useAndroidX=true
android.enableJetifier=true

# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.182.0
# FLIPPER_VERSION=0.182.0

# Use this property to specify which architecture you want to build.
# You can also override it from the CLI using
Expand Down
2 changes: 1 addition & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def common_pods
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
:flipper_configuration => flipper_config,
# :flipper_configuration => flipper_config,
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/.."
)
Expand Down
Loading

0 comments on commit d63c179

Please sign in to comment.