Skip to content

Commit

Permalink
Merge pull request #478 from Adyen/version_pump
Browse files Browse the repository at this point in the history
Version pump
  • Loading branch information
descorp authored Jun 27, 2024
2 parents 9cdfab2 + 6fe80be commit 8e831ef
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![npm version](https://img.shields.io/npm/v/@adyen/react-native.svg?style=flat-square)](https://www.npmjs.com/package/@adyen/react-native)
[![Adyen iOS](https://img.shields.io/badge/ios-v5.8.0-brightgreen.svg)](https://github.com/Adyen/adyen-ios/releases/tag/5.8.0)
[![Adyen Android](https://img.shields.io/badge/android-v5.4.0-brightgreen.svg)](https://github.com/Adyen/adyen-android/releases/tag/5.4.0)
[![Adyen iOS](https://img.shields.io/badge/ios-v5.9.0-brightgreen.svg)](https://github.com/Adyen/adyen-ios/releases/tag/5.9.0)
[![Adyen Android](https://img.shields.io/badge/android-v5.5.0-brightgreen.svg)](https://github.com/Adyen/adyen-android/releases/tag/5.5.0)
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=Adyen_adyen-react-native&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=Adyen_adyen-react-native)


Expand Down
2 changes: 1 addition & 1 deletion adyen-react-native.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|


s.dependency "React-Core"
s.dependency "Adyen", '5.8.0'
s.dependency "Adyen", '5.9.0'
s.resource_bundles = { 'adyen-react-native' => [ 'ios/PrivacyInfo.xcprivacy' ] }

end
10 changes: 9 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ apply plugin: 'kotlin-android'
apply from: 'jacoco.gradle'

android {
namespace "com.adyenreactnativesdk"
compileSdk safeExtGet('compileSdkVersion', 34)
defaultConfig {
minSdkVersion safeExtGet('minSdkVersion', 21)
Expand All @@ -41,6 +42,9 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
}

repositories {
Expand All @@ -57,7 +61,11 @@ repositories {
dependencies {
//noinspection GradleDynamicVersion
api "com.facebook.react:react-native:+" // From node_modules
implementation "com.adyen.checkout:drop-in:$adyen_version"
implementation("com.adyen.checkout:drop-in:$adyen_version") {
exclude group:'androidx.lifecycle'
}
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version"

//Tests
testImplementation testLibraries.json
Expand Down
5 changes: 4 additions & 1 deletion android/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ ext {
jacoco_version = '0.8.12'

// Adyen Dependencies
adyen_version = "5.4.0"
adyen_version = "5.5.0"

// Android Dependencies
lifecycle_version = "2.7.0"

// Tests
json_version = '20231013'
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<manifest package="com.adyenreactnativesdk"
<manifest
xmlns:android="http://schemas.android.com/apk/res/android">

<application>
Expand Down

0 comments on commit 8e831ef

Please sign in to comment.