问题似乎来自这里:import com.facebook.react.modules.core.PermissionAwareActivity
错误:
任务:expo-permissions:compileDebugKotlin FAILED Unresolved reference: PermissionAwareActivity
尝试在 android studio 中调试代码时出现所有错误。在运行 expo-eject 之后,它是一个反应原生的博览会。这里的任何人似乎都知道这个错误是什么以及如何解决这个问题?
我当前的构建脚本
buildscript {
ext {
buildToolsVersion = "29.0.2"
minSdkVersion = 21
compileSdkVersion = 29
targetSdkVersion = 29
}
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.6.3")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}