Skip to content

Commit

Permalink
Merge pull request #2234 from shashi278/patch-1
Browse files Browse the repository at this point in the history
Updated gradle plugin version
  • Loading branch information
AndreMiras authored Dec 28, 2020
2 parents cb760ae + add82d1 commit f2fff78
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.android.tools.build:gradle:3.5.2'
}
}

Expand Down Expand Up @@ -100,17 +100,18 @@ android {

dependencies {
{%- for aar in aars %}
compile(name: '{{ aar }}', ext: 'aar')
implementation(name: '{{ aar }}', ext: 'aar')
{%- endfor -%}
{%- for jar in jars %}
compile files('src/main/libs/{{ jar }}')
implementation files('src/main/libs/{{ jar }}')
{%- endfor -%}
{%- if args.depends -%}
{%- for depend in args.depends %}
compile '{{ depend }}'
implementation '{{ depend }}'
{%- endfor %}
{%- endif %}
{% if args.presplash_lottie %}
implementation 'com.airbnb.android:lottie:3.4.0'
{%- endif %}
}

0 comments on commit f2fff78

Please sign in to comment.