Skip to content

Commit 64b7ab9

Browse files
author
proggen
committed
update dependencies
1 parent 26b5758 commit 64b7ab9

File tree

8 files changed

+563
-654
lines changed

8 files changed

+563
-654
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ try {
135135
onDecryptionFailure,
136136
onMemberAdded,
137137
onMemberRemoved,
138+
onSubscriptionCount,
138139
});
139140

140141
await pusher.subscribe({ channelName });

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:7.2.0'
11+
classpath 'com.android.tools.build:gradle:7.3.0'
1212
// noinspection DifferentKotlinGradleVersion
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414
}

android/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# org.gradle.parallel=true
1313
#Fri Aug 19 11:19:42 CEST 2022
1414
PusherWebsocketReactNative_kotlinVersion=1.7.10
15-
PusherWebsocketReactNative_targetSdkVersion=32
16-
PusherWebsocketReactNative_compileSdkVersion=32
15+
PusherWebsocketReactNative_targetSdkVersion=33
16+
PusherWebsocketReactNative_compileSdkVersion=33
1717
android.useAndroidX=true
1818
android.enableJetifier=true

example/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
buildscript {
44
ext {
55
minSdkVersion = 21
6-
compileSdkVersion = 32
7-
targetSdkVersion = 32
6+
compileSdkVersion = 33
7+
targetSdkVersion = 33
88
}
99
repositories {
1010
google()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Mar 30 18:12:52 CEST 2022
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

example/android/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ rootProject.name = 'PusherWebsocketReactNativeExample'
22
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
33
include ':app'
44

5-
include ':pusherwebsocketreactnative'
6-
project(':pusherwebsocketreactnative').projectDir = new File(rootProject.projectDir, '../../android')
5+
include ':pusher-websocket-react-native'
6+
project(':pusher-websocket-react-native').projectDir = new File(rootProject.projectDir, '../../android')

example/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
"start": "npx react-native start"
1010
},
1111
"dependencies": {
12-
"@react-native-async-storage/async-storage": "^1.17.9",
12+
"@react-native-async-storage/async-storage": "^1.17.10",
1313
"crypto-es": "^1.2.7",
14-
"react": "17.0.2",
15-
"react-native": "0.68.3"
14+
"react": "18.2.0",
15+
"react-native": "0.70.1"
1616
},
1717
"devDependencies": {
18-
"@babel/core": "^7.18.10",
19-
"@babel/runtime": "^7.18.9",
18+
"@babel/core": "^7.19.1",
19+
"@babel/runtime": "^7.19.0",
2020
"babel-plugin-module-resolver": "^4.1.0",
21-
"metro-react-native-babel-preset": "^0.72.1"
21+
"metro-react-native-babel-preset": "^0.72.3"
2222
}
2323
}

0 commit comments

Comments
 (0)