Skip to content

Commit

Permalink
Fix warnings (#1759)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbanes committed Feb 15, 2024
1 parent e7d9396 commit ba4c098
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import androidx.compose.animation.animateContentSize
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.size
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.filled.Sort
import androidx.compose.material.icons.filled.ArrowDropDown
import androidx.compose.material.icons.filled.Sort
import androidx.compose.material3.DropdownMenu
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.FilterChip
Expand Down Expand Up @@ -46,8 +46,8 @@ fun SortChip(
},
leadingIcon = {
Icon(
imageVector = Icons.Default.Sort,
contentDescription = "",
imageVector = Icons.AutoMirrored.Filled.Sort,
contentDescription = null, // decorative
modifier = Modifier.size(16.dp),
)
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ abstract class AssetCopyTask : DefaultTask() {
.file(outputFilename.get())
.asFile

logger.log(LogLevel.WARN, "Copying ${input.canonicalPath} to ${output.canonicalPath}")
logger.log(LogLevel.INFO, "Copying ${input.canonicalPath} to ${output.canonicalPath}")

input.copyTo(target = output, overwrite = true)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
package app.tivi.gradle

import app.cash.licensee.LicenseeExtension
import app.cash.licensee.UnusedAction
import org.gradle.api.Project
import org.gradle.kotlin.dsl.configure

Expand All @@ -17,5 +18,6 @@ fun Project.configureLicensee() {
allow("MIT")
allow("BSD-3-Clause")
allowUrl("https://developer.android.com/studio/terms.html")
unusedAction(UnusedAction.IGNORE)
}
}
2 changes: 1 addition & 1 deletion ui/developer/settings/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

android {
namespace = "app.tivi.settings"
namespace = "app.tivi.debug.settings"
}

kotlin {
Expand Down

0 comments on commit ba4c098

Please sign in to comment.