Skip to content

Commit

Permalink
Merge pull request #46 from SimformSolutionsPvtLtd/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
yashwantGowla authored Sep 2, 2022
2 parents da0afe9 + 5287922 commit c8a8ab0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
28 changes: 14 additions & 14 deletions imagepickerlibrary/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ plugins {
id("maven-publish")
}

afterEvaluate {
publishing {
publications {
register<MavenPublication>("release") {
groupId = "com.github.SimformSolutionsPvtLtd"
artifactId = "SSImagePicker"
version = "2.0"

from(components["release"])
}
}
}
}

android {
compileSdk = 33

Expand Down Expand Up @@ -38,20 +52,6 @@ android {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}

afterEvaluate {
publishing {
publications {
register<MavenPublication>("release") {
groupId = "com.github.SimformSolutionsPvtLtd"
artifactId = "SSImagePicker"
version = "2.0"

from(components["release"])
}
}
}
}
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/ssSheetBackground"
android:paddingBottom="@dimen/_4sdp">

<androidx.appcompat.widget.AppCompatTextView
Expand Down
2 changes: 1 addition & 1 deletion imagepickerlibrary/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
</style>

<style name="SSRoundBottomSheet" parent="@style/Widget.Design.BottomSheet.Modal">
<item name="android:background">@drawable/drawable_bottom_sheet_dialog</item>
<item name="android:background">?attr/ssSheetBackground</item>
<item name="android:windowIsFloating">false</item>
</style>

Expand Down

0 comments on commit c8a8ab0

Please sign in to comment.