diff options
author | Allan Wang <me@allanwang.ca> | 2017-05-29 19:47:52 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-05-29 19:47:52 -0700 |
commit | 461425eb6054f18cea1990a4117fe8c78e888ddf (patch) | |
tree | 98c8d84cfb231479cf88c3cc413b7c4a8366e42b /app/build.gradle | |
parent | e33120d454aeb72acc2c1315bddea31dd2f15bb2 (diff) | |
download | frost-461425eb6054f18cea1990a4117fe8c78e888ddf.tar.gz frost-461425eb6054f18cea1990a4117fe8c78e888ddf.tar.bz2 frost-461425eb6054f18cea1990a4117fe8c78e888ddf.zip |
Add icon tabs and webview observables
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle index ab9c2770..e5c62f18 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -12,6 +12,7 @@ android { targetSdkVersion Integer.parseInt(project.TARGET_SDK) versionCode Integer.parseInt(project.VERSION_CODE) versionName project.VERSION_NAME + multiDexEnabled true testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } @@ -58,7 +59,9 @@ dependencies { //Icons compile "com.mikepenz:iconics-core:${ICONICS}@aar" - compile "com.mikepenz:google-material-typeface:${GMD}.original@aar" + compile "com.mikepenz:google-material-typeface:${IICON_GOOGLE}.original@aar" + compile "com.mikepenz:material-design-iconic-typeface:${IICON_MATERIAL}@aar" + compile "com.mikepenz:community-material-typeface:${IICON_COMMUNITY}@aar" //Butterknife compile "com.jakewharton:butterknife:${BUTTERKNIFE}" @@ -71,6 +74,8 @@ dependencies { compile "com.facebook.stetho:stetho-okhttp3:${STETHO}" + compile "com.lapism:searchview:${SEARCH_VIEW}" + compile "com.github.bumptech.glide:glide:${GLIDE}" annotationProcessor "com.github.bumptech.glide:compiler:${GLIDE}" } |