Android Gradle Problem


I want to know where this package comes from how do I add this package in Gradle

Things took a step further
But the following problem occurred

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':sourcesJar'.
> Entry com/simsilica/lemur/icons/bevel-quad.png is a duplicate but no duplicate handling strategy has been set. Please refer to https://docs.gradle.org/7.4.2/dsl/org.gradle.api.tasks.Copy.html#org.gradle.api.tasks.Copy:duplicatesStrategy for details.

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 2s
15 actionable tasks: 2 executed, 13 up-to-date

It seems that I am not proficient enough with Gradle.
I don’t understand the reason for the mistake.
I need a hint.
I will continue to use the magic of Google to try to fix it :sneezing_face: :sneezing_face:

This is a problem with the way android works. All libraires are merged together so (unlike in normal java) you can’t have two resources with the same name. In this case that has happened and you’re being asked what to do about it (with the duplicate resolution strategy).

It is possibly to get lemur to work on android but I’m not an android developer so don’t know more than that

1 Like

Thanks for the tip

Lemur should only have one bevel-quad.png… so something else is screwy.

…but yes, for Android you will hit other duplicates that are slightly harder to resolve without some manual intervention.

1 Like

I will An attempt to merge LemurDynamo with Lemur.
LemurDynamo seems to have a lot of Android support and I’m still trying.