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 {
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
101101dependencies {
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+
You can’t perform that action at this time.
0 commit comments