File tree 1 file changed +5
-4
lines changed
pythonforandroid/bootstraps/common/build/templates
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
@@ -100,17 +100,18 @@ android {
100
100
101
101
dependencies {
102
102
{%- for aar in aars % }
103
- compile (name : ' {{ aar }}' , ext : ' aar' )
103
+ implementation (name : ' {{ aar }}' , ext : ' aar' )
104
104
{%- endfor -% }
105
105
{%- for jar in jars % }
106
- compile files(' src/main/libs/{{ jar }}' )
106
+ implementation files(' src/main/libs/{{ jar }}' )
107
107
{%- endfor -% }
108
108
{%- if args. depends -% }
109
109
{%- for depend in args. depends % }
110
- compile ' {{ depend }}'
110
+ implementation ' {{ depend }}'
111
111
{%- endfor % }
112
112
{%- endif % }
113
113
{% if args. presplash_lottie % }
114
114
implementation ' com.airbnb.android:lottie:3.4.0'
115
115
{%- endif % }
116
116
}
117
+
You can’t perform that action at this time.
0 commit comments