diff --git a/README.md b/README.md index 0b2a20e..6c6fd35 100644 --- a/README.md +++ b/README.md @@ -216,6 +216,9 @@ React Native wrapper for Intercom.io. Based off of [intercom-cordova](https://gi Note that calling `Intercom.registerIdentifiedUser({ userId: 'Bob' })` (or `Intercom.registerUnidentifiedUser()`) is required before using methods which require that Intercom know the current user… such as `Intercom.displayMessageComposer()`, etc. +# Migrating to v7 +Make sure to follow this: https://developers.intercom.com/installing-intercom/docs/migrating-to-v710 + # Usage ### Import or Require the module diff --git a/android/build.gradle b/android/build.gradle index 143bf77..72d80e6 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -38,6 +38,6 @@ repositories { dependencies { implementation 'com.facebook.react:react-native:+' - implementation 'io.intercom.android:intercom-sdk-base:6.+' + implementation 'io.intercom.android:intercom-sdk-base:7.+' } diff --git a/react-native-intercom.podspec b/react-native-intercom.podspec index 1b1b7d4..5159553 100644 --- a/react-native-intercom.podspec +++ b/react-native-intercom.podspec @@ -15,5 +15,5 @@ Pod::Spec.new do |s| s.frameworks = [ "Intercom" ] s.static_framework = true s.dependency 'React' - s.dependency 'Intercom', '~> 6.1.0' + s.dependency 'Intercom', '~> 7.1.0' end