Skip to content

Commit ff25bff

Browse files
authored
fix(deps): add support for RN0.71.2 (#240)
BREAKING CHANGE: Bump minimal iOS requirement to 12.4
1 parent e0d5ce9 commit ff25bff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+5043
-1558
lines changed

.gitignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
*.log
22
*.hprof
3+
.cxx/
4+
*.keystore
5+
!debug.keystore
36

47
# OSX
58
#
@@ -52,15 +55,12 @@ npm-debug.log
5255
yarn-debug.log
5356
yarn-error.log
5457

55-
# BUCK
56-
buck-out/
57-
\.buckd/
58-
android/app/libs
59-
android/keystores/debug.keystore
60-
6158
# Expo
6259
.expo/*
6360

6461
# generated by bob
6562
lib/
6663
output/
64+
65+
# Temporary files created by Metro to check the health of the file watcher
66+
.metro-health-check*

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ npm install react-native-blob-courier
2222
## Requirements
2323

2424
- Android >= 24
25-
- Android Gradle Plugin >= 7
26-
- iOS >= 10
25+
- Android Gradle Plugin >= 7.5.1
26+
- iOS >= 12.4
2727
- JDK >= 11
28-
- React Native >= 0.66.x
28+
- React Native >= 0.68.x
2929

3030
_Note: you may have success with earlier versions of React Native but these are neither tested nor supported._
3131

android/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ android {
2727
compileSdkVersion project.ext.compile_sdk_version
2828
buildToolsVersion project.ext.build_tools_version
2929

30+
namespace "io.deckers.blob_courier"
3031
defaultConfig {
3132
minSdkVersion project.ext.min_sdk_version
3233
targetSdkVersion project.ext.target_sdk_version

android/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
xmlns:tools="http://schemas.android.com/tools"
3-
package="io.deckers.blob_courier">
2+
xmlns:tools="http://schemas.android.com/tools"
3+
package="io.deckers.blob_courier">
44

55
<uses-permission android:name="android.permission.INTERNET" />
66
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

example/.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18

example/.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.5
1+
2.7.6

example/Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4-
ruby '2.7.5'
4+
ruby File.read(File.join(__dir__, '.ruby-version')).strip
55

6-
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
6+
gem 'cocoapods', '~> 1.11', '>= 1.11.3'

0 commit comments

Comments
 (0)