Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IOAPPX-454] Parametrize the use of Kotlin and OkHttp versions to be used from libraries if needed #6574

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ dependencies {

implementation project(':react-native-cie')

implementation ("com.squareup.okhttp3:okhttp:4.9.2")
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.2'
implementation ("com.squareup.okhttp3:okhttp:${rootProject.ext.okhttpVersion}")
implementation ("com.squareup.okhttp3:logging-interceptor:${rootProject.ext.okhttpVersion}")

if (hermesEnabled.toBoolean()) {
implementation("com.facebook.react:hermes-android")
Expand Down
1 change: 1 addition & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ buildscript {
ndkVersion = "26.1.10909125"
kotlinVersion = "1.9.24"
firebaseMessagingVersion = "23.2.1"
okhttpVersion = "4.9.2"
}
repositories {
google()
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"@pagopa/io-react-native-secure-storage": "^0.2.0",
"@pagopa/io-react-native-wallet": "^0.27.0",
"@pagopa/io-react-native-zendesk": "^0.3.29",
"@pagopa/react-native-cie": "^1.4.0",
"@pagopa/react-native-cie": "https://github.com/pagopa/io-cie-sdk#ioappx-454",
"@pagopa/ts-commons": "^10.15.0",
"@react-native-async-storage/async-storage": "^2.0.0",
"@react-native-clipboard/clipboard": "^1.14.0",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3839,10 +3839,10 @@ __metadata:
languageName: node
linkType: hard

"@pagopa/react-native-cie@npm:^1.4.0":
"@pagopa/react-native-cie@https://github.com/pagopa/io-cie-sdk#ioappx-454":
version: 1.4.0
resolution: "@pagopa/react-native-cie@npm:1.4.0"
checksum: 742b53251d0bd5a530ee63dcb7a9e604b7a06fc848f4a5643b3fdc841935c92fa5f8453e3c7cb8006bcab7c27563ff88efb53528a1df0256cf53cb7c57f251b1
resolution: "@pagopa/react-native-cie@https://github.com/pagopa/io-cie-sdk.git#commit=f6072b47260a8683ee393b78d696498153fe97b7"
checksum: 5fef6dec62c2bd6df90b8c97451038acae4f6f9893c466d4bc8e19b306abf6c178ed7ba63eb22c3d6b86b5582bc3f4ab147a2c00c356c3702717059e4327c98d
languageName: node
linkType: hard

Expand Down Expand Up @@ -13569,7 +13569,7 @@ __metadata:
"@pagopa/io-react-native-wallet": ^0.27.0
"@pagopa/io-react-native-zendesk": ^0.3.29
"@pagopa/openapi-codegen-ts": ^14.0.0
"@pagopa/react-native-cie": ^1.4.0
"@pagopa/react-native-cie": "https://github.com/pagopa/io-cie-sdk#ioappx-454"
"@pagopa/ts-commons": ^10.15.0
"@react-native-async-storage/async-storage": ^2.0.0
"@react-native-clipboard/clipboard": ^1.14.0
Expand Down
Loading