Skip to content

Commit

Permalink
Fix padding and increment version code to 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
MertNYuksel committed Jan 6, 2020
1 parent 182a1d9 commit 5b98dae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions libraries/dialogs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'kotlin-kapt'
apply plugin: 'com.github.dcendents.android-maven'

group = "com.trendyol.ui-components"
version = "1.0.6"
version = "1.0.7"

android {
compileSdkVersion 29
Expand All @@ -14,8 +14,8 @@ android {
defaultConfig {
minSdkVersion 17
targetSdkVersion 29
versionCode 3
versionName "1.0.6"
versionCode 4
versionName "1.0.7"
vectorDrawables.useSupportLibrary = true

consumerProguardFiles 'consumer-rules.pro'
Expand Down
3 changes: 2 additions & 1 deletion libraries/dialogs/src/main/res/layout/fragment_dialog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/dialogs_margin_inner"
android:padding="@dimen/dialogs_margin_inner"
android:paddingTop="@dimen/dialogs_margin_inner"
android:paddingBottom="@dimen/dialogs_margin_inner"
android:text="@{viewState.content}"
app:isVisible="@{viewState.contentVisible}"
app:layout_constraintEnd_toEndOf="parent"
Expand Down

0 comments on commit 5b98dae

Please sign in to comment.