Skip to content

Commit

Permalink
Set version to 4.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
B3nedikt committed Jan 3, 2024
1 parent 0be8472 commit a053b88
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,15 +188,15 @@ class ViewPumpAppCompatDelegate @JvmOverloads constructor(
"com.android.internal.widget.ButtonBarLayout" ->
ButtonBarLayout(createWrappedContext(), attrs)

// The following three widgets only exist on Samsung devices with android 9,
// we replace them with their counterparts from android.widgets
"com.android.internal.widget.CalendarView" ->
// The following three widgets are created incorrectly on Samsung devices with android 9,
// we therefor create them manually
"CalendarView" ->
CalendarView(createWrappedContext(), attrs)

"com.android.internal.widget.DatePicker" ->
"DatePicker" ->
DatePicker(createWrappedContext(), attrs)

"com.android.internal.widget.NumberPicker" ->
"NumberPicker" ->
NumberPicker(createWrappedContext(), attrs)

else -> view
Expand Down

0 comments on commit a053b88

Please sign in to comment.