Vasilii
Vasilii
@maldimirov You are awesome!
Hi @Ulisses1478 Thanks for your answer, but my question was different. In real life backend checks receipt.
@PazuC10 What's your version? Your code is almost same as mine
I have the same problem
Thanks @ApacheEx, `paramsSerializer` helps with that (I'm using `indices` in my case)
[Repository](https://github.com/indapublic/testpicker) **How to reproduce from scratch:** ```bash npx react-native init testpicker --template react-native-template-typescript --npm npm install --save @react-native-picker/picker cd android ./gradlew build ``` **Result:** ``` > Task :react-native-picker_picker:lint FAILED FAILURE:...
Seems like this will pass lint stage ``` allprojects { ... afterEvaluate { if (getPlugins().hasPlugin('android') || getPlugins().hasPlugin('android-library')) { configure(android.lintOptions) { abortOnError false checkReleaseBuilds false } } } } ```
Also it allow to use another types ``` import { StatusBarStyle } from "react-native"; export const lightTheme = { barStyle: "dark-content" as StatusBarStyle, backgroundColor: "#ffffff", textColor: "#000000", }; ```