stag-java
stag-java copied to clipboard
Speedy Type Adapter Generation
#### Issue Summary the moment i update from 2.5.0 to 2.6.0 dagger stops working, i get an error on kapt #### Reproduction Steps create a project that contains kotlin classes...
Added support for handling for @androidx.annotation.NonNull since the usage of support library is now discouraged. https://developer.android.com/reference/kotlin/androidx/annotation/NonNull #### Issue (If applicable) - https://github.com/vimeo/stag-java/issues/NUMBER #### Summary A brief but thorough description of...
Hi, any plan to support incremental annotation processor ? I am checking from warning and stag does not support incremental annotation processor. Thanks
#### Issue Summary When trying to use a kotlin data class, I am unable to generate the convertors. For example using the class ``` @UseStag data class Foo( val name:...
#### Issue Summary why not use a map for class->adapter mapping. currently is using a complicated package-> index-> subFactory-> if-else logic, which is neither efficient nor easy to understand. ####...
#### Issue Summary I just integrated the file into android gradle and after syncing it just went to errors of data binding files. I have implemented MVVM in my android...
#### Issue Summary Stag fails to find the getter for a list of maps, #### Reproduction Steps ```kotlin @UseStag @Generated("com.robohorse.robopojogenerator") data class RequestBodyTransaction( @field:SerializedName("restrictions") var listOfMaps: List = emptyList() )...
#### Issue Summary A server response such as ```json [ {}, {} ] ``` maps to a model like: ```java public class Foo extends ArrayList {} ``` stag fails generating...
#### Issue Summary It would be helpful to publish snapshots of the current `dev` branch to a maven repo (maybe http://www.sonatype.org/nexus/) so that we could test/use the version in development...
#### Issue Summary The readme is very long, and it would be better if the readme only showed simple set up and explained what the library did. Advanced examples could...