Skip to content

Commit ac53196

Browse files
authored
Merge pull request #7678 from TacoTheDank/gradleDeprecations
Fix some gradle deprecations
2 parents 8802582 + 23d14ab commit ac53196

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ plugins {
88
}
99

1010
android {
11-
compileSdkVersion 30
11+
compileSdk 30
1212
buildToolsVersion '30.0.3'
1313

1414
defaultConfig {
1515
applicationId "org.schabi.newpipe"
1616
resValue "string", "app_name", "NewPipe"
17-
minSdkVersion 19
18-
targetSdkVersion 29
17+
minSdk 19
18+
targetSdk 29
1919
versionCode 981
2020
versionName "0.21.15"
2121

@@ -65,7 +65,7 @@ android {
6565
}
6666
}
6767

68-
lintOptions {
68+
lint {
6969
checkReleaseBuilds false
7070
// Or, if you prefer, you can continue to check for errors in release builds,
7171
// but continue the build even when errors are found:
@@ -98,7 +98,7 @@ android {
9898
}
9999

100100
ext {
101-
checkstyleVersion = '9.2'
101+
checkstyleVersion = '9.2.1'
102102

103103
androidxLifecycleVersion = '2.3.1'
104104
androidxRoomVersion = '2.3.0'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-all.zip
4-
distributionSha256Sum=b75392c5625a88bccd58a574552a5a323edca82dab5942d2d41097f809c6bcce
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
4+
distributionSha256Sum=c9490e938b221daf0094982288e4038deed954a3f12fb54cbf270ddf4e37d879
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)