Skip to content

Commit

Permalink
fix(android): update compileSdkVersion to be compatible with React Na…
Browse files Browse the repository at this point in the history
…tive 0.72

fix(android): update compileSdkVersion to be compatible with React Native 0.72
  • Loading branch information
Luke Brandon Farrell authored Oct 12, 2023
2 parents 5007098 + e433725 commit 637be5d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
release:
name: Release
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ def safeExtGet(prop, fallback) {
}

android {
compileSdkVersion safeExtGet('FileUtils_compileSdkVersion', 29)
compileSdkVersion safeExtGet('FileUtils_compileSdkVersion', 33)
defaultConfig {
minSdkVersion safeExtGet('FileUtils_minSdkVersion', 21)
targetSdkVersion safeExtGet('FileUtils_targetSdkVersion', 29)
targetSdkVersion safeExtGet('FileUtils_targetSdkVersion', 33)
versionCode 1
versionName "1.0"

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qeepsake/react-native-file-utils",
"version": "1.0.5",
"version": "1.3.5",
"description": "Extract the MIME type of a file with React Native on iOS and Android (uses Java and Obj-C, not Node)",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit 637be5d

Please sign in to comment.