Arek Olek

Results 20 comments of Arek Olek

How about a small DSL that would make it possible to write stuff like: ```kotlin view.context.pixelConversions { outRect.left = 80.dp outRect.right = 20.dp } ``` Using the idea from the...

@johannesbottcher Does it really change the font size? In my case the font stays the same regardless of whether I choose 10, 11 or 12pt. Only line spacing is affected....

@johannesbottcher Yet the examples never use any simple text.

@johannesbottcher Actually, `\cvitems` is wrapped inside `\descriptionstyle` in the examples. I'm guessing @posquit0 put the `11pt` in there to get the line spacing, since it doesn't affect the font size...

Thanks for the report. After step 1. shouldn't the app ask you to set is as default Phone app? ![image](https://user-images.githubusercontent.com/893533/62766677-50cbc080-ba93-11e9-9718-66678f90aa83.png) If it's not set as default, CallService won't be notified...

@girubhai @RijoshEnfin @antonyhayek @power76 did you try reporting this issue to Xiaomi? I guess it should be easy given that you can use this project as a Minimum Verifiable Example...

You can take a look at https://github.com/arekolek/simple-phone/issues/1

@marshallpierce it looks like it works if you use `@get:JsonProperty("annotationName")` instead

@or-dvir Just using: ``` open class SuperClass(@get:JsonProperty("annotationName") val someCrazyFieldName: String) class ChildClass(s: String) : SuperClass(s) ``` works fine

The error tells you exactly what you did wrong, you put a @ after colon instead of just the annotation identifier. https://kotlinlang.org/docs/reference/annotations.html#annotation-use-site-targets