From f9663a5ac6399cb00dd4e82f70c6f05a252f1a83 Mon Sep 17 00:00:00 2001 From: Marcus Hoffmann Date: Mon, 15 Jun 2020 20:35:58 +0200 Subject: [PATCH] add gradle.properties file to git This tells gradle that we are an androidX project now. --- .gitignore | 3 +-- gradle.properties | 2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 gradle.properties diff --git a/.gitignore b/.gitignore index 1b11e4dc3..81e219683 100644 --- a/.gitignore +++ b/.gitignore @@ -16,7 +16,6 @@ build.xml # Gradle files .gradle/ build/ -gradle.properties # Local configuration file (sdk path, etc) local.properties @@ -47,4 +46,4 @@ junit-report.xml # Screen dumps from Android Studio/DDMS captures/ -/fdroid/ \ No newline at end of file +/fdroid/ diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 000000000..5465fec0e --- /dev/null +++ b/gradle.properties @@ -0,0 +1,2 @@ +android.enableJetifier=true +android.useAndroidX=true \ No newline at end of file