beefe / react-native-picker

A Native Picker with high performance.
1.75k stars 785 forks source link

Build Release RN 0.60 Android Failed #388

Open mattop1709 opened 5 years ago

mattop1709 commented 5 years ago

Having my app build on CI/CD has caused error due to AndroidX..requesting the maintainers to upgrade to AndroidX.

tomacotuna commented 5 years ago

Same here

kevin871223 commented 5 years ago

same here

pliybird commented 5 years ago

Same here

zinete commented 5 years ago

same here

Chris0215 commented 5 years ago

same here

wangxue-git commented 5 years ago

Having my app build on CI/CD has caused error due to AndroidX..requesting the maintainers to upgrade to AndroidX.

RN0.60以上版本编译出错解决了么,我也是,作者这个控件是不更新了么,大伙有没有一样的控件能使用的推荐一下,感谢啦

btav commented 4 years ago

There is a PR to resolve this issue. However, maintainers have not merged it yet. I fixed it in a fork and been using that instead. https://github.com/btav/react-native-picker

brrr commented 4 years ago

use @btav 's fork, or use jetify:

"devDependencies": { ... "jetifier": "^1.6.4", ... }

then

npx jetify

keepzouba commented 4 years ago

Modify the build.gradle of react-native-pickper

compileSdkVersion 28 buildToolsVersion "28.0.3"

defaultConfig {
    minSdkVersion 26
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"