fix(Android): minSdkVersion fallback to default 21 but RN 0.74 require minSdkVersion 23 #2346
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR is a potential fix for #2295. Following suggestions in PR#2251 and Android Gradle Plugin version 7.0.0 changes:
minSdkVersion
was renamed tominSdk
,targetSdkVersion
was renamed totargetSdk
,compileSdkVersion
was renamed tocompileSdk
, this PR ensures compatibility with react native integrated with newest Android projects.Fixes #2295
Changes
In
adroid/build.gradle
file to get value forminSdkVersion
indefaultConfig
it will look forminSdkVersion
in rootProject then look forminSdk
and then fallback to default. Previously it looked forminSdkVersion
and fallback if not found.Similar logic for
targetSdkVersion
andcompileSdkVersion
Test code and steps to reproduce
Checklist