Added latest features from Jetpack Telecom to the sample#407
Open
natarajkr007 wants to merge 12 commits intoandroid:mainfrom
Open
Added latest features from Jetpack Telecom to the sample#407natarajkr007 wants to merge 12 commits intoandroid:mainfrom
natarajkr007 wants to merge 12 commits intoandroid:mainfrom
Conversation
added 11 commits
January 28, 2026 22:58
- Update `androidx.core:core-telecom` from `1.0.0-alpha02` to `1.0.1` (latest stable). - Add `android.telecom.action.CALL_BACK` intent filter to the main activity to support integrated call logging.
…ge' into telecom-integrated-call-log-change
- Update: `androidx.core:core-telecom` to `1.1.0-alpha04`. - Add: a UI option to the Telecom sample to exclude calls from the system call log using the `isLogExcluded` property in `CallAttributesCompat`. - Implement handling for `TelecomManager.ACTION_CALL_BACK` in `TelecomCallActivity` to support re-initiating calls from the system UI. - Update Android Gradle Plugin to `8.13.2` and Gradle wrapper to `8.13` to compile against 36.1. - Refactor URI creation to use the `toUri()` extension function. - Update `compileSdk` configuration and add the Foojay toolchain resolver plugin.
- Add `onNewIntent` to `TelecomCallActivity` to handle call-back intents when the activity is already running.
- Remove obsolete TODO regarding `isLogExcluded` in `TelecomCallRepository`.
- Add `@SuppressLint("RequiresWindowSdk")` to `ExampleWindowInitializer.create` to suppress false positive lint warning.
Change-Id: I66df7227042f72d20cd328cac16a8a802385781b
…izer
- Update `launchCall` invocations to use named arguments for `excludeCallLogging` to improve readability.
- moved `@SuppressLint("RequiresWindowSdk")` annotation in `ExampleWindowInitializer` to a new PR.
Change-Id: I9e363e3c3b38ef6c840f23fe4b27df5c5d4a9d94
- Update - `gradle/wrapper-validation-action@v1` to `gradle/actions/wrapper-validation@v4` in the build workflow tp validate latest 8.13 Gradle version. Change-Id: Iaa9cdc6f8eb4f26486a31d0bf716910cbae0cc47
- Update: `androidx.core:core-telecom` to `1.1.0-alpha04`. - Add: a UI option to the Telecom sample to exclude calls from the system call log using the `isLogExcluded` property in `CallAttributesCompat`. - Implement handling for `TelecomManager.ACTION_CALL_BACK` in `TelecomCallActivity` to support re-initiating calls from the system UI. - Update Android Gradle Plugin to `8.13.2` and Gradle wrapper to `8.13` to compile against 36.1. - Refactor URI creation to use the `toUri()` extension function. - Update `compileSdk` configuration and add the Foojay toolchain resolver plugin.
- Add `onNewIntent` to `TelecomCallActivity` to handle call-back intents when the activity is already running.
- Remove obsolete TODO regarding `isLogExcluded` in `TelecomCallRepository`.
- Add `@SuppressLint("RequiresWindowSdk")` to `ExampleWindowInitializer.create` to suppress false positive lint warning.
Change-Id: I66df7227042f72d20cd328cac16a8a802385781b
…izer
- Update `launchCall` invocations to use named arguments for `excludeCallLogging` to improve readability.
- moved `@SuppressLint("RequiresWindowSdk")` annotation in `ExampleWindowInitializer` to a new PR.
Change-Id: I9e363e3c3b38ef6c840f23fe4b27df5c5d4a9d94
- Update - `gradle/wrapper-validation-action@v1` to `gradle/actions/wrapper-validation@v4` in the build workflow tp validate latest 8.13 Gradle version. Change-Id: Iaa9cdc6f8eb4f26486a31d0bf716910cbae0cc47
…ge' into telecom-integrated-call-log-change Change-Id: I196290e22bad21215d38740968bf341611bac7c8
Contributor
There was a problem hiding this comment.
Code Review
This pull request updates the project to Gradle 8.13 and AGP 8.13.2, and introduces a feature to the Telecom sample allowing calls to be excluded from the system call log via a new UI checkbox. It also adds support for handling callback intents in TelecomCallActivity. Feedback was provided regarding the handleCallBack implementation, which currently uses hardcoded values instead of extracting the destination URI from the incoming intent data.
.../telecom/src/main/java/com/example/platform/connectivity/telecom/call/TelecomCallActivity.kt
Show resolved
Hide resolved
Change-Id: Ic03d0b0b984075d026b16bcc86c6aee90e88b151
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates dependencies, adds new features, and refactors the Telecom sample to support integrated call logging, call log exclusion and call back handling.
Dependency and Build System Updates:
Feature: Integrated call log and call log exclusion
Telecom Sample Enhancements