Hi, in recent version of this library 4.8.3 i encountered below build error:
e: file:.../node_modules/adivery/android/src/main/java/com/adivery/AdiveryBannerAdViewManager.kt:71:3 'addView' overrides nothing.
i could solve the error by changing that line from:
override fun addView(parent: BannerViewGroup?, child: View?, index: Int) { throw RuntimeException("AdiveryBanner cannot have subviews"); }
to:
fun addView(parent: BannerViewGroup?, child: View?, index: Int) { throw RuntimeException("AdiveryBanner cannot have subviews"); }
My env info:
"react": "18.3.1", "react-native": "0.77.3",
Hi, in recent version of this library
4.8.3i encountered below build error:e: file:.../node_modules/adivery/android/src/main/java/com/adivery/AdiveryBannerAdViewManager.kt:71:3 'addView' overrides nothing.i could solve the error by changing that line from:
override fun addView(parent: BannerViewGroup?, child: View?, index: Int) { throw RuntimeException("AdiveryBanner cannot have subviews"); }to:
fun addView(parent: BannerViewGroup?, child: View?, index: Int) { throw RuntimeException("AdiveryBanner cannot have subviews"); }My env info:
"react": "18.3.1", "react-native": "0.77.3",