mirror of
https://github.com/Michatec/michas-droid.git
synced 2026-05-31 02:12:42 +02:00
bdd204d9de
- Update Kotlin to 2.3.20 and Jackson Core to 2.21.2 - Update Gradle Wrapper to 9.4.1 - Bump version code to 17 and version name to 1.7 - Remove unused `percentTranslationY` property from `FragmentLinearLayout` - Clean up semicolons in `MainApplication.kt` - Update `.gitignore` to include `gradle-daemon-jvm.properties`
16 lines
458 B
Kotlin
16 lines
458 B
Kotlin
package com.michatec.store.widget
|
|
|
|
import android.content.Context
|
|
import android.util.AttributeSet
|
|
import android.widget.LinearLayout
|
|
|
|
class FragmentLinearLayout: LinearLayout {
|
|
constructor(context: Context): super(context)
|
|
constructor(context: Context, attrs: AttributeSet?): super(context, attrs)
|
|
constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int): super(context, attrs, defStyleAttr)
|
|
|
|
init {
|
|
fitsSystemWindows = true
|
|
}
|
|
}
|