Closed winderbro closed 2 years ago
@winderbro This requested feature can be dangerous because the root project settings may not be compatible with the Flurry plugin. Is this feature common to other plugins?
@winderbro This requested feature can be dangerous because the root project settings may not be compatible with the Flurry plugin. Is this feature common to other plugins?
Hello @poting-oath,
Many other packages use 'safeExtGet' method in order to avoid compatibility problems with their current react-native project. Indeed, other packages require at least a minSdkVersion at 21 which can result, in my case, a build failure as shown below:
This is the reason why minSdkVersion and targetSdkVersion should not be hardcoded.
In order to solve my issue, I had to change minSdkVersion 16 to minSdkVersion safeExtGet('minSdkVersion', 16) from react-native-flurry-sdk package. 😄
@Namachi06 Thanks for the info! The update will be available in the next release.
FYI, buildToolsVersion
will continue not defined here as Android guideline.
Thanks!
@winderbro @Namachi06 This implementation has been released in version 7.2.0. Thanks very much for your input!
This Feature Request is About Should support external SDK version on Android
Platform