[android-auto] Add gradle support #3892

Closed
AndrewShkrob wants to merge 1 commit from android-auto/gradle-config into master
Member

The second part of #3806.

I know about issue #3886. From my pov, there is a lot of time to find a solution because it can wait until the end of Android Auto development.

My proposition:

  • Separate product flavor car for Android Auto development and maybe AAOS in future
  • Product flavor noCar. It will be used for release builds during the AA development
    • I don't like noCar name. Do you have a better variant?
    • I also tried to find a way to set an empty name for this flavor but didn't find a solution. Having an empty flavor name will be better in our case - no need to update almost all android workflows and playConfigs section in build.gradle . Maybe you know how to implement it?

Probably there is no way to set an empty flavor name.
So, AA support can be implemented by setting a flag f.e. in gradle.properties file. What do you think about this solution?

The second part of #3806. I know about issue #3886. From my pov, there is a lot of time to find a solution because it can wait until the end of Android Auto development. My proposition: * Separate product flavor `car` for Android Auto development and maybe AAOS in future * Product flavor `noCar`. It will be used for release builds during the AA development * I don't like `noCar` name. Do you have a better variant? * I also tried to find a way to set an empty name for this flavor but didn't find a solution. Having an empty flavor name will be better in our case - no need to update almost all android workflows and `playConfigs` section in `build.gradle` . Maybe you know how to implement it? Probably there is no way to set an empty flavor name. So, AA support can be implemented by setting a flag f.e. in `gradle.properties` file. What do you think about this solution?
rtsisyk reviewed 2022-11-15 18:42:38 +00:00
Owner

Noted. Need some time to research available options.

Noted. Need some time to research available options.
biodranik commented 2022-11-16 09:41:55 +00:00 (Migrated from github.com)

I don't think that we need to complicate everything by supporting APIs 21 and 22. Let's make the decision and move to min SDK API 23. To make it smoother, let's follow this plan:

  1. Review, test and merge as much API 21-compatible code for AA as possible.
  2. Keep a separate branch with min API 23 and AA enabled for active development and testing.
  3. When AA will be production-ready, we'll make the last stable API 21 public release of OM.
  4. After that, we'll merge AA into the master and drop API 21-22 support.

It will help us to save a lot of time on future support and releases.

Ideally, it would be great to add dynamic map updates before dropping API 21, will see if we can make it.

I don't think that we need to complicate everything by supporting APIs 21 and 22. Let's make the decision and move to min SDK API 23. To make it smoother, let's follow this plan: 1. Review, test and merge as much API 21-compatible code for AA as possible. 2. Keep a separate branch with min API 23 and AA enabled for active development and testing. 3. When AA will be production-ready, we'll make the last stable API 21 public release of OM. 4. After that, we'll merge AA into the master and drop API 21-22 support. It will help us to save a lot of time on future support and releases. Ideally, it would be great to add dynamic map updates before dropping API 21, will see if we can make it.
Owner

I don't think that we need to complicate everything by supporting APIs 21 and 22. Let's make the decision and move to min SDK API 23. To make it smoother, let's follow this plan:

1. Review, test and merge as much API 21-compatible code for AA as possible.

2. Keep a separate branch with min API 23 and AA enabled for active development and testing.

3. When AA will be production-ready, we'll make the last stable API 21 public release of OM.

4. After that, we'll merge AA into the master and drop API 21-22 support.

It will help us to save a lot of time on future support and releases.

Ideally, it would be great to add dynamic map updates before dropping API 21, will see if we can make it.

In this case we need inverted structure. All new AA code should go to main flavour, legacy stuff we can try to maintain in legacy flavour.

I haven't found any good documentation on how to use multiple AAB Bundles to target different API levels. With APK it is possible, with AAB - IDK. I filed a support request to Google. Let's wait for their response. Please be patient.

> I don't think that we need to complicate everything by supporting APIs 21 and 22. Let's make the decision and move to min SDK API 23. To make it smoother, let's follow this plan: > > 1. Review, test and merge as much API 21-compatible code for AA as possible. > > 2. Keep a separate branch with min API 23 and AA enabled for active development and testing. > > 3. When AA will be production-ready, we'll make the last stable API 21 public release of OM. > > 4. After that, we'll merge AA into the master and drop API 21-22 support. > > > It will help us to save a lot of time on future support and releases. > > Ideally, it would be great to add dynamic map updates before dropping API 21, will see if we can make it. In this case we need inverted structure. All new AA code should go to `main` flavour, legacy stuff we can try to maintain in `legacy` flavour. I haven't found any good documentation on how to use multiple AAB Bundles to target different API levels. With APK it is possible, with AAB - IDK. I filed a support request to Google. Let's wait for their response. Please be patient.
biodranik commented 2022-11-19 12:53:08 +00:00 (Migrated from github.com)

Let's proceed without hacks and workarounds. Separate and merge as much common code into the master branch as possible, and keep ready-to-merge, rebased, tested, and working AA branch, which will drop API 21-22 support when we decide that it's production-ready, and the last stable API 21-22 release is out. We can build and distribute betas from the AA branch to make sure that it is production-ready.

That means that there should be a separate commit that cleans up API 21-22 related stuff on the AA branch.

Let's proceed without hacks and workarounds. Separate and merge as much common code into the master branch as possible, and keep ready-to-merge, rebased, tested, and working AA branch, which will drop API 21-22 support when we decide that it's production-ready, and the last stable API 21-22 release is out. We can build and distribute betas from the AA branch to make sure that it is production-ready. That means that there should be a separate commit that cleans up API 21-22 related stuff on the AA branch.
Owner

Let's proceed without hacks and workarounds. Separate and merge as much common code into the master branch as possible, and keep ready-to-merge, rebased, tested, and working AA branch, which will drop API 21-22 support when we decide that it's production-ready, and the last stable API 21-22 release is out. We can build and distribute betas from the AA branch to make sure that it is production-ready.

That means that there should be a separate commit that cleans up API 21-22 related stuff on the AA branch.

Agree.

> Let's proceed without hacks and workarounds. Separate and merge as much common code into the master branch as possible, and keep ready-to-merge, rebased, tested, and working AA branch, which will drop API 21-22 support when we decide that it's production-ready, and the last stable API 21-22 release is out. We can build and distribute betas from the AA branch to make sure that it is production-ready. > > That means that there should be a separate commit that cleans up API 21-22 related stuff on the AA branch. Agree.
Author
Member

So, I'll prepare another PR with all AA code from #3806 to a separate branch.

So, I'll prepare another PR with all AA code from #3806 to a separate branch.
Owner

Google told me that two separate bundles with different APIs are not possible. We will have to drop API21-22 if we want Auto.

Google told me that two separate bundles with different APIs are not possible. We will have to drop API21-22 if we want Auto.
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
3 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#3892
No description provided.