Gabriel Rohden
Gabriel Rohden
Probably not the same error ("TypeScript declaration files should never be required"), but may be related (?) I'm really a noob on ts, so i guess I'm doing something wrong,...
@thanhbinh84 @vasilich6107 about ignoring nulls, I've been using a flag for json serializable on `build.yaml`: ```yaml targets: $default: builders: # Some of our queries fail when we send null keys...
@GP4cK Just an idea: you could create a scalar (something like `DbNull`) use it with a union and deal with it differently on the server side 🤔 Not sure if...
@vasilich6107 thx for the response! Yeah, I understand that it could be solved like that, but with a single file output I have to use other `naming_scheme`s ... and I...
I'm getting weird errors inside the container.. 1 - `ERROR: 32-bit Linux Android emulator binaries are DEPRECATED, to use them` which is 'fixed' by calling `sdkmanager --update`, but the emulator...
Oh well, i didn't find anything on the wiki, but here it is : https://github.com/FrantisekGazo/Blade/issues/36#issuecomment-343567362 It seems that the `@JvmField` annotation is needed for that kind of thing... weird throught...
I'm using only the args and extras modules
Looking at the source i think that adding the fragment package here: https://github.com/FrantisekGazo/Blade/blob/8f00bf5f8315ea5b7484a71f01a297bacdd0eff2/core-compiler/src/main/java/eu/f3rog/blade/compiler/name/ClassNames.java like: ```java ClassName AndroidXFragment = ClassName.get("androidx.fragment.app.Fragment", "Fragment"); ``` And validating it here: https://github.com/FrantisekGazo/Blade/blob/8f00bf5f8315ea5b7484a71f01a297bacdd0eff2/core-compiler/src/main/java/eu/f3rog/blade/compiler/util/ProcessorUtils.java#L183-L185 with: ```java public static...
I would do it myself, but i got some weird errors building the project (something about recyclerview version missing) :/
@FrantisekGazo i can confirm that `2.7.2-beta3` is working with `args` and `extras` using AndroidX