Thomas Wirth
Thomas Wirth
If the Log level is != ASSERT the library uses the low-level logging method [Log.println(priority, tag, part)](https://github.com/square/logcat/blob/f877f806e8dce98a3abbc2ca80e6447b38cd8f42/logcat/src/main/java/logcat/AndroidLogcatLogger.kt#L72). I know that this part is borrowed from Timber, but I wonder what...
Looks like BellSoft is recommending Alpaquita Linux as an replacement for Alpine to use in containers with Liberica JDK: https://github.com/bell-sw/Liberica/blob/master/docker/repos/liberica-openjdk-alpine-musl/README.md#alpaquita-linux-is-a-free-and-advanced-replacement-for-alpine-to-use-in-containers-with-liberica-jdk
We see the following warning in our minified production app which uses `com.adjust.sdk:adjust-android-webbridge:4.38.1` when scanning with tools like [AppSweep](https://www.guardsquare.com/appsweep-mobile-application-security-testing): > High com.adjust.sdk.webbridge.AdjustBridgeUtil$8$2 does not check TLS certificate validity correctly A...
I would recommend using Gradles Task Container Extension functions. So instead of ```kotlin tasks.register("clean", Delete::class.java) { delete(rootProject.buildDir) } ``` you can write ```kotlin tasks.register("clean") { delete(rootProject.buildDir) } ```
Using the buildscript block (like in your root `build.gradle.kts`) is considered as [Legacy Plugin Application](https://docs.gradle.org/current/userguide/plugins.html#sec:old_plugin_application). You should migrate to the [Plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block).
Looks like you just set the gradle version in your `gradle-wrapper.properties` but didn't run the recommended gradle wrapper update task (your `gradlew` and `gradlew.bat` are not matching this gradle release):...
Remove the `.DS_Store` file (also part of your gitignore) from this repo. You should also consider to completly remove the `.idea` folder. I don't think it makes sense to set...
### Integration sentry-android ### Build System Gradle ### AGP Version 8.6 ### Proguard Enabled ### Version 7.6 ### Steps to Reproduce We use [AppSweep](https://appsweep.guardsquare.com/) by Guardsquare for security scans of...
### Gradle Version 8.7 ### AGP Version 8.3.2 ### Code Minifier/Optimizer None ### Version 4.5 ### Sentry SDK Version 7.8.0 ### Steps to Reproduce - Add Sentry Android Gradle plugin...