Wolfgang Grossinger
Wolfgang Grossinger
I have a android/flutter/kotlin project and I am currently not able to work with kotlin code from within VS Code as some dependencies are marked as unresolved (what is wrong)....
I'm trying to generate JsonApi for an application in Kotlin and have the following adapters: val jsonApiAdapterFactory: JsonAdapter.Factory = ResourceAdapterFactory.builder() .add(MessageModel::class.java) .add(MultipartModel::class.java) .add(BodypartModel::class.java) .add(SingleBodyModel::class.java) .build() val moshi = Moshi.Builder() .add(jsonApiAdapterFactory)...
When including lint analysis_options (include: package:lint/analysis_options.yaml), the generated code for messages_*.dart no longer works. Please change one of the following: * Add: *// ignore_for_file:invalid_assignment, map_value_type_not_assignable* * Don't regenerate *// ignore_...*...