Alix

Results 66 comments of Alix

> The ParameterizedAndroidJUnit4, that can run correctly on Robolectric and instrumentation tests, maybe needed for this occasion. Here is an ugly hack to get it to work (while we wait...

Why have you downgraded the Android Gradle Plugin? ``` // compile 'com.android.tools.build:gradle:2.3.0' compile 'com.android.tools.build:gradle:2.2.3' ```

@kamildoleglo Is your basic example still applicable for version 1.4.0-rc you think? Update: Probably not. A lot seems to have changed.

> By the way (sorry if it's a dumb question), although the plugin is called "oss-licenses" it isn't guaranteed that all dependencies listed on it are actually open-source, right? I...

Working on this but I need some help: https://github.com/Mobbeel/fataar-gradle-plugin/pull/30

> Just to clarify, is this an issue of Accompanist libraries not showing up in the list of licenses, or the feature request to have `OssLicensesMenuActivity` be themed by or...

The error message says: > offset(7) should be less than line limit(0) And I can confirm that the first value, 7, comes from the length of the string `id` that...

My tests pass if I change this: ``` mutableStateOf(TextFieldValue(text = id, selection = TextRange(id.length, id.length))) ``` to: ``` mutableStateOf(TextFieldValue(text = id, selection = TextRange(0))) ```

This became more of a problem now with this issue in KeyCloak 18: https://github.com/keycloak/keycloak/issues/12680