Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
There seems to be a bug when not adding the design support lib.
  • Loading branch information
patrickfav committed Apr 21, 2018
1 parent 119be90 commit e6fc458
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {
}

defaultConfig {
minSdkVersion 14
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
Expand Down Expand Up @@ -66,9 +66,10 @@ android {

dependencies {
implementation "com.android.support:appcompat-v7:$rootProject.ext.dependencies.support"
implementation "com.android.support:design:$rootProject.ext.dependencies.support"
implementation 'com.squareup.picasso:picasso:2.5.2'

implementation 'at.favre.lib:dali:0.3.+'
implementation 'at.favre.lib.hood:hood-extended:0.5.1'
implementation 'at.favre.lib:dali:0.3.4'
implementation 'at.favre.lib.hood:hood-extended:0.6.0'
// compile project(path: ':dali')
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ext {
buildToolsVersion = "27.0.3"
targetSdkVersion = 27
minSdkVersion = 14
renderscriptTargetApi = 20
renderscriptTargetApi = 21

dependencies = [
support: "27.1.1"
Expand Down

0 comments on commit e6fc458

Please sign in to comment.