Skip to content
This repository was archived by the owner on Aug 13, 2024. It is now read-only.

Commit 4b46c74

Browse files
authored
Merge pull request #64 from DominicWrege/master
v2.0.2 big cleanup, refactor API and delete unused resources
2 parents c521a5d + 157c1d9 commit 4b46c74

26 files changed

+710
-746
lines changed

Ladefuchs/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ android {
1111
applicationId "app.ladefuchs.android"
1212
minSdkVersion 26
1313
targetSdkVersion 33
14-
versionCode 201
14+
versionCode 202
1515
versionName "2.0.2"
1616

1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Ladefuchs/app/src/main/java/app/ladefuchs/android/dataClasses/ChargeCards.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ data class ChargeCards(
1313
val image: String? = null,
1414
val url: String? = null,
1515
val blockingFeeStart: Int,
16-
val blockingFee: Float? = null,
17-
val monthlyFee: Float,
18-
val note: String? = null,
16+
val blockingFee: Float = 0F,
17+
val monthlyFee: Float = 0F,
18+
val note: String = "",
1919
val msp: String? = null
2020
) : Parcelable

0 commit comments

Comments
 (0)