Skip to content

Commit

Permalink
Merge pull request #464 from plaid/RN/v7.3.0
Browse files Browse the repository at this point in the history
React native SDK v7.3.0
  • Loading branch information
JeroenMols authored Feb 24, 2022
2 parents 8c9d7c0 + 4302684 commit 6bf3649
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
7 changes: 3 additions & 4 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,11 @@ apply plugin: "kotlin-android"
apply plugin: "kotlin-android-extensions"

android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
compileSdkVersion 31

defaultConfig {
minSdkVersion 21
targetSdkVersion 29
targetSdkVersion 31
versionCode 1
versionName "0.0.1"
}
Expand Down Expand Up @@ -66,7 +65,7 @@ repositories {

dependencies {
implementation "com.facebook.react:react-native:+"
implementation "com.plaid.link:sdk-core:3.7.0"
implementation "com.plaid.link:sdk-core:3.7.1"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "com.jakewharton.rxrelay2:rxrelay:2.1.1"
}
4 changes: 3 additions & 1 deletion example/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
android:launchMode="singleTask"
android:exported="true"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity"
android:exported="true"/>
</application>

</manifest>
4 changes: 2 additions & 2 deletions example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ buildscript {
ext {
buildToolsVersion = "30.0.2"
minSdkVersion = 21
compileSdkVersion = 30
targetSdkVersion = 30
compileSdkVersion = 31
targetSdkVersion = 31
}
repositories {
google()
Expand Down
2 changes: 1 addition & 1 deletion react-native-plaid-link-sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ Pod::Spec.new do |s|
s.source_files = "ios/*.{h,m}"

s.dependency 'React-Core'
s.dependency 'Plaid', '~> 2.3.2'
s.dependency 'Plaid', '~> 2.4.0'
end

0 comments on commit 6bf3649

Please sign in to comment.