TheFinestArtist / FinestWebView-Android

Beautiful and customizable Android Activity that shows web pages within an app.
https://finestwebview.web.app
2.32k stars 531 forks source link

ClassCastException: FrameLayout$LayoutParams cannot be cast to #134

Open benobab opened 6 years ago

benobab commented 6 years ago

Hi, On Android 23, this library causes a crash, I can do a pull request if you want, the change is so "simple" :

if (android.os.Build.VERSION.SDK_INT > 22) { container = (View) pwindow.getContentView().getParent().getParent(); }else{ container = (View) pwindow.getContentView().getParent(); }

https://stackoverflow.com/questions/36093254/android-m-classcastexception-framelayoutlayoutparams-cannot-be-cast-to-windowm

Thanks a lot for making this library, it's awesome.