-
Notifications
You must be signed in to change notification settings - Fork 35
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Attempting to use both the Java and Android tracker in the same project causes DuplicateClass errors #383
Comments
Hi @mezpahlan, thank you for raising this! We haven't seen this type of use case before. I would advise against using both the Java and Android trackers in one project. Mainly because then the events will have different properties – each tracker will have different user and session identifiers (the Java tracker may even be missing those) and context entities. It will be difficult to make sense of these events in the warehouse and join them. One option to consider would be for the library A to accept a tracking interface that would be implemented in the application B. So for example, you could define an interface in library A that could look like: interface TrackingInterface {
void trackScreenView();
...
} Then the application would implement this using the Android tracker and pass an instance to the library to use to track events. In this setup, the library doesn't need any dependency on the Java or Android trackers. |
Thanks @matus-tomlein 🙏
It might sound odd but this is what we're trying to achieve. Apologies I should have elaborated a bit more in the original post. We want the An example of this is:
None of these Events need to be joined back to the user that might be using Application B.
Another question we had was "What if Application B didn't have any Snowplow dependencies? In that scenario we still want our Library A Telemetry Events to be sent via the Snowplow I appreciate this is a very niche use case 😅, but what we're looking for is:
This works if Application B is another Java application (for example a Spring Boot backend application), or if Application B is an Android application that doesn't yet depend on the |
Ah, I see, thanks for the context @mezpahlan! In that case, I think you're correct in wanting to use both the Java and Android tracker and I don't see other solution than changing the namespace of the For the short term, if you are able to fork the repo, change the namespace and build a jar that you can use in your library, that might be a better option. |
Totally understandable. Yup, thanks I'll see about forking the repo for the time being. |
Describe the bug
I have a library A that uses the
java-tracker
as a dependency. It's a pure Java project because it needs to be shared with other pure Java projects. That is to say it uses the Gradlejava
plugin.I also have an application B that uses the
android-tracker
as a dependency. This uses the Gradleandroid-application
plugin but otherwise contains a mix of Android libraries and Java libraries.Both scenarios are valid until you try and use library A in application B as dependency. Gradle then complains that there is a DuplicateClass error.
To Reproduce
java-tracker
to your Maven Local repo.android-tracker
.Expected behaviour
The Android application can be successfully compiled with both the
java-tracker
and theandroid-tracker
side by side.Additional context
I originally wanted to use the
android-tracker
as a dependency to the library I am building (library A) but I cannot import an Android.aar
into a project that only depends on Java. The usage of Snowplow in Library A is to send events about Library A independently of whatever application Library A may be embedded in - be that Java or Android.It looks to me that it is only
DevicePlatform
(in the Java tracker, in the Android tracker) that causes the issue due to the matching namespace and class name.I really like the
android-tracker
compared to thejava-tracker
as I mainly write Kotlin, but there isn't a way for me to build a pure Java SDK that can depend on theandroid-tracker
at the moment and I realise refactoring theandroid-tracker
to separate Android dependencies into another artefact (perhaps two Kotlin written SDKs calledsnowplow-core
andsnowplow-android
) is a bit much to ask.As a quick win would you consider renaming
DevicePlatform
in thejava-tracker
? Or moving it to a package that won't cause a collision?The text was updated successfully, but these errors were encountered: