Jun Chen

Results 11 comments of Jun Chen

I googled and found out this might be a problem related to gradle, and I found that in the /node_module/react-native-splash/-screen/android/build.gradle are using **implementation** instead of **compile**, implementation is a new...

@vivikenen check out android/build.gredle what is your gredle version

I finally fixed this ! Upgrade your gradle is the solution.

If anyone have any other errors after upgrading gradle, then try to upgrade compileSdkVersion& buildToolsVersion in android/app/build.gradle

I reopened this issue cause I realized more and more people are having this issue, I think upgrading gradle would be the best solution, although it is quite painful. Hope...

@vikrantnegi ``` // in the android/build.gradle buildscript { ... } allprojects { ... } // add this subprojects { project.configurations.all { resolutionStrategy.eachDependency { details -> if (details.requested.group == 'com.android.support' &&...

`classpath 'com.android.tools.build:gradle:3.1.0'` Upgrading gradle is my solution though, you can try to upgrade `com.android.support:appcompat` first as mentioned by others above.

@alihesari In your android/app/build.gradle ![snipaste_2018-06-01_03-46-12](https://user-images.githubusercontent.com/31823768/40804620-694fd718-654e-11e8-9a5f-3e472a48e1f7.png)

Same issue here. The problem for is not even about the enableDynamicSizing. As long as the height of the modal is too low, it closes itself upon opening the keyboard....