Skip to content

0.16.1

Compare
Choose a tag to compare
@ZacSweers ZacSweers released this 06 Jan 20:49
· 501 commits to main since this release
  • moshi-ir now supports dynamic generation of proguard rules, bringing it to feature parity with Moshi's existing
    code gen.
    • Note that if you have any issues, this can be disabled via the Gradle extension's generateProguardRules
      property and using the manual rules mentioned in version 0.16.0's notes.
      moshi {
        generateProguardRules.set(false)
      }
  • New: To help with debugging moshi-ir, a new debug property is available in the Gradle extension. It is off
    by default and can be enabled like below. Please try this out and include its output when reporting issues. Thanks!
    moshi {
      debug.set(true)
    }