parent
187cf9dafa
commit
4f020a8d22
3 changed files with 8 additions and 1 deletions
4
.github/workflows/shadow_job.yml
vendored
4
.github/workflows/shadow_job.yml
vendored
|
@ -41,6 +41,10 @@ jobs:
|
||||||
- name: Copy CI gradle.properties
|
- name: Copy CI gradle.properties
|
||||||
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
||||||
|
|
||||||
|
- name: Workaround AGP 8.x deprecations
|
||||||
|
if: startsWith(matrix.agp-version, '8.0.0')
|
||||||
|
run: sed -i 's/android.disableAutomaticComponentCreation=true//' gradle.properties
|
||||||
|
|
||||||
- name: Run checks
|
- name: Run checks
|
||||||
uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # v2.3.3
|
uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # v2.3.3
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -49,6 +49,9 @@ android.enableResourceOptimizations=true
|
||||||
# Compatibility with Gradle 8.0
|
# Compatibility with Gradle 8.0
|
||||||
android.experimental.legacyTransform.forceNonIncremental=true
|
android.experimental.legacyTransform.forceNonIncremental=true
|
||||||
|
|
||||||
|
# Opt into new publishing APIs
|
||||||
|
android.disableAutomaticComponentCreation=true
|
||||||
|
|
||||||
# Default Android build features
|
# Default Android build features
|
||||||
android.defaults.buildfeatures.buildconfig=false
|
android.defaults.buildfeatures.buildconfig=false
|
||||||
android.defaults.buildfeatures.aidl=false
|
android.defaults.buildfeatures.aidl=false
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[versions]
|
[versions]
|
||||||
agp = "8.0.0-alpha11"
|
agp = "7.4.0"
|
||||||
androidxActivity = "1.7.0-alpha03"
|
androidxActivity = "1.7.0-alpha03"
|
||||||
bouncycastle = "1.72"
|
bouncycastle = "1.72"
|
||||||
# @keep used for kotlinCompilerExtensionVersion
|
# @keep used for kotlinCompilerExtensionVersion
|
||||||
|
|
Loading…
Reference in a new issue