We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef2e7a9 commit add82d1Copy full SHA for add82d1
pythonforandroid/bootstraps/common/build/templates/build.tmpl.gradle
@@ -5,7 +5,7 @@ buildscript {
5
jcenter()
6
}
7
dependencies {
8
- classpath 'com.android.tools.build:gradle:3.1.4'
+ classpath 'com.android.tools.build:gradle:3.5.2'
9
10
11
@@ -99,14 +99,15 @@ android {
99
100
101
{%- for aar in aars %}
102
- compile(name: '{{ aar }}', ext: 'aar')
+ implementation(name: '{{ aar }}', ext: 'aar')
103
{%- endfor -%}
104
{%- for jar in jars %}
105
- compile files('src/main/libs/{{ jar }}')
+ implementation files('src/main/libs/{{ jar }}')
106
107
{%- if args.depends -%}
108
{%- for depend in args.depends %}
109
- compile '{{ depend }}'
+ implementation '{{ depend }}'
110
{%- endfor %}
111
{%- endif %}
112
113
+
0 commit comments