Christian Maier

Results 3 comments of Christian Maier

My Workaround: ``` @Override public View getHeaderView(int position, View convertView, ViewGroup parent) { if (!mShowSections) { View v = new View(mContext); v.setVisibility(View.GONE); return v; } ... } ... @Override public...

It works, but only if I add `ksp { arg("KOIN_USE_COMPOSE_VIEWMODEL", "true") }` to each module's _build.gradle.kts_ I have ViewModels in. I was unable to configure it as a general option...