Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Kotlin DSL accessor for android.kotlinOptions #11191

Merged
merged 1 commit into from Oct 30, 2019

Commits on Oct 30, 2019

  1. Fix Kotlin DSL accessor for android.kotlinOptions

    And introduce a stricter accessor type precedence order.
    
    The accessor type is the first public Kotlin type found in the given extension
    type hierarchy considering all the types in the following order:
    * the extension type itsef
    * its superclasses excluding `java.lang.Object`
    * all supported interfaces ordered by:
      - subtyping first:
          subtypes before supertypes
      - where it's found in the class hierarchy:
          subclass interfaces before superclass interfaces
    
    Fixes #11083
    bamboo committed Oct 30, 2019
    Configuration menu
    Copy the full SHA
    70a5fd2 View commit details
    Browse the repository at this point in the history