Andrius Semionovas

Results 12 issues of Andrius Semionovas

### Info: - Reference: https://kotlinlang.org/docs/reference/basic-types.html#unsigned-integers - KEEP: https://github.com/Kotlin/KEEP/blob/master/proposals/unsigned-types.md ### Test case: ``` @Test fun mockitoTest() { val fixture: UnsignedFixture = mock() fixture.ubyte(42u) fixture.ushort(42u) fixture.uInt(42u) fixture.uLong(42u) verify(fixture).ubyte(eq(42u)) verify(fixture).ushort(eq(42u)) verify(fixture).uInt(eq(42u)) verify(fixture).uLong(eq(42u)) }...

### Description According to build scans merging resources are not an easy task. For optimizing builds I disabled `includeAndroidResources` for some modules. The build was a success and a bit...

I am using OAuth service, which supports only form data for `password` grant type. So, additional tries are wasting resources. OAuth service is throttling multiple requests and sometimes even block...

![image](https://user-images.githubusercontent.com/38703/62578957-24555000-b8ab-11e9-91b2-6424fd610b05.png) - https://developer.android.com/reference/android/text/style/TextAppearanceSpan - https://developer.android.com/reference/android/text/style/LineBackgroundSpan.html - https://developer.android.com/reference/android/text/style/LineHeightSpan.html

``` spanner.append("google", url("http://www.google.lt"), noUnderline()) ```

enhancement

Current Android way to change the visibility of views is not very clean. What if we could have these: ``` button.gone() title.visibleIf(item.title != null, otherwise = View::gone) ``` Interface could...

proposal
Anko Commons

Nowadays more and more Android & Java projects use [Kotlin](https://kotlinlang.org/). I suppose full Kotlin support is not easy and requires parsing all files, but would be nice if `*.kt` navigates...

#### Steps to reproduce: 1. Open ScrachPad 2. `lazy.window.toggle_fullscreen()` two times #### Expected: ScrachPad should be the same as in the first step #### Actual: Window of the scrachpad is...

kind: enhancement
area: floating
area: fullscreen
floating refactor

For example command: ``` svg2vd -i file.svg -o /home/neworld/file.xml ``` The tool will create a new file in the current directory named `_home_neworld_file.xml`.