Minor maintenance things (#501)
* validate gradle wrapper jar file this is extremely important. see the following: https://blog.gradle.org/wrapper-attack-report https://github.com/gradle/wrapper-validation-action#the-gradle-wrapper-problem-in-open-source Signed-off-by: r3g_5z <june@girlboss.ceo> * update gradle wrapper to 8.1.1 it is necessary to run the gradlew update command twice to actually update the jar file properly, e.g.: ./gradlew wrapper --gradle-version=8.1.1 --gradle-distribution-sha256-sum=e111cb9948407e26351227dabce49822fb88c37ee72f1d1582a69c68af2e702f ./gradlew wrapper --gradle-version=8.1.1 --gradle-distribution-sha256-sum=e111cb9948407e26351227dabce49822fb88c37ee72f1d1582a69c68af2e702f Signed-off-by: r3g_5z <june@girlboss.ceo> * use Gradle toolchain this allows for better build reproducibility and avoid mix and matching JDKs from other projects https://docs.gradle.org/current/userguide/toolchains.html Signed-off-by: r3g_5z <june@girlboss.ceo> * update dependencies and fix build errors Signed-off-by: r3g_5z <june@girlboss.ceo> --------- Signed-off-by: r3g_5z <june@girlboss.ceo> Co-authored-by: sk22 <sk22@mailbox.org>
This commit is contained in:
@@ -2,6 +2,12 @@ plugins {
|
||||
id 'com.android.application'
|
||||
}
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(17)
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdk 33
|
||||
defaultConfig {
|
||||
@@ -54,10 +60,14 @@ android {
|
||||
abortOnError false
|
||||
checkReleaseBuilds false
|
||||
}
|
||||
|
||||
buildFeatures {
|
||||
buildConfig true
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api 'androidx.annotation:annotation:1.3.0'
|
||||
api 'androidx.annotation:annotation:1.6.0'
|
||||
implementation 'com.squareup.okhttp3:okhttp:3.14.9'
|
||||
implementation 'me.grishka.litex:recyclerview:1.2.1.1'
|
||||
implementation 'me.grishka.litex:swiperefreshlayout:1.1.0.1'
|
||||
@@ -66,7 +76,7 @@ dependencies {
|
||||
implementation 'me.grishka.litex:viewpager:1.0.0'
|
||||
implementation 'me.grishka.litex:viewpager2:1.0.0'
|
||||
implementation 'me.grishka.appkit:appkit:1.2.7'
|
||||
implementation 'com.google.code.gson:gson:2.8.9'
|
||||
implementation 'com.google.code.gson:gson:2.9.0'
|
||||
implementation 'org.jsoup:jsoup:1.14.3'
|
||||
implementation 'com.squareup:otto:1.3.8'
|
||||
implementation 'de.psdev:async-otto:1.0.3'
|
||||
|
||||
Reference in New Issue
Block a user