Skip to content
Snippets Groups Projects
Verified Commit b2a63683 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Updated Libraries

parent bb7bd729
No related branches found
No related tags found
No related merge requests found
Pipeline #253 passed
...@@ -109,7 +109,7 @@ android { ...@@ -109,7 +109,7 @@ android {
} }
dependencies { dependencies {
implementation(kotlin("stdlib", "1.2.60")) implementation(kotlin("stdlib", "1.3.10"))
// App Compat // App Compat
implementation("com.google.android.material", "material", "1.0.0-rc01") implementation("com.google.android.material", "material", "1.0.0-rc01")
...@@ -137,12 +137,12 @@ dependencies { ...@@ -137,12 +137,12 @@ dependencies {
// Utility // Utility
implementation("io.reactivex.rxjava2", "rxandroid", "2.0.2") implementation("io.reactivex.rxjava2", "rxandroid", "2.0.2")
implementation("io.reactivex.rxjava2", "rxjava", "2.1.9") implementation("io.reactivex.rxjava2", "rxjava", "2.1.9")
implementation("org.threeten", "threetenbp", "1.3.6", classifier = "no-tzdb") implementation("org.threeten", "threetenbp", "1.3.8", classifier = "no-tzdb")
implementation("org.jetbrains", "annotations", "16.0.1") implementation("org.jetbrains", "annotations", "16.0.3")
implementation("com.google.code.gson", "gson", "2.8.2") implementation("com.google.code.gson", "gson", "2.8.5")
implementation("commons-codec", "commons-codec", "1.11") implementation("commons-codec", "commons-codec", "1.11")
implementation("com.squareup.retrofit2", "retrofit", "2.4.0") implementation("com.squareup.retrofit2", "retrofit", "2.5.0")
implementation("com.squareup.retrofit2", "converter-gson", "2.4.0") implementation("com.squareup.retrofit2", "converter-gson", "2.5.0")
withVersion("9.0.0-rc1") { withVersion("9.0.0-rc1") {
implementation("com.jakewharton", "butterknife", version) implementation("com.jakewharton", "butterknife", version)
kapt("com.jakewharton", "butterknife-compiler", version) kapt("com.jakewharton", "butterknife-compiler", version)
...@@ -156,7 +156,7 @@ dependencies { ...@@ -156,7 +156,7 @@ dependencies {
} }
// UI // UI
implementation("me.zhanghai.android.materialprogressbar", "library", "1.4.2") implementation("me.zhanghai.android.materialprogressbar", "library", "1.6.0")
withVersion("0.9.6.0") { withVersion("0.9.6.0") {
implementation("com.afollestad.material-dialogs", "core", version) implementation("com.afollestad.material-dialogs", "core", version)
implementation("com.afollestad.material-dialogs", "commons", version) implementation("com.afollestad.material-dialogs", "commons", version)
...@@ -169,7 +169,7 @@ dependencies { ...@@ -169,7 +169,7 @@ dependencies {
// Quality Assurance // Quality Assurance
implementation(project(":malheur")) implementation(project(":malheur"))
withVersion("1.5.4") { withVersion("1.6.2") {
debugImplementation("com.squareup.leakcanary", "leakcanary-android", version) debugImplementation("com.squareup.leakcanary", "leakcanary-android", version)
releaseImplementation("com.squareup.leakcanary", "leakcanary-android-no-op", version) releaseImplementation("com.squareup.leakcanary", "leakcanary-android-no-op", version)
testImplementation("com.squareup.leakcanary", "leakcanary-android-no-op", version) testImplementation("com.squareup.leakcanary", "leakcanary-android-no-op", version)
......
...@@ -43,10 +43,7 @@ ...@@ -43,10 +43,7 @@
# Dagger # Dagger
-dontwarn com.google.errorprone.annotations.* -dontwarn com.google.errorprone.annotations.*
# Retrofit # Retrofit
# Platform calls Class.forName on types which do not exist on Android to determine platform. -dontwarn retrofit2.**
-dontnote retrofit2.Platform
# Platform used when running on Java 8 VMs. Will not be used at runtime.
-dontwarn retrofit2.Platform$Java8
# Annotation used by Retrofit on Java 8 VMs # Annotation used by Retrofit on Java 8 VMs
-dontwarn javax.annotation.Nullable -dontwarn javax.annotation.Nullable
-dontwarn javax.annotation.ParametersAreNonnullByDefault -dontwarn javax.annotation.ParametersAreNonnullByDefault
...@@ -58,3 +55,5 @@ ...@@ -58,3 +55,5 @@
# Okio # Okio
-dontwarn okio.** -dontwarn okio.**
-dontwarn org.conscrypt.** -dontwarn org.conscrypt.**
# OkHttp3
-dontwarn okhttp3.**
...@@ -161,7 +161,7 @@ ...@@ -161,7 +161,7 @@
}, },
{ {
"name": "Kotlin Standard Library", "name": "Kotlin Standard Library",
"version": "1.2.60", "version": "1.3.10",
"license": { "license": {
"short_name": "Apache-2.0", "short_name": "Apache-2.0",
"full_name": "Apache License" "full_name": "Apache License"
......
...@@ -196,7 +196,7 @@ class AboutFragment : DaggerFragment() { ...@@ -196,7 +196,7 @@ class AboutFragment : DaggerFragment() {
), ),
Library( Library(
name = "Kotlin Standard Library", name = "Kotlin Standard Library",
version = "1.2.60", version = "1.3.10",
license = apache2, license = apache2,
url = "https://kotlinlang.org/" url = "https://kotlinlang.org/"
), ),
......
...@@ -24,7 +24,7 @@ buildscript { ...@@ -24,7 +24,7 @@ buildscript {
} }
dependencies { dependencies {
classpath("com.android.tools.build:gradle:3.2.1") classpath("com.android.tools.build:gradle:3.2.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.60") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.10")
} }
} }
......
...@@ -28,5 +28,5 @@ plugins { ...@@ -28,5 +28,5 @@ plugins {
dependencies { dependencies {
implementation(project(":invokerannotations")) implementation(project(":invokerannotations"))
implementation("com.google.auto.service:auto-service:1.0-rc4") implementation("com.google.auto.service:auto-service:1.0-rc4")
implementation("com.squareup:javapoet:1.10.0") implementation("com.squareup:javapoet:1.11.1")
} }
...@@ -109,7 +109,7 @@ public class InvokerProcessor extends AbstractProcessor { ...@@ -109,7 +109,7 @@ public class InvokerProcessor extends AbstractProcessor {
ClassName type = ClassName.get(packageName, invokerName); ClassName type = ClassName.get(packageName, invokerName);
ClassName wrongObjectTypeException = ClassName.get("de.kuschku.libquassel.quassel.exceptions", "WrongObjectTypeException"); ClassName wrongObjectTypeException = ClassName.get("de.kuschku.libquassel.quassel.exceptions", "WrongObjectTypeException");
ClassName unknownMethodException = ClassName.get("de.kuschku.libquassel.quassel.exceptions", "UnknownMethodException"); ClassName unknownMethodException = ClassName.get("de.kuschku.libquassel.quassel.exceptions", "UnknownMethodException");
ClassName nonNullAnnotation = ClassName.get("android.support.annotation", "NonNull"); ClassName nonNullAnnotation = ClassName.get("androidx.annotation", "NonNull");
MethodSpec methodSpecConstructor = MethodSpec MethodSpec methodSpecConstructor = MethodSpec
.constructorBuilder() .constructorBuilder()
......
...@@ -29,13 +29,11 @@ plugins { ...@@ -29,13 +29,11 @@ plugins {
} }
dependencies { dependencies {
implementation(kotlin("stdlib", "1.2.60")) implementation(kotlin("stdlib", "1.3.10"))
withVersion("27.1.1") { implementation("androidx.annotation", "annotation", "1.0.0")
implementation("com.android.support", "support-annotations", version)
}
implementation("org.threeten", "threetenbp", "1.3.6") implementation("org.threeten", "threetenbp", "1.3.8")
implementation("io.reactivex.rxjava2", "rxjava", "2.1.9") implementation("io.reactivex.rxjava2", "rxjava", "2.1.9")
implementation(project(":invokerannotations")) implementation(project(":invokerannotations"))
......
...@@ -401,7 +401,7 @@ class IrcChannel( ...@@ -401,7 +401,7 @@ class IrcChannel(
private val live_userModes = BehaviorSubject.createDefault(mutableMapOf<IrcUser, String>()) private val live_userModes = BehaviorSubject.createDefault(mutableMapOf<IrcUser, String>())
private var _userModes: MutableMap<IrcUser, String> private var _userModes: MutableMap<IrcUser, String>
get() = live_userModes.value get() = live_userModes.value!!
set(value) { set(value) {
updateUsers() updateUsers()
} }
......
...@@ -27,7 +27,7 @@ plugins { ...@@ -27,7 +27,7 @@ plugins {
} }
dependencies { dependencies {
implementation(kotlin("stdlib", "1.2.60")) implementation(kotlin("stdlib", "1.3.10"))
implementation("androidx.annotation", "annotation", "1.0.0") implementation("androidx.annotation", "annotation", "1.0.0")
......
...@@ -44,7 +44,7 @@ android { ...@@ -44,7 +44,7 @@ android {
} }
dependencies { dependencies {
implementation(kotlin("stdlib", "1.2.60")) implementation(kotlin("stdlib", "1.3.10"))
implementation("com.google.code.gson", "gson", "2.8.2") implementation("com.google.code.gson", "gson", "2.8.5")
} }
...@@ -51,7 +51,7 @@ android { ...@@ -51,7 +51,7 @@ android {
} }
dependencies { dependencies {
implementation(kotlin("stdlib", "1.2.60")) implementation(kotlin("stdlib", "1.3.10"))
implementation("androidx.appcompat", "appcompat", "1.0.0") implementation("androidx.appcompat", "appcompat", "1.0.0")
...@@ -63,8 +63,8 @@ dependencies { ...@@ -63,8 +63,8 @@ dependencies {
implementation("androidx.paging", "paging-runtime", "2.0.0-rc01") implementation("androidx.paging", "paging-runtime", "2.0.0-rc01")
// Utility // Utility
implementation("org.threeten", "threetenbp", "1.3.6", classifier = "no-tzdb") implementation("org.threeten", "threetenbp", "1.3.8", classifier = "no-tzdb")
implementation("org.jetbrains", "annotations", "16.0.1") implementation("org.jetbrains", "annotations", "16.0.3")
// Quassel // Quassel
implementation(project(":lib")) { implementation(project(":lib")) {
......
...@@ -44,7 +44,7 @@ android { ...@@ -44,7 +44,7 @@ android {
} }
dependencies { dependencies {
implementation(kotlin("stdlib", "1.2.60")) implementation(kotlin("stdlib", "1.3.10"))
implementation("androidx.appcompat", "appcompat", "1.0.0") implementation("androidx.appcompat", "appcompat", "1.0.0")
...@@ -54,8 +54,8 @@ dependencies { ...@@ -54,8 +54,8 @@ dependencies {
// Utility // Utility
implementation("io.reactivex.rxjava2", "rxandroid", "2.0.2") implementation("io.reactivex.rxjava2", "rxandroid", "2.0.2")
implementation("io.reactivex.rxjava2", "rxjava", "2.1.9") implementation("io.reactivex.rxjava2", "rxjava", "2.1.9")
implementation("org.threeten", "threetenbp", "1.3.6", classifier = "no-tzdb") implementation("org.threeten", "threetenbp", "1.3.8", classifier = "no-tzdb")
implementation("org.jetbrains", "annotations", "16.0.1") implementation("org.jetbrains", "annotations", "16.0.3")
// Quassel // Quassel
implementation(project(":persistence")) implementation(project(":persistence"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment