Compare commits
No commits in common. "9d43dcfb9bc3be44ff119f1db3f697323542ea1a" and "59839fe8caa9b7cd28ab80afa5160209917e16e4" have entirely different histories.
9d43dcfb9b
...
59839fe8ca
3 changed files with 4 additions and 4 deletions
|
@ -16,8 +16,8 @@ android {
|
||||||
applicationId = "eu.m724.coincounter"
|
applicationId = "eu.m724.coincounter"
|
||||||
minSdk = 30
|
minSdk = 30
|
||||||
targetSdk = 35
|
targetSdk = 35
|
||||||
versionCode = 4
|
versionCode = 3
|
||||||
versionName = "2.0.1"
|
versionName = "2.0"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables {
|
vectorDrawables {
|
||||||
|
|
|
@ -277,7 +277,7 @@ fun TransactionDialog(
|
||||||
}
|
}
|
||||||
TextButton(
|
TextButton(
|
||||||
onClick = {
|
onClick = {
|
||||||
onConfirm(label, (value.toDouble() * 100).toInt())
|
onConfirm(label, (value.toFloat() * 100).toInt())
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
Text("Create transaction")
|
Text("Create transaction")
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">Coin Counter</string>
|
<string name="app_name">Coin Counter</string>
|
||||||
<string name="title_activity_main">Coin Counter</string>
|
<string name="title_activity_main">MainActivity</string>
|
||||||
<string name="title_activity_wallet">WalletActivity</string>
|
<string name="title_activity_wallet">WalletActivity</string>
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in a new issue