Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions sandboxes/IntercomExpo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
},
"dependencies": {
"@intercom/intercom-react-native": "^7.0.1",
"expo": "^52.0.23",
"expo-build-properties": "~0.11.1",
"expo-status-bar": "~1.11.1",
"expo-system-ui": "~2.9.4",
"expo": "^51.0.0",
"expo-build-properties": "~0.12.5",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"react": "18.2.0",
"react-native": "0.73.6",
"react-native": "0.74.5",
"react-native-mmkv-storage": "^0.9.1"
},
"devDependencies": {
Expand Down
2,448 changes: 1,680 additions & 768 deletions sandboxes/IntercomExpo/yarn.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sandboxes/NotificationsSandbox/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ RUBY VERSION
ruby 2.6.10p210

BUNDLED WITH
1.17.2
2.1.4
1 change: 0 additions & 1 deletion sandboxes/NotificationsSandbox/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ android {
dependencies {
// The version of react-native is set by the React Native Gradle Plugin
implementation("com.facebook.react:react-android")
implementation("com.facebook.react:flipper-integration")

if (hermesEnabled.toBoolean()) {
implementation("com.facebook.react:hermes-android")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import com.facebook.react.ReactPackage
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost
import com.facebook.react.defaults.DefaultReactNativeHost
import com.facebook.react.flipper.ReactNativeFlipper
import com.facebook.soloader.SoLoader
import com.intercom.reactnative.IntercomModule

Expand Down Expand Up @@ -43,7 +42,5 @@ class MainApplication : Application(), ReactApplication {
}

IntercomModule.initialize(this, "apiKey", "appId"); // Add your Intercom configurations here

ReactNativeFlipper.initializeFlipper(this, reactNativeHost.reactInstanceManager)
}
}
12 changes: 6 additions & 6 deletions sandboxes/NotificationsSandbox/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
buildscript {
ext {
buildToolsVersion = "34.0.0"
minSdkVersion = 21
compileSdkVersion = 34
targetSdkVersion = 34
ndkVersion = "25.1.8937393"
kotlinVersion = "1.8.0"
buildToolsVersion = "35.0.0"
minSdkVersion = 23
compileSdkVersion = 35
targetSdkVersion = 35
ndkVersion = "26.1.10909125"
kotlinVersion = "1.9.22"
}
repositories {
google()
Expand Down
16 changes: 0 additions & 16 deletions sandboxes/NotificationsSandbox/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,6 @@ setup_permissions([
'Notifications',
])

# If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set.
# because `react-native-flipper` depends on (FlipperKit,...) that will be excluded
#
# To fix this you can also exclude `react-native-flipper` using a `react-native.config.js`
# ```js
# module.exports = {
# dependencies: {
# ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}),
# ```
flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled

linkage = ENV['USE_FRAMEWORKS']
if linkage != nil
Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
Expand All @@ -41,11 +30,6 @@ target 'notificationsandbox' do

use_react_native!(
:path => config[:reactNativePath],
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
:flipper_configuration => flipper_config,
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/.."
)
Expand Down
Loading