i resole it by add flowing android/build.gradle
// fix notification
subprojects {
afterEvaluate {
project -> if (project.hasProperty("android")) {
android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
}
}
}
}
this worked for me
Most helpful comment
i resole it by add flowing android/build.gradle