Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel committed Dec 26, 2024
1 parent 2bf53c5 commit 2a370fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import com.google.firebase.appdistribution.gradle.AppDistributionExtension
import org.apache.commons.io.output.ByteArrayOutputStream
import org.jetbrains.kotlin.konan.properties.Properties
import java.io.FileInputStream
import java.nio.charset.Charset

@Suppress("dsl_scope_violation")

Expand All @@ -21,7 +22,7 @@ private val gitCommitsCount: Int by lazy {
commandLine("git", "rev-list", "--count", "HEAD")
standardOutput = stdout
}
stdout.toString(Charsets.UTF_8).trim().toInt()
stdout.toString(Charset.defaultCharset()).trim().toInt()
}
}
}
Expand Down
Binary file not shown.

0 comments on commit 2a370fc

Please sign in to comment.