Vydia / react-native-background-upload

Upload files in your React Native app even while it's backgrounded. Supports Android and iOS, including camera roll assets.
MIT License
723 stars 330 forks source link

Do we need to -> Customizing Android Build Properties #245

Open siddharth-kt opened 3 years ago

siddharth-kt commented 3 years ago

As according to Docs we need to set

ext { targetSdkVersion = 23 compileSdkVersion = 23 buildToolsVersion = '23.0.2' }

in android/build.gradle

But according to latest react-native version it is by default,

ext { buildToolsVersion = "29.0.2" compileSdkVersion = 29 targetSdkVersion = 29 }

is it necessary to do these changes or is it optional ?