1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-10-18 17:07:38 +00:00

Merge pull request #10035 from Stypox/update-gradle

Upgrade Gradle and AGP from 7.x to 8.x and use Java 17
This commit is contained in:
Isira Seneviratne
2023-04-20 19:55:31 +05:30
committed by GitHub
8 changed files with 44 additions and 28 deletions

View File

@@ -80,13 +80,13 @@ android {
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
encoding 'utf-8'
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11
jvmTarget = JavaVersion.VERSION_17
}
sourceSets {
@@ -98,10 +98,11 @@ android {
}
packagingOptions {
// remove two files which belong to jsoup
// no idea how they ended up in the META-INF dir...
exclude 'META-INF/README.md'
exclude 'META-INF/CHANGES'
resources {
// remove two files which belong to jsoup
// no idea how they ended up in the META-INF dir...
excludes += ['META-INF/README.md', 'META-INF/CHANGES']
}
}
}