Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: unresolved reference: attr after upgrading to 0.73.0-rc.2 (softw…
…are-mansion#1919) ## Description Small PR which probably resolves [software-mansion#1515](software-mansion#1515). For my case, I got this build issue after upgrading from 0.72.5 to 0.73.0-rc.2: ``` > Task :react-native-screens:compileDebugKotlin FAILED e: file:///Users/ivanignatiev/GitHub/****/node_modules/react-native-screens/android/src/main/java/com/swmansion/rnscreens/ScreenStackHeaderConfig.kt:391:46 Unresolved reference: attr ``` I do not know Java or Kotlin, so, please guide me if additional work is needed. @kkafar: Since AGP 8.0 the default value for `android.nonTransitiveRClass` property [has changed from `false` to `true`](https://developer.android.com/build/releases/past-releases/agp-8-0-0-release-notes). This requires resource file names to be fully qualified. React Native 0.73 depends on AGP 8.0 thus we get the build issues.
- Loading branch information