Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
common: Deprecate
redmadrobot.jvmTarget
with deprecation levelError
.Use JVM Toolchains instead to specify JVM target.
Kotlin, Android Gradle Plugin, detekt and many other tools have support for this mechanism,
In most cases, adding this into your
build.gradle.kts
should be enough:kotlin { jvmToolchain(17) }
You can also configure automatic toolchains downloading.
common: Disable automatic repositories adding by default.
If you rely on this feature, consider declaring required repositories explicitly, or enable it in
gradle.properties
:redmadrobot.add.repositories=true
android: Do not add
LOCK_ORIENTATION
andCRASH_REPORTS_ENABLED
variables toBuildConfig
implicitlyOther Changes
ANDROID_BUILD_TOOLS_VERSION
env variable forbuildToolsVersion
if the option is not configured (closes android: Use buildToolsVersion from ANDROID_BUILD_TOOLS_VERSION env variable #132)redmadrobot.android.ndkVersion
to specify NDK version for all android modulesaidl
,renderScript
andbuildConfig
as they are already disabled by default in new versions of AGP