S. Weatherall
S. Weatherall
no worries, @gigerbytes. thanks for taking a look.
@AkeleyUA good to know! Once you open that first notification, does the 2nd notification trigger the correct behavior? My assumption so far is that whatever initialization is happening upon opening...
@Estroo1 the way I got around that was to create `useRef` values that mapped to my state values (use a `useEffect` to update the `useRef` values on a state change)....
I experience this same behavior. Version 3.0.0-beta.9 (3.0.0-beta.9.1040) on mac OS. Version 5.0.0 of reactotron-react-native
+1 also getting this same error: **_The Kotlin plugin was loaded in the following projects: ':react-native-gesture-handler', ':rnmapbox_maps'_**
FWIW I have (temporarily?) resolved this issue by adding `kotlinVersion=1.8.0` to my `gradle.properties` file (I was having version issues between `jetified-kotlin-stdlib-1.8.0 (org.jetbrains.kotlin:kotlin-stdlib:1.8.0)` and `jetified-kotlin-stdlib-jdk8-1.6.21 (org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21)`)
Update: I tested the fix suggested [here](https://kotlinlang.org/docs/whatsnew18.html#usage-of-the-latest-kotlin-stdlib-version-in-transitive-dependencies). Which is to add `implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))` to the `app/build.gradle` file. This also results in a successful build..