You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is your use-case and why do you need this feature?
The major part of errors and strange behaviors in serialization comes from inconsistencies between versions of the plugin and actually used versions of the library or even variations of library versions between flavors (core and Json for example). It usually could be solved by carefully studying the classpath, but the problem is that the errors produced by those inconsistencies are very hard to understand.
Describe the solution you'd like
Introduce a version checking task in the kotlin Gradle plugin, which will validate the compiler version against all used library versions (not necessary only serialization) and throw an error during the build phase if something incompatible is found. The compatibility table could be stored externally so one could update it without updating the plugin. If the table is not available, the version check could be bypassed or a default hard-coded table is used.
The text was updated successfully, but these errors were encountered:
What is your use-case and why do you need this feature?
The major part of errors and strange behaviors in serialization comes from inconsistencies between versions of the plugin and actually used versions of the library or even variations of library versions between flavors (core and Json for example). It usually could be solved by carefully studying the classpath, but the problem is that the errors produced by those inconsistencies are very hard to understand.
Describe the solution you'd like
Introduce a version checking task in the kotlin Gradle plugin, which will validate the compiler version against all used library versions (not necessary only serialization) and throw an error during the build phase if something incompatible is found. The compatibility table could be stored externally so one could update it without updating the plugin. If the table is not available, the version check could be bypassed or a default hard-coded table is used.
The text was updated successfully, but these errors were encountered: