diff options
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}" } |