From 75a4f601c1c7cb78d2f30e99a2f0d3bf9b030f7a Mon Sep 17 00:00:00 2001 From: Severiano Jaramillo Date: Wed, 31 Oct 2018 08:27:09 -0600 Subject: [PATCH] Added graphenej as a git submodule and as a module to the app. --- .gitmodules | 3 +++ app/build.gradle | 1 + graphenejlib | 1 + settings.gradle | 2 +- 4 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .gitmodules create mode 160000 graphenejlib diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..76b1413 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "graphenej"] + path = graphenej + url = git@github.com:bitshares/graphenej.git diff --git a/app/build.gradle b/app/build.gradle index aa8e224..5547e3b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -24,6 +24,7 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) + implementation project(':graphenejlib:graphenej') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' diff --git a/graphenejlib b/graphenejlib new file mode 160000 index 0000000..d66c8f0 --- /dev/null +++ b/graphenejlib @@ -0,0 +1 @@ +Subproject commit d66c8f0ff840ac1bb445462885bb8af9c83b8bfa diff --git a/settings.gradle b/settings.gradle index e7b4def..5bbb01a 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1 @@ -include ':app' +include ':app', ':graphenejlib:graphenej'