diff --git a/app/build.gradle b/app/build.gradle index ef73de63a5c023d0fe506554fba56752cc39e9f8..bad2d9484bb2b3f5188e426b05184d7ebf238a0a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -24,5 +24,4 @@ dependencies { testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:24.2.1' compile project(':viewlib') - compile project(':ExpandableTextView') } diff --git a/viewlib/build.gradle b/viewlib/build.gradle index 12769590d03c39b112a98faf5b7fb23cf1d50f9d..4ad2dbe0a4cdaea81651967f84b46ba985d7c14e 100644 --- a/viewlib/build.gradle +++ b/viewlib/build.gradle @@ -19,8 +19,9 @@ android { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) + compile fileTree(include: ['*.jar'], dir: 'libs') testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:24.2.1' compile 'com.nineoldandroids:library:2.4.0' + compile project(':ExpandableTextView') }