WIP: [android] convert help screen to compose #5179

Draft
arnaudvergnet wants to merge 1 commit from arnaudvergnet/compose into master
arnaudvergnet commented 2023-05-18 10:32:48 +00:00 (Migrated from github.com)

This is an experiment following https://github.com/orgs/organicmaps/discussions/2212.

The PR adds support for Kotlin and Jetpack Compose, and rewrites the help page with it. Help page is a quite simple screen so it was a good candidate for such a test. The goal is to fully migrate this screen and its child to decide if Compose is worth the migration. This is not ready to merge yet, this PR is here so it is easier for contributors to test and follow the development.

Please note while I have experience with other declarative UI languages such as React-Native and QML, this is my first experience with Compose. So any tips from experienced developers are welcome!

Known issues

  • Status bar is not updated on dark mode Fixed
  • FAQ and copyright buttons do not work yet. I'll try to convert those to compose as well so we can experiment with navigation between screens.

UI changes

This is not a 1:1 conversion from the XML layout. I want to avoid weird custom implementations and stick to the standard components as much as possible, so some things have slightly changed.

  • Buttons are smaller and have a different design. I never liked the old ones anyway so IMO this is a step forward.
  • Colors are a bit different, such as the dark mode background. While the app uses some custom colors, I decided to stick as much as possible to the standard Material Design colors so it is better integrated with the rest of the ecosystem.
  • Fonts have slightly different sizes and colors. Again, I tried to use standard typography styles that match as close as possible the previous design.

Architecture

If you are not familiar with declarative UI languages, please take a look here. The main difference is that we do not need XML at all anymore. Everything is defined inside Kotlin files.

The Help activity has been rewritten in Kotlin. It is fully interoperable with Java so nothing changes outside of HelpActivity.java (which became HelpActivity.kt). This class defines which "composables" to render in the screen, which theme to use, ...

I created other files to hold child composables so it is easier to read and we can easily reuse those components.

Compose uses its own theme/design system. This is contained in the Theme.kt file, and the colors used in Colors.kt. The theme uses Material design as its base, and adds new colors specific to organic maps on top. This will hopefully make migration to Material 3 a lot easier and will greatly simplify the theme. Using a color from the theme (without having to worry about light/dark variants) is as simple as calling ExtendedMaterialTheme.colors.COLOR_YOU_NEED.

As explained in the documentation, adaptive layout does not look at landscape or tablet mode, but rather at dimensions so it adapts better to different screen sizes and form factors. Here we use BoxWithConstraints composable to render child composable conditionally based on the available width.

Thoughts on Compose

This is way better than the current XML approach. I am a little biased because I worked a lot with similar frameworks, but it is easier to work with and understand. It will be easier to make UI changes and have a consistent design. I hope we'll be able to integrate it in the app and gradually make the switch.

This is an experiment following https://github.com/orgs/organicmaps/discussions/2212. The PR adds support for Kotlin and Jetpack Compose, and rewrites the help page with it. Help page is a quite simple screen so it was a good candidate for such a test. The goal is to fully migrate this screen and its child to decide if Compose is worth the migration. This is not ready to merge yet, this PR is here so it is easier for contributors to test and follow the development. Please note while I have experience with other declarative UI languages such as React-Native and QML, this is my first experience with Compose. So any tips from experienced developers are welcome! **Known issues** - ~Status bar is not updated on dark mode~ Fixed - FAQ and copyright buttons do not work yet. I'll try to convert those to compose as well so we can experiment with navigation between screens. **UI changes** This is not a 1:1 conversion from the XML layout. I want to avoid weird custom implementations and stick to the standard components as much as possible, so some things have slightly changed. - Buttons are smaller and have a different design. I never liked the old ones anyway so IMO this is a step forward. - Colors are a bit different, such as the dark mode background. While the app uses some custom colors, I decided to stick as much as possible to the standard Material Design colors so it is better integrated with the rest of the ecosystem. - Fonts have slightly different sizes and colors. Again, I tried to use standard typography styles that match as close as possible the previous design. **Architecture** If you are not familiar with declarative UI languages, please take a look [here](https://developer.android.com/jetpack/compose/mental-model). The main difference is that we do not need XML at all anymore. Everything is defined inside Kotlin files. The Help activity has been rewritten in Kotlin. It is fully interoperable with Java so nothing changes outside of `HelpActivity.java` (which became `HelpActivity.kt`). This class defines which "composables" to render in the screen, which theme to use, ... I created other files to hold child composables so it is easier to read and we can easily reuse those components. Compose uses its own theme/design system. This is contained in the `Theme.kt` file, and the colors used in `Colors.kt`. The theme uses Material design as its base, and adds new colors specific to organic maps on top. This will hopefully make migration to Material 3 a lot easier and will greatly simplify the theme. Using a color from the theme (without having to worry about light/dark variants) is as simple as calling `ExtendedMaterialTheme.colors.COLOR_YOU_NEED`. As explained in the [documentation](https://developer.android.com/jetpack/compose/layouts/adaptive), adaptive layout does not look at landscape or tablet mode, but rather at dimensions so it adapts better to different screen sizes and form factors. Here we use `BoxWithConstraints` composable to render child composable conditionally based on the available width. **Thoughts on Compose** This is way better than the current XML approach. I am a little biased because I worked a lot with similar frameworks, but it is easier to work with and understand. It will be easier to make UI changes and have a consistent design. I hope we'll be able to integrate it in the app and gradually make the switch.
Jean-BaptisteC (Migrated from github.com) reviewed 2023-05-18 10:55:30 +00:00
Jean-BaptisteC (Migrated from github.com) commented 2023-05-18 10:55:30 +00:00
    jvmTarget = JavaVersion.VERSION_17
```suggestion jvmTarget = JavaVersion.VERSION_17 ```
biodranik (Migrated from github.com) reviewed 2023-05-18 11:02:22 +00:00
biodranik (Migrated from github.com) commented 2023-05-18 11:02:22 +00:00

@Jean-BaptisteC did you test if this change will work properly on older Android 5 devices?

@Jean-BaptisteC did you test if this change will work properly on older Android 5 devices?
arnaudvergnet (Migrated from github.com) reviewed 2023-05-18 12:29:27 +00:00
arnaudvergnet (Migrated from github.com) commented 2023-05-18 12:29:27 +00:00

> 'compileFdroidDebugJavaWithJavac' task (current target is 11) and 'compileFdroidDebugKotlin' task (current target is 17) jvm target compatibility should be set to the same Java version.

`> 'compileFdroidDebugJavaWithJavac' task (current target is 11) and 'compileFdroidDebugKotlin' task (current target is 17) jvm target compatibility should be set to the same Java version.`
arnaudvergnet (Migrated from github.com) reviewed 2023-05-18 12:39:00 +00:00
arnaudvergnet (Migrated from github.com) commented 2023-05-18 12:39:00 +00:00

For this to work we need to change this as well:

  compileOptions {
    sourceCompatibility JavaVersion.VERSION_17
    targetCompatibility JavaVersion.VERSION_17
  }

It compiles ok but I don't know the impact this will have.

For this to work we need to change this as well: ``` compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } ``` It compiles ok but I don't know the impact this will have.
Jean-BaptisteC (Migrated from github.com) reviewed 2023-05-19 18:57:32 +00:00
Jean-BaptisteC (Migrated from github.com) commented 2023-05-19 18:57:32 +00:00

Tested on Lenovo Yoga Tab 2 Android 5.1, works but map render is so long

Tested on Lenovo Yoga Tab 2 Android 5.1, works but map render is so long
arnaudvergnet (Migrated from github.com) reviewed 2023-05-19 19:28:07 +00:00
arnaudvergnet (Migrated from github.com) commented 2023-05-19 19:28:06 +00:00

is it slower since the java 17 change or since adding compose? Compose should not impact this screen as it is only added on the about screen

is it slower since the java 17 change or since adding compose? Compose should not impact this screen as it is only added on the about screen
Jean-BaptisteC (Migrated from github.com) reviewed 2023-05-19 19:49:47 +00:00
Jean-BaptisteC (Migrated from github.com) commented 2023-05-19 19:49:47 +00:00

I guess Java 17, splash screen and load map is too long.

I guess Java 17, splash screen and load map is too long.
arnaudvergnet (Migrated from github.com) reviewed 2023-05-19 20:09:17 +00:00
arnaudvergnet (Migrated from github.com) commented 2023-05-19 20:09:17 +00:00

If you tried the pr without changing it then it was not using java 17. I tried on an emulator running android 5 and could not find any difference. I don't have old device running this version so I'll need your help on this.

If its app loading time that's increased that's possible and that's exactly the type of stuff we want to test with this PR.

Can you please try and measure the startup difference between current release and this PR?

I'll try to measure that on the devices I have at hand.

@biodranik are releases and PR run artifacts optimized in the same way?

If you tried the pr without changing it then it was not using java 17. I tried on an emulator running android 5 and could not find any difference. I don't have old device running this version so I'll need your help on this. If its app loading time that's increased that's possible and that's exactly the type of stuff we want to test with this PR. Can you please try and measure the startup difference between current release and this PR? I'll try to measure that on the devices I have at hand. @biodranik are releases and PR run artifacts optimized in the same way?
Jean-BaptisteC (Migrated from github.com) reviewed 2023-05-19 20:45:14 +00:00
Jean-BaptisteC (Migrated from github.com) commented 2023-05-19 20:45:14 +00:00

Launch time (Load splashscreen + load map)
Latest release - 12,52 seconds
Debug compose with jvmTarget=17 - 33,12 seconds

Launch time (Load splashscreen + load map) Latest release - 12,52 seconds Debug compose with jvmTarget=17 - 33,12 seconds
biodranik (Migrated from github.com) reviewed 2023-05-19 21:20:28 +00:00
biodranik (Migrated from github.com) commented 2023-05-19 21:20:28 +00:00

@arnaudvergnet fdroid beta should be equal to fdroid in the store. @Jean-BaptisteC comparing debug versions is not informative. Can you please compare fdroid beta from this branch with fdroid production start time?

@arnaudvergnet fdroid beta should be equal to fdroid in the store. @Jean-BaptisteC comparing debug versions is not informative. Can you please compare fdroid beta from this branch with fdroid production start time?
arnaudvergnet (Migrated from github.com) reviewed 2023-05-19 21:25:56 +00:00
arnaudvergnet (Migrated from github.com) commented 2023-05-19 21:25:56 +00:00

@Jean-BaptisteC why do you force jvmTarget=17? It works fine when using 11 as it is right now in the PR

@Jean-BaptisteC why do you force jvmTarget=17? It works fine when using 11 as it is right now in the PR
arnaudvergnet (Migrated from github.com) reviewed 2023-05-19 21:54:13 +00:00
arnaudvergnet (Migrated from github.com) commented 2023-05-19 21:54:12 +00:00

I tried on a Fairphone 3 and an emulator. Using master and this pr, with java 11 and 17, and I can't find any difference. It always takes around 2 to 5 seconds depending on the device.

I tried on a Fairphone 3 and an emulator. Using master and this pr, with java 11 and 17, and I can't find any difference. It always takes around 2 to 5 seconds depending on the device.
Jean-BaptisteC (Migrated from github.com) reviewed 2023-05-20 06:15:33 +00:00
Jean-BaptisteC (Migrated from github.com) commented 2023-05-20 06:15:33 +00:00
writeFdroidBetaSigningConfigVersions
ERROR: R8: java.lang.OutOfMemoryError: Java heap space
``` writeFdroidBetaSigningConfigVersions ERROR: R8: java.lang.OutOfMemoryError: Java heap space ```
arnaudvergnet (Migrated from github.com) reviewed 2023-05-20 08:48:10 +00:00
arnaudvergnet (Migrated from github.com) commented 2023-05-20 08:48:10 +00:00

Because of the libraries added we need to increase the heap space to something like 2GB (was at 1GB). It is optimized by R8 anyway but it needs more memory for compiling. I updated the PR with this change.

Because of the libraries added we need to increase the heap space to something like 2GB (was at 1GB). It is optimized by R8 anyway but it needs more memory for compiling. I updated the PR with this change.
Jean-BaptisteC (Migrated from github.com) reviewed 2023-05-20 09:21:22 +00:00
Jean-BaptisteC (Migrated from github.com) commented 2023-05-20 09:21:21 +00:00

Latest release FDroid - 11,78 seconds
Beta Fdroid - 9,50 seconds

Latest release FDroid - 11,78 seconds Beta Fdroid - 9,50 seconds
arnaudvergnet (Migrated from github.com) reviewed 2023-05-20 09:37:59 +00:00
arnaudvergnet (Migrated from github.com) commented 2023-05-20 09:37:59 +00:00

So its actually faster now in this PR? Don't know how its possible but that's nice :)

So its actually faster now in this PR? Don't know how its possible but that's nice :)
biodranik (Migrated from github.com) reviewed 2023-05-20 09:44:21 +00:00
biodranik (Migrated from github.com) commented 2023-05-20 09:44:21 +00:00

It may be possible because of the system cache. A proper test is to reboot the device before each app run.

It may be possible because of the system cache. A proper test is to reboot the device before each app run.
biodranik (Migrated from github.com) reviewed 2023-05-20 09:48:37 +00:00
biodranik (Migrated from github.com) commented 2023-05-20 09:48:36 +00:00

Another reason is that there are already some commits after the public fdroid release was built. So the correct way to compare is to use this pr and then undo its commits and rebuild it again.

Another reason is that there are already some commits after the public fdroid release was built. So the correct way to compare is to use this pr and then undo its commits and rebuild it again.
arnaudvergnet (Migrated from github.com) reviewed 2023-05-20 09:52:27 +00:00
arnaudvergnet (Migrated from github.com) commented 2023-05-20 09:52:27 +00:00

In my tests I compared with the master version this pr is based on and could not find much difference.

In my tests I compared with the master version this pr is based on and could not find much difference.
Jean-BaptisteC (Migrated from github.com) reviewed 2023-05-20 10:36:23 +00:00
Jean-BaptisteC (Migrated from github.com) commented 2023-05-20 10:36:23 +00:00

I have retry, load time between master and compose branch is similar ~9 seconds

I have retry, load time between master and compose branch is similar ~9 seconds
rtsisyk reviewed 2023-05-21 14:45:17 +00:00

Please push Java 17 change separately. It is needed in any case.

Please push Java 17 change separately. It is needed in any case.
biodranik (Migrated from github.com) reviewed 2023-05-21 17:00:31 +00:00
biodranik (Migrated from github.com) commented 2023-05-21 17:00:31 +00:00

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

Is this change compatible with Android 5 devices?

> compileOptions { > sourceCompatibility JavaVersion.VERSION_17 > targetCompatibility JavaVersion.VERSION_17 > } Is this change compatible with Android 5 devices?
Jean-BaptisteC (Migrated from github.com) reviewed 2023-05-21 17:22:04 +00:00
Jean-BaptisteC (Migrated from github.com) commented 2023-05-21 17:22:04 +00:00

Yes, i have try with Lenovo Tablet with Android 5.0

Yes, i have try with Lenovo Tablet with Android 5.0
Jean-BaptisteC (Migrated from github.com) approved these changes 2023-05-22 10:08:29 +00:00
Jean-BaptisteC (Migrated from github.com) left a comment

Pixel 6 - Android 13
Good job, just use same color as background for Android app bar and it's perfect :)

✅ Pixel 6 - Android 13 Good job, just use same color as background for Android app bar and it's perfect :)
This repo is archived. You cannot comment on pull requests.
No reviewers
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
2 participants
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#5179
No description provided.