Skip to content

Commit f2fff78

Browse files
authored
Merge pull request #2234 from shashi278/patch-1
Updated gradle plugin version
2 parents cb760ae + add82d1 commit f2fff78

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pythonforandroid/bootstraps/common/build/templates/build.tmpl.gradle

+5-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.1.4'
8+
classpath 'com.android.tools.build:gradle:3.5.2'
99
}
1010
}
1111

@@ -100,17 +100,18 @@ android {
100100

101101
dependencies {
102102
{%- for aar in aars %}
103-
compile(name: '{{ aar }}', ext: 'aar')
103+
implementation(name: '{{ aar }}', ext: 'aar')
104104
{%- endfor -%}
105105
{%- for jar in jars %}
106-
compile files('src/main/libs/{{ jar }}')
106+
implementation files('src/main/libs/{{ jar }}')
107107
{%- endfor -%}
108108
{%- if args.depends -%}
109109
{%- for depend in args.depends %}
110-
compile '{{ depend }}'
110+
implementation '{{ depend }}'
111111
{%- endfor %}
112112
{%- endif %}
113113
{% if args.presplash_lottie %}
114114
implementation 'com.airbnb.android:lottie:3.4.0'
115115
{%- endif %}
116116
}
117+

0 commit comments

Comments
 (0)