Skip to content

Commit

Permalink
Hotfix for Search Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Michels authored and Joseph Michels committed Sep 9, 2018
1 parent 1c1d767 commit a55695d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Expand Up @@ -19,8 +19,8 @@ android {
//1.1.0 Version Code: 4 Released 7-31-2016
//1.1.1 Version Code: 5 Released 8-05-2016
//1.1.2 Version Code: 6 Released 10-17-2016
versionCode 8
versionName "2.0.0"
versionCode 9
versionName "2.0.1"

compileOptions {
// we'll still be able to target lower java versions because of desugar
Expand All @@ -38,8 +38,8 @@ android {

buildTypes {
release {
minifyEnabled true
shrinkResources true
minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/release/output.json
@@ -1 +1 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":8,"versionName":"2.0.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":9,"versionName":"2.0.1","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
6 changes: 6 additions & 0 deletions proguard-rules.txt
@@ -0,0 +1,6 @@
-keep class android.support.v7.widget.SearchView { *; }
-keepclassmembers class android.support.v7.widget.SearchView {
public *;
}


0 comments on commit a55695d

Please sign in to comment.