📜  反应原生通知错误 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:04.959000             🧑  作者: Mango

代码示例1
// Added by Youtube : CodingBite
buildscript {
    ext {
        //...
        kotlinVersion = "1.3.72"    //added for react native notifications
    }
    dependencies {
        //...
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72"        //added for react native notifications
    }
}