jordanbyron / react-native-quick-actions

A react-native interface for Touch 3D home screen quick actions
MIT License
1.06k stars 93 forks source link

Fix Android Gradle "compile" deprecation warning #80

Closed AndrewJack closed 5 years ago

AndrewJack commented 5 years ago

Since RN 0.57 the android build tools were updated from 2.3.3 to v3.1 (https://github.com/facebook/react-native/commit/6eac2d4)

When using compile in the build.gradle file it generates the following error: WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html

I have changed the config from provided to api, the same as most react native libraries:

jordanbyron commented 5 years ago

Thanks for the update @AndrewJack!