diff --git a/app/build.gradle b/app/build.gradle
index 7de2ab4..23c2d21 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -13,12 +13,12 @@ apply plugin: 'kotlin-android'
apply plugin: 'play'
android {
- compileSdkVersion 21
+ compileSdkVersion 22
buildToolsVersion '21.1.2'
defaultConfig {
applicationId 'org.bspeice.minimalbible'
minSdkVersion 8
- targetSdkVersion 21
+ targetSdkVersion 22
def travis_code = System.getenv("TRAVIS_BUILD_NUMBER")
if (travis_code)
@@ -68,15 +68,14 @@ dependencies {
compile 'com.squareup.dagger:dagger:+'
provided 'com.squareup.dagger:dagger-compiler:+'
- // TODO: Figure out why I need to force 2.1.0 and can't just use +
- compile 'de.devland.esperandro:esperandro-api:2.1.0'
- provided 'de.devland.esperandro:esperandro:2.1.0'
-
+ compile 'de.devland.esperandro:esperandro-api:+'
+ provided 'de.devland.esperandro:esperandro:+'
compile 'com.jakewharton:butterknife:+'
compile 'com.readystatesoftware.systembartint:systembartint:+'
compile 'com.netflix.rxjava:rxjava-android:+'
- compile 'com.android.support:appcompat-v7:21.+'
- compile 'com.android.support:recyclerview-v7:21.+'
+ compile 'com.android.support:appcompat-v7:+'
+ compile 'com.android.support:recyclerview-v7:+'
+ compile 'com.android.support:cardview-v7:+'
compile 'org.apache.commons:commons-lang3:+'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
diff --git a/app/src/main/play/en-US/whatsnew b/app/src/main/play/en-US/whatsnew
new file mode 100644
index 0000000..694e450
--- /dev/null
+++ b/app/src/main/play/en-US/whatsnew
@@ -0,0 +1,2 @@
+- Search results now are Material-compliant!
+- Android 5.1 devices now supported
\ No newline at end of file
diff --git a/app/src/main/res/layout/view_search_result.xml b/app/src/main/res/layout/view_search_result.xml
index 9bd9950..dd864ea 100644
--- a/app/src/main/res/layout/view_search_result.xml
+++ b/app/src/main/res/layout/view_search_result.xml
@@ -1,19 +1,29 @@
-
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:layout_margin="@dimen/cardview_padding"
+ card_view:cardCornerRadius="4dp"
+ card_view:contentPadding="@dimen/cardview_padding">
-
+ android:orientation="vertical">
-
-
\ No newline at end of file
+
+
+
+
+
diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml
index db062fc..431f0b4 100644
--- a/app/src/main/res/values/dimens.xml
+++ b/app/src/main/res/values/dimens.xml
@@ -11,4 +11,6 @@
56dp
8dp
+
+ 4dp