Skip to content

Commit

Permalink
Update agp to v8.2.0 (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
juul-mobile-bot authored Dec 4, 2023
1 parent d9fab62 commit 83f264d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.1.4" # 7.4.1 is the maximum version supported by IDEA 2023.1
agp = "8.2.0" # 7.4.1 is the maximum version supported by IDEA 2023.1
android-compile = "34"
android-min = "21"
android-target = "32"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.juul.krayon.sample

import android.annotation.SuppressLint
import android.os.Bundle
import androidx.activity.compose.setContent
import androidx.appcompat.app.AppCompatActivity
Expand All @@ -10,6 +11,7 @@ import com.juul.krayon.compose.ElementView

class ComposeLineActivity : AppCompatActivity() {

@SuppressLint("RememberReturnType") // Lint incorrect fails saying `remember` is returning `Unit`.
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.juul.krayon.sample

import android.annotation.SuppressLint
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import androidx.compose.foundation.layout.fillMaxSize
Expand All @@ -11,6 +12,7 @@ import com.juul.krayon.sample.databinding.ActivityInteractiveBinding

class InteractiveActivity : AppCompatActivity() {

@SuppressLint("RememberReturnType") // Lint incorrect fails saying `remember` is returning `Unit`.
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)

Expand Down

0 comments on commit 83f264d

Please sign in to comment.