Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(android): update libraries, add "zIndex" getter #628

Merged
merged 3 commits into from
Sep 13, 2023

Conversation

m1ga
Copy link
Contributor

@m1ga m1ga commented Feb 17, 2023

Null check update
My PR into the Google map-utils repo ("null check") was accepted and merged by google 馃憤 !
That should reduce some random "null errors" in the internal onAnimationUpdate function.


Side note:

getColor can be overwritten in TiCluserRenderer now to set custom colors like

    @Override
    public int getColor(int clusterSize) {
        final float hueRange = 220;
        final float sizeRange = 300;
        final float size = Math.min(clusterSize, sizeRange);
        final float hue = (sizeRange - size) * (sizeRange - size) / (sizeRange * sizeRange) * hueRange;
        return Color.HSVToColor(new float[]{
                hue, 1f, .6f
        });
    }

but not part of this PR :)

@m1ga m1ga marked this pull request as draft August 23, 2023 19:52
@m1ga m1ga marked this pull request as ready for review September 3, 2023 20:58
android/build.gradle Outdated Show resolved Hide resolved
@hansemannn hansemannn changed the title feat(android): update libraries feat(android): update libraries, add "zIndex" getter Sep 13, 2023
@hansemannn hansemannn merged commit 09dc6b5 into master Sep 13, 2023
3 checks passed
@hansemannn hansemannn deleted the 230217_android_libs branch September 13, 2023 18:04
@@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 5.5.1
version: 5.5.2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5.5.2 was released in June already. Something is broken here. I will bump it to 5.5.3, but it seems like the last release was not properly tagged

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok ok. It was distributed with the SDK so that was fine at least. I'll add a PR to the SDK to include those modules

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Already done :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants