mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 17:37:05 +05:30
Revert "fix(build): temporarily revert to AGP 8.0.x"
This reverts commit 1e888494ee
.
This commit is contained in:
parent
92fce55feb
commit
d8a76cf1e7
5 changed files with 17 additions and 29 deletions
2
.github/workflows/baseline-profile.yml
vendored
2
.github/workflows/baseline-profile.yml
vendored
|
@ -86,7 +86,7 @@ jobs:
|
||||||
# Pull down any changes which may have been committed while this workflow has been running
|
# Pull down any changes which may have been committed while this workflow has been running
|
||||||
git pull
|
git pull
|
||||||
# Sort the baseline profile, output to android/
|
# Sort the baseline profile, output to android/
|
||||||
sort -o android/src/main/baseline-prof.txt benchmark/build/outputs/managed_device_android_test_additional_output/api31/BaselineProfileGenerator_generateBaselineProfile-baseline-prof.txt
|
sort -o android/src/main/baseline-prof.txt benchmark/build/outputs/managed_device_android_test_additional_output/benchmark/api31/BaselineProfileGenerator_generateBaselineProfile-baseline-prof.txt
|
||||||
# If the baseline profile has changed, commit it
|
# If the baseline profile has changed, commit it
|
||||||
if [[ $(git diff --stat android/src/main/baseline-prof.txt) != '' ]]; then
|
if [[ $(git diff --stat android/src/main/baseline-prof.txt) != '' ]]; then
|
||||||
git add android/src/main/baseline-prof.txt
|
git add android/src/main/baseline-prof.txt
|
||||||
|
|
|
@ -11,6 +11,7 @@ package dev.msfjarvis.claw.gradle
|
||||||
import com.android.build.api.dsl.ApplicationExtension
|
import com.android.build.api.dsl.ApplicationExtension
|
||||||
import com.android.build.api.dsl.LibraryExtension
|
import com.android.build.api.dsl.LibraryExtension
|
||||||
import com.android.build.api.variant.ApplicationAndroidComponentsExtension
|
import com.android.build.api.variant.ApplicationAndroidComponentsExtension
|
||||||
|
import com.android.build.api.variant.HasUnitTestBuilder
|
||||||
import com.android.build.api.variant.LibraryAndroidComponentsExtension
|
import com.android.build.api.variant.LibraryAndroidComponentsExtension
|
||||||
import com.android.build.gradle.BaseExtension
|
import com.android.build.gradle.BaseExtension
|
||||||
import dev.msfjarvis.claw.gradle.LintConfig.configureLint
|
import dev.msfjarvis.claw.gradle.LintConfig.configureLint
|
||||||
|
@ -73,7 +74,7 @@ private fun Project.configureSlimTests() {
|
||||||
// Disable unit test tasks on the release build type for Android Library projects
|
// Disable unit test tasks on the release build type for Android Library projects
|
||||||
extensions.findByType<LibraryAndroidComponentsExtension>()?.run {
|
extensions.findByType<LibraryAndroidComponentsExtension>()?.run {
|
||||||
beforeVariants(selector().withBuildType("release")) {
|
beforeVariants(selector().withBuildType("release")) {
|
||||||
it.enableUnitTest = false
|
(it as HasUnitTestBuilder).enableUnitTest = false
|
||||||
it.enableAndroidTest = false
|
it.enableAndroidTest = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -81,7 +82,7 @@ private fun Project.configureSlimTests() {
|
||||||
// Disable unit test tasks on the release build type for Android Application projects.
|
// Disable unit test tasks on the release build type for Android Application projects.
|
||||||
extensions.findByType<ApplicationAndroidComponentsExtension>()?.run {
|
extensions.findByType<ApplicationAndroidComponentsExtension>()?.run {
|
||||||
beforeVariants(selector().withBuildType("release")) {
|
beforeVariants(selector().withBuildType("release")) {
|
||||||
it.enableUnitTest = false
|
(it as HasUnitTestBuilder).enableUnitTest = false
|
||||||
it.enableAndroidTest = false
|
it.enableAndroidTest = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
*/
|
*/
|
||||||
@file:Suppress("UnstableApiUsage")
|
@file:Suppress("UnstableApiUsage")
|
||||||
|
|
||||||
|
import com.android.build.api.variant.HasUnitTestBuilder
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("dev.msfjarvis.claw.android-library")
|
id("dev.msfjarvis.claw.android-library")
|
||||||
id("dev.msfjarvis.claw.kotlin-android")
|
id("dev.msfjarvis.claw.kotlin-android")
|
||||||
|
@ -25,7 +27,7 @@ android {
|
||||||
namespace = "dev.msfjarvis.claw.common"
|
namespace = "dev.msfjarvis.claw.common"
|
||||||
}
|
}
|
||||||
|
|
||||||
androidComponents { beforeVariants { it.enableUnitTest = false } }
|
androidComponents { beforeVariants { (it as HasUnitTestBuilder).enableUnitTest = false } }
|
||||||
|
|
||||||
anvil { generateDaggerFactories.set(true) }
|
anvil { generateDaggerFactories.set(true) }
|
||||||
|
|
||||||
|
|
|
@ -25,9 +25,6 @@ kapt.incremental.apt=true
|
||||||
# Turn off AP discovery in compile path to enable compile avoidance
|
# Turn off AP discovery in compile path to enable compile avoidance
|
||||||
kapt.include.compile.classpath=false
|
kapt.include.compile.classpath=false
|
||||||
|
|
||||||
# Force disable testOnly flag in manifest
|
|
||||||
android.injected.testOnly=false
|
|
||||||
|
|
||||||
# New incremental compilation for Kotlin
|
# New incremental compilation for Kotlin
|
||||||
kotlin.incremental.useClasspathSnapshot=true
|
kotlin.incremental.useClasspathSnapshot=true
|
||||||
kotlin.build.report.output=file
|
kotlin.build.report.output=file
|
||||||
|
@ -35,35 +32,23 @@ kotlin.build.report.output=file
|
||||||
# Enable AndroidX
|
# Enable AndroidX
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
|
|
||||||
# Enable non-transitive R class namespacing where each library only contains
|
# Disable mostly unused default Android build features
|
||||||
# references to the resources it declares instead of declarations plus all
|
|
||||||
# transitive dependency references.
|
|
||||||
android.nonTransitiveRClass=true
|
|
||||||
|
|
||||||
# Only keep the single relevant constructor for types mentioned in XML files
|
|
||||||
# instead of using a parameter wildcard which keeps them all.
|
|
||||||
android.useMinimalKeepRules=true
|
|
||||||
|
|
||||||
# Default Android build features
|
|
||||||
android.defaults.buildfeatures.buildconfig=false
|
|
||||||
android.defaults.buildfeatures.aidl=false
|
|
||||||
android.defaults.buildfeatures.renderscript=false
|
|
||||||
android.defaults.buildfeatures.resvalues=false
|
android.defaults.buildfeatures.resvalues=false
|
||||||
android.defaults.buildfeatures.shaders=false
|
android.defaults.buildfeatures.shaders=false
|
||||||
|
android.library.defaults.buildfeatures.androidresources=false
|
||||||
|
|
||||||
# Experimental features
|
# Disallow resolution of dependencies at configuration time
|
||||||
|
android.dependencyResolutionAtConfigurationTime.disallow=true
|
||||||
|
|
||||||
|
# Disallow parsing the manifest too early in the build process
|
||||||
android.disableEarlyManifestParsing=true
|
android.disableEarlyManifestParsing=true
|
||||||
android.enablePartialRIncrementalBuilds=true
|
|
||||||
android.experimental.testOptions.uninstallIncompatibleApks=true
|
|
||||||
android.enableBuildConfigAsBytecode=true
|
|
||||||
android.experimental.enableNewResourceShrinker.preciseShrinking=true
|
|
||||||
|
|
||||||
# Disable warnings about unsupported features, we know what we're doing
|
# Disable warnings about unsupported features
|
||||||
android.suppressUnsupportedOptionWarnings=android.disableEarlyManifestParsing,android.enablePartialRIncrementalBuilds,android.experimental.testOptions.uninstallIncompatibleApks,android.enableBuildConfigAsBytecode,android.experimental.enableNewResourceShrinker.preciseShrinking,android.suppressUnsupportedOptionWarnings
|
android.suppressUnsupportedOptionWarnings=android.dependencyResolutionAtConfigurationTime.disallow,android.disableEarlyManifestParsing,android.suppressUnsupportedOptionWarnings
|
||||||
|
|
||||||
# Add opens for KAPT
|
# Add opens for KAPT
|
||||||
# https://youtrack.jetbrains.com/issue/KT-45545#focus=Comments-27-4862682.0-0
|
# https://youtrack.jetbrains.com/issue/KT-45545#focus=Comments-27-4862682.0-0
|
||||||
org.gradle.jvmargs=-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 \
|
org.gradle.jvmargs=-Dfile.encoding=UTF-8 \
|
||||||
--add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
|
--add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
|
||||||
--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED \
|
--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED \
|
||||||
--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED \
|
--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED \
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[versions]
|
[versions]
|
||||||
accompanist = "0.31.4-beta"
|
accompanist = "0.31.4-beta"
|
||||||
agp = "8.0.2"
|
agp = "8.2.0-alpha10"
|
||||||
coil = "2.4.0"
|
coil = "2.4.0"
|
||||||
# @keep used for kotlinCompilerExtensionVersion
|
# @keep used for kotlinCompilerExtensionVersion
|
||||||
composeCompiler = "1.4.4"
|
composeCompiler = "1.4.4"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue