Jun Chen
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 
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....
I am having the same issue