Skip to content

Commit

Permalink
Fixing stability modifer with immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
Younes-Charfaoui committed May 16, 2024
1 parent 939d61c commit 094743f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tarka-ui-icons/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ publishing {
run {
groupId = "com.tarkalabs"
artifactId = "tarkaui-icons"
version = "1.0.3"
version = "1.0.4"
artifact("$buildDir/outputs/aar/tarka-ui-icons-release.aar")
}
}
Expand All @@ -70,7 +70,7 @@ dependencies {
val composeUiVersion = "1.4.1"
implementation("androidx.compose.runtime:runtime:$composeUiVersion")
implementation("androidx.compose.ui:ui:$composeUiVersion")
api("com.microsoft.design:fluent-system-icons:1.1.201@aar")
api("com.microsoft.design:fluent-system-icons:1.1.239@aar")
implementation("androidx.core:core-ktx:1.10.0")
implementation("androidx.appcompat:appcompat:1.6.1")
testImplementation("junit:junit:4.13.2")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.tarkalabs.tarkaui.icons

import androidx.annotation.DrawableRes
import androidx.compose.runtime.Immutable
import androidx.compose.ui.graphics.Color

@Immutable
data class TarkaIcon internal constructor(
@DrawableRes val iconRes: Int,
val contentDescription: String,
Expand Down

0 comments on commit 094743f

Please sign in to comment.