Browse Source

Merge pull request #2137 from nextcloud/dependabot/gradle/org.jetbrains.kotlin-kotlin-gradle-plugin-1.7.0

Bump kotlin-gradle-plugin from 1.6.21 to 1.7.0
Andy Scherzinger 2 years ago
parent
commit
24fe07f561

+ 3 - 0
app/src/main/java/com/nextcloud/talk/controllers/ProfileController.kt

@@ -769,6 +769,9 @@ class ProfileController : NewBaseController(R.layout.controller_profile) {
                     Scope.LOCAL -> holder.binding.scope.setImageResource(R.drawable.ic_password)
                     Scope.FEDERATED -> holder.binding.scope.setImageResource(R.drawable.ic_contacts)
                     Scope.PUBLISHED -> holder.binding.scope.setImageResource(R.drawable.ic_link)
+                    null -> {
+                        // nothing
+                    }
                 }
                 holder.binding.scope.contentDescription = controller.activity!!.resources.getString(
                     R.string.scope_toggle_description,

+ 1 - 1
build.gradle

@@ -24,7 +24,7 @@
 buildscript {
 
     ext {
-        kotlinVersion = '1.6.21'
+        kotlinVersion = '1.7.0'
     }
 
     repositories {