datetimepicker
datetimepicker copied to clipboard
@react-native-community/datetimepicker Module's build.gradle file and buildConfig field
Question
I have a general question about @react-native-community/datetimepicker module's build.gradle file. With AGP 8.0+ and the android.defaults.buildFeatures.buildConfig default value being false, will @react-native-community/datetimepicker module's build.gradle file explicitly set the value to true? Will it be part of a published release?
from documentation about AGP, we cannot explicitly set in the gradle.properties file android.defaults.buildFeatures.buildConfig=true as this has been deprecated and will be removed in AGP 9.0+
Module's build.gradle file:
android {
buildFeatures {
buildConfig true
}
}
Thank you for answering this question.