Build(deps): Bump com.android.tools.build:gradle from 7.4.1 to 7.4.2
Build(deps): Bump com.diffplug.spotless from 6.15.0 to 6.16.0
Build(deps): Bump org.json:json from 20220924 to 20230227
Update Nextcloud Android library
Update 3rd-party dependencies
This commit extracts the logic to initialize a fragment without UI on a seperate method called `initTaskRetainerFragment`.
Signed-off-by: DESKTOP-EMSE65H\Archontis <arxontisk02@gmail.com>
This commit:
- Creates a `initUI()` method to handle the setup of the toolbar and UI components
- Removes corresponding code from `onCreate()` and replaced it with a call to the new method
- Improves readability of `onCreate()` method
This change does not affect the functionality of the original code.
Signed-off-by: DESKTOP-EMSE65H\Archontis <arxontisk02@gmail.com>
This commit refactors the onCreate() method by exctracting a new method to handle the layout inflation and setting of the content view. The readability of onCreate method is improved.
This change does not affect the functionality of the original code.
Signed-off-by: DESKTOP-EMSE65H\Archontis <arxontisk02@gmail.com>
This commit refactors the onCreate() method by extracting the code responsible for loading the saved instance state into a separate method named loadSavedInstanceState(). This improves the readability and maintainability of the code by reducing the complexity of the onCreate() method and separating concerns. The loadSavedInstanceState() method simply takes a Bundle parameter and initializes the relevant instance variables based on the saved state. The onCreate() method now simply calls the super.onCreate() method, sets the default theme, and initializes the sync broadcast receiver.
This change does not affect the functionality of the original code.
Signed-off-by: DESKTOP-EMSE65H\Archontis <arxontisk02@gmail.com>
This commit:
- Creates a `initUI()` method to handle the setup of the toolbar and UI components
- Removes corresponding code from `onCreate()` and replaced it with a call to the new method
- Improves readability of `onCreate()` method
This change does not affect the functionality of the original code.
This commit refactors the onCreate() method by exctracting a new method to handle the layout inflation and setting of the content view. The readability of onCreate method is improved.
This change does not affect the functionality of the original code.
This commit refactors the onCreate() method by extracting the code responsible for loading the saved instance state into a separate method named loadSavedInstanceState(). This improves the readability and maintainability of the code by reducing the complexity of the onCreate() method and separating concerns. The loadSavedInstanceState() method simply takes a Bundle parameter and initializes the relevant instance variables based on the saved state. The onCreate() method now simply calls the super.onCreate() method, sets the default theme, and initializes the sync broadcast receiver.
This change does not affect the functionality of the original code.