Skip to content

Commit

Permalink
sourceCompatibility 1.7 and targetCompatibility 1.7 are obsolete,…
Browse files Browse the repository at this point in the history
… use 1.8 by default (#2942)
  • Loading branch information
misl6 authored Dec 17, 2023
1 parent bb63f76 commit d35c70a
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,8 @@ android {
}

compileOptions {
{% if args.enable_androidx %}
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
{% else %}
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
{% endif %}
{%- for option in args.compile_options %}
{{option}}
{%- endfor %}
Expand Down

0 comments on commit d35c70a

Please sign in to comment.