From 998a3e19b0a71ab4a956db118df7df100f882468 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Sat, 21 Jan 2017 18:15:50 +0100 Subject: [PATCH] Switch Util to a git submodule. Main purpose is to ease things for F-Droid. --- .gitmodules | 3 +++ Util | 1 + build.gradle | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .gitmodules create mode 160000 Util diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..49ad8ab --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "Util"] + path = Util + url = ../Util diff --git a/Util b/Util new file mode 160000 index 0000000..819e981 --- /dev/null +++ b/Util @@ -0,0 +1 @@ +Subproject commit 819e981b344df2aac43dfee495ef4ea2fc73c03a diff --git a/build.gradle b/build.gradle index d4600c6..4067172 100644 --- a/build.gradle +++ b/build.gradle @@ -37,7 +37,7 @@ task makesmallicu (type:Exec, dependsOn: configurations.smallicu) { commandLine "./mksmallicu.sh", "${configurations.smallicu.resolve()[0]}", "$buildDir/icu4j-55.1.small.jar" } -def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "../Util" +def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "Util" android { compileSdkVersion 25 -- 2.43.0