Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Upgrade to AGP 8.0.0 (#9351)

Cette révision appartient à :
arkon 2023-04-16 18:02:24 -04:00 révisé par GitHub
Parent 5c1a81d8ca
révision 97e6f1ea9a
Aucune clé n'a été trouvée pour cette signature dans la base de données
ID de la clé GPG: 4AEE18F83AFDEB23
7 fichiers modifiés avec 15 ajouts et 12 suppressions

Voir le fichier

@ -27,10 +27,10 @@ jobs:
- name: Dependency Review
uses: actions/dependency-review-action@v3
- name: Set up JDK 11
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: adopt
- name: Build app and run unit tests

Voir le fichier

@ -22,10 +22,10 @@ jobs:
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 11
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: adopt
- name: Build app and run unit tests

Voir le fichier

@ -101,7 +101,7 @@ android {
}
}
packagingOptions {
packaging {
resources.excludes.addAll(listOf(
"META-INF/DEPENDENCIES",
"LICENSE.txt",

Voir le fichier

@ -1,4 +1,5 @@
-dontusemixedcaseclassnames
-ignorewarnings
-verbose
-keepattributes *Annotation*

Voir le fichier

@ -19,7 +19,7 @@ plugins {
subprojects {
tasks.withType<KotlinJvmCompile> {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
jvmTarget = JavaVersion.VERSION_17.toString()
}
}
@ -43,8 +43,8 @@ subprojects {
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
isCoreLibraryDesugaringEnabled = true
}

Voir le fichier

@ -20,7 +20,9 @@ org.gradle.parallel=true
org.gradle.caching=true
# AndroidX support
android.useAndroidX=true
kotlin.mpp.androidSourceSetLayoutVersion=2
android.useAndroidX=true
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false

Voir le fichier

@ -1,5 +1,5 @@
[versions]
agp_version = "7.4.2"
agp_version = "8.0.0"
lifecycle_version = "2.6.1"
[libraries]