Skip to content

Commit

Permalink
Fix image view size and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaned1as committed Nov 18, 2018
1 parent fcca69b commit 154ab6d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.kanedias.vanilla.coverfetch"
minSdkVersion 14
targetSdkVersion 28
versionCode 10
versionName "1.4.2"
versionCode 11
versionName "1.4.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.kanedias.vanilla.coverfetch.fileprovider"
android:authorities="${applicationId}.fileprovider"
android:grantUriPermissions="true"
android:exported="false">
<meta-data
Expand Down
5 changes: 2 additions & 3 deletions app/src/main/res/layout/activity_cover_show.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,11 @@

<ImageView
android:id="@+id/cover_image"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxHeight="300dp"
android:layout_gravity="top|center_horizontal"
android:adjustViewBounds="true"
android:scaleType="centerInside" />
android:adjustViewBounds="true" />

</ViewSwitcher>

Expand Down

0 comments on commit 154ab6d

Please sign in to comment.