Skip to content

Commit 637be5d

Browse files
author
Luke Brandon Farrell
authored
fix(android): update compileSdkVersion to be compatible with React Native 0.72
fix(android): update compileSdkVersion to be compatible with React Native 0.72
2 parents 5007098 + e433725 commit 637be5d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
release:
99
name: Release
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v1

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ def safeExtGet(prop, fallback) {
1919
}
2020

2121
android {
22-
compileSdkVersion safeExtGet('FileUtils_compileSdkVersion', 29)
22+
compileSdkVersion safeExtGet('FileUtils_compileSdkVersion', 33)
2323
defaultConfig {
2424
minSdkVersion safeExtGet('FileUtils_minSdkVersion', 21)
25-
targetSdkVersion safeExtGet('FileUtils_targetSdkVersion', 29)
25+
targetSdkVersion safeExtGet('FileUtils_targetSdkVersion', 33)
2626
versionCode 1
2727
versionName "1.0"
2828

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qeepsake/react-native-file-utils",
3-
"version": "1.0.5",
3+
"version": "1.3.5",
44
"description": "Extract the MIME type of a file with React Native on iOS and Android (uses Java and Obj-C, not Node)",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

0 commit comments

Comments
 (0)