From c93dd99f89484a258b65abdf0b1a6d7494b66e31 Mon Sep 17 00:00:00 2001 From: arkon Date: Sat, 11 Feb 2023 15:49:17 -0500 Subject: [PATCH] Bump dependencies --- build.gradle | 5 +++-- gradle/wrapper/gradle-wrapper.properties | 2 +- library/build.gradle | 20 +++++++------------- 3 files changed, 11 insertions(+), 16 deletions(-) diff --git a/build.gradle b/build.gradle index ace4424..c3b9582 100644 --- a/build.gradle +++ b/build.gradle @@ -1,13 +1,13 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.6.10' + ext.kotlin_version = '1.7.10' repositories { mavenCentral() google() } dependencies { - classpath 'com.android.tools.build:gradle:7.1.0' + classpath 'com.android.tools.build:gradle:7.1.3' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong @@ -19,6 +19,7 @@ allprojects { repositories { mavenCentral() google() + maven { url "https://jitpack.io" } } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index ffed3a2..070cb70 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/library/build.gradle b/library/build.gradle index 0096b20..604ea22 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -5,13 +5,11 @@ plugins { } android { - compileSdkVersion 29 + compileSdkVersion 33 defaultConfig { minSdkVersion 21 - targetSdkVersion 29 - versionCode 1 - versionName '1.2' + targetSdkVersion 33 } buildTypes { @@ -22,15 +20,11 @@ android { } dependencies { - compileOnly "com.squareup.okhttp3:okhttp:4.9.1" - compileOnly "io.reactivex:rxjava:1.3.8" - compileOnly "org.jsoup:jsoup:1.14.3" - compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" -} - -repositories { - mavenCentral() - google() + implementation "com.squareup.okhttp3:okhttp:5.0.0-alpha.11" + implementation "io.reactivex:rxjava:1.3.8" + implementation "io.reactivex:rxandroid:1.2.1" + implementation "org.jsoup:jsoup:1.15.3" + implementation "com.github.inorichi.injekt:injekt-core:65b0440" } task androidSourcesJar(type: Jar) {