From f0abfeb52a6df7e1072b988b017d6ab21db97190 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Tue, 4 Apr 2017 23:49:43 +0200 Subject: [PATCH] Clean up deps in gradle --- app/build.gradle | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index abcd608..0612dac 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,11 +4,6 @@ android { compileSdkVersion 25 buildToolsVersion "25.0.2" - dependencies { - compile 'com.android.support:support-annotations:25.3.1' - compile 'com.termux:terminal-view:0.49' - } - defaultConfig { applicationId "com.termux.window" minSdkVersion 21 @@ -29,10 +24,13 @@ android { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) + compile 'com.android.support:support-annotations:25.3.1' + compile 'com.termux:terminal-view:0.49' + + testCompile 'junit:junit:4.12' + androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:25.3.1' - testCompile 'junit:junit:4.12' + }