Skip to content

Commit

Permalink
Merge pull request #115 from erolaksoy/DisableRatingBarComposeProguard
Browse files Browse the repository at this point in the history
Disable rating bar compose proguard
  • Loading branch information
erolaksoy authored Jul 18, 2023
2 parents 1096eac + eff47b8 commit c2eee44
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libraries/rating-bar-compose/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ratingBarComposeVersion = **rating-bar-compose-1.0** [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
ratingBarComposeVersion = **rating-bar-compose-1.0.1** [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

# RatingBar

Expand Down
2 changes: 1 addition & 1 deletion libraries/rating-bar-compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {

buildTypes {
getByName<com.android.build.gradle.internal.dsl.BuildType>("release") {
isMinifyEnabled = true
isMinifyEnabled = false
setProguardFiles(
mutableListOf(
getDefaultProguardFile("proguard-android.txt"),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.trendyol.ratingbarcompose
package com.trendyol.uicomponents.ratingbarcompose

import androidx.annotation.DrawableRes
import androidx.compose.foundation.Canvas
Expand All @@ -16,6 +16,7 @@ import androidx.compose.ui.graphics.painter.Painter
import androidx.compose.ui.platform.LocalDensity
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.unit.Dp
import com.trendyol.ratingbarcompose.R
import kotlin.math.floor

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.unit.dp
import com.trendyol.ratingbarcompose.RatingBar
import com.trendyol.uicomponents.ratingbarcompose.RatingBar

@Composable
fun RatingBarScreen(
Expand Down

0 comments on commit c2eee44

Please sign in to comment.