diff options
author | Christof Arnosti <charno@charno.ch> | 2020-03-05 22:36:23 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-03-07 12:34:43 -0800 |
commit | e6158c55e188ddd417f72e1140e291f8d89c166b (patch) | |
tree | 349b52d36eded1b76bd0138dede13d9d86461c0f | |
parent | f7cf3e6b165a04160f07ec3e3b4810a6b7ef3d31 (diff) | |
download | subsurface-e6158c55e188ddd417f72e1140e291f8d89c166b.tar.gz |
usb-serial-for-android: add dependency
Signed-off-by: Christof Arnosti <charno@charno.ch>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | android-mobile/build.gradle | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/android-mobile/build.gradle b/android-mobile/build.gradle index 893807565..f55c805cb 100644 --- a/android-mobile/build.gradle +++ b/android-mobile/build.gradle @@ -19,6 +19,7 @@ allprojects { repositories { jcenter() maven { url "https://dl.bintray.com/android/android-tools/" } + maven { url 'https://jitpack.io' } google() } } @@ -27,6 +28,7 @@ apply plugin: 'com.android.application' dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) + implementation 'com.github.mik3y:usb-serial-for-android:v2.2.2' } android { |