Skip to content

Update activity compose level and align log tag with main branch #215

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import androidx.compose.runtime.getValue
import androidx.compose.runtime.rememberUpdatedState
import androidx.compose.ui.platform.LocalContext

private const val PIP_TAG = "PiP info"
@Composable
fun PipListenerPreAPI12(shouldEnterPipMode: Boolean) {
// [START android_compose_pip_pre12_listener]
Expand All @@ -50,7 +51,7 @@ fun PipListenerPreAPI12(shouldEnterPipMode: Boolean) {
}
}
} else {
Log.i("PiP info", "API does not support PiP")
Log.i(PIP_TAG, "API does not support PiP")
}
// [END android_compose_pip_pre12_listener]
}
Expand Down Expand Up @@ -80,7 +81,7 @@ fun EnterPiPPre12(shouldEnterPipMode: Boolean) {
}
}
} else {
Log.i("PiP info", "API does not support PiP")
Log.i(PIP_TAG, "API does not support PiP")
}
// [END android_compose_pip_pre12_should_enter_pip]
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
accompanist = "0.32.0"
androidGradlePlugin = "8.2.2"
androidx-activity-compose = "1.9.0-alpha01"
androidx-activity-compose = "1.9.0-alpha03"
androidx-appcompat = "1.6.1"
androidx-compose-bom = "2024.01.00"
androidx-constraintlayout = "2.1.4"
Expand Down