개발, 코딩/App - React Native
[에러] Attempt to invoke virtual method 'boolean com.swmansion.reanimated.layoutReanimation.f.j()' on a null object reference
Websterking
2022. 1. 12. 09:36
반응형
위 에러를 겪었다.
Android · software-mansion-labs/reanimated-2-playground@71642db
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github.com
위 링크에 변경사항을 따라서
라이브러리 관련 작업을 해서
많은 사람들이 해결됐다고 하는데
나는 proguard설정에 따른 이슈였어서
아래의 코드를 추가해줌으로써
이슈를 해결할 수 있었다.
// android/app/proguard-rules.pro
-keep class com.swmansion.reanimated.** { *; }
-keep class com.facebook.react.turbomodule.** { *; }
반응형