Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_frameworks_base-old
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Farzin Kazemzadeh
platform_frameworks_base-old
Commits
4260bc4f
Commit
4260bc4f
authored
4 years ago
by
Shuo Qian
Committed by
Gerrit Code Review
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Add Call Composer Carrier Config keys"
parents
a4524a93
c0ddad54
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/api/current.txt
+2
-0
2 additions, 0 deletions
core/api/current.txt
telephony/java/android/telephony/CarrierConfigManager.java
+13
-0
13 additions, 0 deletions
telephony/java/android/telephony/CarrierConfigManager.java
with
15 additions
and
0 deletions
core/api/current.txt
+
2
−
0
View file @
4260bc4f
...
...
@@ -39364,6 +39364,7 @@ package android.telephony {
field public static final String KEY_CALL_BARRING_SUPPORTS_DEACTIVATE_ALL_BOOL = "call_barring_supports_deactivate_all_bool";
field public static final String KEY_CALL_BARRING_SUPPORTS_PASSWORD_CHANGE_BOOL = "call_barring_supports_password_change_bool";
field public static final String KEY_CALL_BARRING_VISIBILITY_BOOL = "call_barring_visibility_bool";
field public static final String KEY_CALL_COMPOSER_PICTURE_SERVER_URL_STRING = "call_composer_picture_server_url_string";
field public static final String KEY_CALL_FORWARDING_BLOCKS_WHILE_ROAMING_STRING_ARRAY = "call_forwarding_blocks_while_roaming_string_array";
field public static final String KEY_CALL_REDIRECTION_SERVICE_COMPONENT_NAME_STRING = "call_redirection_service_component_name_string";
field public static final String KEY_CARRIER_ALLOW_DEFLECT_IMS_CALL_BOOL = "carrier_allow_deflect_ims_call_bool";
...
...
@@ -39553,6 +39554,7 @@ package android.telephony {
field public static final String KEY_SIMPLIFIED_NETWORK_SETTINGS_BOOL = "simplified_network_settings_bool";
field public static final String KEY_SIM_NETWORK_UNLOCK_ALLOW_DISMISS_BOOL = "sim_network_unlock_allow_dismiss_bool";
field public static final String KEY_SMS_REQUIRES_DESTINATION_NUMBER_CONVERSION_BOOL = "sms_requires_destination_number_conversion_bool";
field public static final String KEY_SUPPORTS_CALL_COMPOSER_BOOL = "supports_call_composer_bool";
field public static final String KEY_SUPPORT_3GPP_CALL_FORWARDING_WHILE_ROAMING_BOOL = "support_3gpp_call_forwarding_while_roaming_bool";
field public static final String KEY_SUPPORT_ADD_CONFERENCE_PARTICIPANTS_BOOL = "support_add_conference_participants_bool";
field public static final String KEY_SUPPORT_ADHOC_CONFERENCE_CALLS_BOOL = "support_adhoc_conference_calls_bool";
This diff is collapsed.
Click to expand it.
telephony/java/android/telephony/CarrierConfigManager.java
+
13
−
0
View file @
4260bc4f
...
...
@@ -4055,6 +4055,17 @@ public class CarrierConfigManager {
public
static
final
String
KEY_DEFAULT_PREFERRED_APN_NAME_STRING
=
"default_preferred_apn_name_string"
;
/**
* Indicates if the carrier supports call composer.
*/
public
static
final
String
KEY_SUPPORTS_CALL_COMPOSER_BOOL
=
"supports_call_composer_bool"
;
/**
* Indicates the carrier server url that serves the call composer picture.
*/
public
static
final
String
KEY_CALL_COMPOSER_PICTURE_SERVER_URL_STRING
=
"call_composer_picture_server_url_string"
;
/**
* For Android 11, provide a temporary solution for OEMs to use the lower of the two MTU values
* for IPv4 and IPv6 if both are sent.
...
...
@@ -4613,6 +4624,8 @@ public class CarrierConfigManager {
sDefaults
.
putStringArray
(
KEY_MISSED_INCOMING_CALL_SMS_PATTERN_STRING_ARRAY
,
new
String
[
0
]);
sDefaults
.
putBoolean
(
KEY_DISABLE_DUN_APN_WHILE_ROAMING_WITH_PRESET_APN_BOOL
,
false
);
sDefaults
.
putString
(
KEY_DEFAULT_PREFERRED_APN_NAME_STRING
,
""
);
sDefaults
.
putBoolean
(
KEY_SUPPORTS_CALL_COMPOSER_BOOL
,
false
);
sDefaults
.
putString
(
KEY_CALL_COMPOSER_PICTURE_SERVER_URL_STRING
,
""
);
sDefaults
.
putBoolean
(
KEY_USE_LOWER_MTU_VALUE_IF_BOTH_RECEIVED
,
false
);
sDefaults
.
putBoolean
(
KEY_USE_ACS_FOR_RCS_BOOL
,
false
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment