nucleartux / react-native-date

React Native date and time pickers for Android
MIT License
47 stars 20 forks source link

React 0.16 Error #10

Open danimasa opened 8 years ago

danimasa commented 8 years ago

I tried to use it with react 0.16 but I got the following error:

MainActivity.java:39: error: incompatible types: MainActivity cannot be converted to FragmentActivity
                .addPackage(new ReactDatePackage(this))
rmevans9 commented 8 years ago

Note in step 4 of the readme - it is changing the base class of your MainActivity. This is very important.

danimasa commented 8 years ago

Ok, changing the base class solved the problem. Thanks.