Derek Ellis
Derek Ellis
Given a value class, and some data class to represent the CSV contents: ```kotlin @JvmInline @Serializable value class MyId(val value: String) @Serializable data class Entry( @SerialName("my_id") val id: MyId, @SerialName("my_content")...
Currently the multiplatform plugin is required to use BuildKonfig. It would be nice to be able to use BuildKonfig in non-multiplatform projects as well, namely in standalone JVM, JS, or...
### Description Add a class (or function) that wraps a `SqlDriver` into an `AsyncSqlDriver`. Something like: ```kotlin fun SqlDriver.asAsyncSqlDriver(): AsyncSqlDriver { } ``` The use case I see for this...
The app currently doesn't follow a lot of the material design guidelines, and given the number of reddit users who complain about the fact that Google doesn't even follow them...
With the following component: ```kotlin @Component abstract class TestComponent(private val block: String.(Int) -> Boolean) ``` the generated create extension looks like this: ```kotlin public fun KClass.create(block: Function2): TestComponent = InjectTestComponent(block)...
When launched, Tango Core crashes, followed by HelloAR itself ``` 08-31 19:18:27.671 10832-10832/? E/AndroidRuntime: FATAL EXCEPTION: main Process: com.google.tango, PID: 10832 java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.google.tango-1/base.apk"],nativeLibraryDirectories=[/data/app/com.google.tango-1/lib/arm, /system/fake-libs, /data/app/com.google.tango-1/base.apk!/lib/armeabi-v7a, /system/lib, /vendor/lib]]] couldn't...
The README hasn't been updated in three years and I'm worried that the bounty isn't enough of a motivator anymore due to inflation.
**Is your feature request related to a problem? Please describe.** PMTiles are becoming an increasingly popular way of hosting map tile data because of its relative ease in setting up...
Closes #243 It might be a bit messy, but it effectively maps it to a special function type for code generation.
Maybe this is too dagger-like, but since `fun interface`s are functionally equivalent to a functional type it should be technically possible to allow them for assisted injection. The main benefit...