react-native-picker icon indicating copy to clipboard operation
react-native-picker copied to clipboard

Build Release RN 0.60 Android Failed

Open mattop1709 opened this issue 6 years ago • 9 comments

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

mattop1709 avatar Aug 02 '19 09:08 mattop1709

Same here

tomacotuna avatar Aug 07 '19 16:08 tomacotuna

same here

kevin871223 avatar Sep 03 '19 13:09 kevin871223

Same here

pliybird avatar Sep 03 '19 16:09 pliybird

same here

zinete avatar Sep 10 '19 10:09 zinete

same here

Chris0215 avatar Sep 12 '19 00:09 Chris0215

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

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

wangxue-git avatar Sep 24 '19 12:09 wangxue-git

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

btav avatar Nov 13 '19 15:11 btav

use @btav 's fork, or use jetify:

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

then

npx jetify

brrr avatar Dec 01 '19 13:12 brrr

Modify the build.gradle of react-native-pickper

compileSdkVersion 28 buildToolsVersion "28.0.3"

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

keepzouba avatar Feb 27 '20 03:02 keepzouba