File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
pythonforandroid/bootstraps/common/build/templates Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
5
5
jcenter()
6
6
}
7
7
dependencies {
8
- classpath ' com.android.tools.build:gradle:3.1.4 '
8
+ classpath ' com.android.tools.build:gradle:3.5.2 '
9
9
}
10
10
}
11
11
@@ -99,14 +99,15 @@ android {
99
99
100
100
dependencies {
101
101
{%- for aar in aars % }
102
- compile (name : ' {{ aar }}' , ext : ' aar' )
102
+ implementation (name : ' {{ aar }}' , ext : ' aar' )
103
103
{%- endfor -% }
104
104
{%- for jar in jars % }
105
- compile files(' src/main/libs/{{ jar }}' )
105
+ implementation files(' src/main/libs/{{ jar }}' )
106
106
{%- endfor -% }
107
107
{%- if args. depends -% }
108
108
{%- for depend in args. depends % }
109
- compile ' {{ depend }}'
109
+ implementation ' {{ depend }}'
110
110
{%- endfor % }
111
111
{%- endif % }
112
112
}
113
+
You can’t perform that action at this time.
0 commit comments