如何去除开源应用程序中的跟踪器?

发布于 2025-01-12 23:46:52 字数 209 浏览 1 评论 0原文

I want to use an open source app (https://github.com/NYRDS/remixed-dungeon), but the amount od tracking the app does is something else. The GPL (under which the app is licenced) allows me to change this. Is there a tool or a guide to do just that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

汹涌人海 2025-01-19 23:46:52

首先,您需要一些开发经验,在本例中是 Java 和 Gradle。

然后我将应用程序项目加载到 Android Studio 中并编译它。你必须没有编译错误。

然后检查 build.gradle 文件中的广告库(例如以 implementationandroidImplementation 开头的条目)。将它们一一注释掉,并在注释掉一项后检查使用此库中的代码的编译错误。

还注释掉有错误的代码,因为该库不再存在。重复此操作,直至修复所有错误。

First you need a bit of development experience, Java and Gradle in this case.

Then I would load the app project into Android Studio and compile it. You have to have no compile errors.

Then check the build.gradle files for ad libraries (e.g. entries starting with implementation or androidImplementation). Comment them one-by-one out and after commenting out one check for compile errors where code from this libraries is used.

Comment out also the code with errors because the library is no longer present. Repeat until all errors are fixed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文