Skip to content

Tag: kotlin

Wrong values from string empty test (java x kotlin)

I’m having a super weird behavior from a code that I was testing. The test I wrote was to see the behavior of the class if the Android returned an empty package name. After some debugging, I found this (consider that packageName is empty): Is this expected? Can someone tell what the deal with this? ps1.…

@Generated annotation using gradlew + dagger

I’m confronting a weird issue using gradlew(4.10.2) + dagger(2.18). The problem is when I call: The build fails with: Task :Common:compileDebugJavaWithJavac FAILED /CommonModule_ProvidesGsonFactory.java:6: error: package javax.annotation.processing does not exist import javax.annotation.processing.Gener…

How to place a object without tapping on the screen

I am trying to show an object without tapping on the screen using ARCore. In the basic sample of ARCore Sceneform provided by Google, you need to tap on the screen after it detects the surface. I want to implement that, AR shows the object without tapping on the screen. I tried this for displaying without tap…

How do I replace multiple characters in a String?

How do I replace multiple characters in a String? Like Java’s replaceAll(regex:replacement:) function. This answer is very close but I want to change more than one character at the same time. Answer [$,.] is regex, which is the expected input for Java’s replaceAll() method. Kotlin, however, has a …