From f0b25c1c51f6ccb224674ef49945aaca9fc2f5b3 Mon Sep 17 00:00:00 2001 From: jkurtw <49886147+jkurtw@users.noreply.github.com> Date: Tue, 11 Aug 2020 11:23:10 -0500 Subject: [PATCH] Update gradle.properties to use AndroidX I get a build error saying this project uses AndroidX, but this property was missing. --- BasicLocationKotlin/gradle.properties | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BasicLocationKotlin/gradle.properties b/BasicLocationKotlin/gradle.properties index 5d08ba75..41bc2b6f 100644 --- a/BasicLocationKotlin/gradle.properties +++ b/BasicLocationKotlin/gradle.properties @@ -15,4 +15,6 @@ # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -# org.gradle.parallel=true \ No newline at end of file +# org.gradle.parallel=true + +android.useAndroidX=true