Merge branch 'develop' into renovate/android.gradle.plugin

This commit is contained in:
Marco Romano 2023-08-17 14:52:47 +02:00 committed by GitHub
commit c4cf6c8170
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1254 changed files with 9562 additions and 4228 deletions

View file

@ -56,12 +56,12 @@ private const val versionMinor = 1
// Note: even values are reserved for regular release, odd values for hotfix release.
// When creating a hotfix, you should decrease the value, since the current value
// is the value for the next regular release.
private const val versionPatch = 2
private const val versionPatch = 4
object Versions {
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch
val versionName = "$versionMajor.$versionMinor.$versionPatch"
const val compileSdk = 33
const val compileSdk = 34
const val targetSdk = 33
const val minSdk = 23
val javaCompileVersion = JavaVersion.VERSION_17

View file

@ -45,6 +45,7 @@ fun CommonExtension<*, *, *, *, *>.androidConfig(project: Project) {
checkDependencies = true
abortOnError = true
ignoreTestFixturesSources = true
checkGeneratedSources = false
}
}
@ -71,6 +72,7 @@ fun CommonExtension<*, *, *, *, *>.composeConfig(libs: LibrariesForLibs) {
// error.add("ComposableLambdaParameterNaming")
error.add("ComposableLambdaParameterPosition")
ignoreTestFixturesSources = true
checkGeneratedSources = false
}
}