README.md 953 B

occ-extension-key = 123456 occ-extension-alias = 123456

已经适配了 iPhone X

...... )

    EQ,
    NOTEQ,
    LIKE,
    GT,
    GTE,
    LT,
    LTE,
    IN,
    NOTIN,
    NULL,
    NOTNULL

如果 react-native-splash-screen 报编译错误 解决方法如下:


Goto node_modules -> react-native-splash-screen -> build.gradle Change

compileSdkVersion 26 buildToolsVersion "26.1.0" to compileSdkVersion 23 buildToolsVersion "23.0.1"

and

compile "com.android.support:appcompat-v7:26.1.0" to compile "com.android.support:appcompat-v7:23.0.1"

And then make sure your build.gradle on android -> app -> build.gradle has the same version

compileSdkVersion 23 buildToolsVersion "23.0.1"

and

compile "com.android.support:appcompat-v7:23.0.1"