Compare commits

...

3 commits

Author SHA1 Message Date
ca08043931 Add kotlinx_coroutines to static_libraries for lpac_jni
Change-Id: I90048f865edb699f172b2a9ffdc0ccff33805a8f
2024-01-02 21:50:48 -05:00
ee5ca2d056 Fix string errors when compiling in AOSP
When you have multiple placeholders in a string you should use
positional arguments.

Change-Id: Ie1197735b44e1b702418caeaebac0191de18d1e9
2024-01-02 21:50:48 -05:00
f7edd83c63 fixup! Update Android.bp
error: packages/apps/OpenEUICC/Android.bp:30:9: expected "]", found String

Change-Id: I6a35b444617628da85235d047340a1205b4cc45c
2024-01-02 21:50:48 -05:00
3 changed files with 8 additions and 5 deletions

View file

@ -6,6 +6,9 @@ java_library {
optimize: { optimize: {
enabled: false, enabled: false,
}, },
static_libs: [
"kotlinx_coroutines",
],
system_ext_specific: true, system_ext_specific: true,
} }
@ -24,9 +27,9 @@ android_library {
"androidx-constraintlayout_constraintlayout", "androidx-constraintlayout_constraintlayout",
"androidx.core_core-ktx", "androidx.core_core-ktx",
"androidx.lifecycle_lifecycle-runtime-ktx", "androidx.lifecycle_lifecycle-runtime-ktx",
"androidx.preference_preference",
"androidx.swiperefreshlayout_swiperefreshlayout", "androidx.swiperefreshlayout_swiperefreshlayout",
"com.google.android.material_material", "com.google.android.material_material",
"androidx.preference_preference"
"kotlinx_coroutines", "kotlinx_coroutines",
], ],
srcs: [ srcs: [

View file

@ -40,7 +40,7 @@
<string name="profile_notification_operation_delete">Deleted</string> <string name="profile_notification_operation_delete">Deleted</string>
<string name="profile_notification_operation_enable">Enabled</string> <string name="profile_notification_operation_enable">Enabled</string>
<string name="profile_notification_operation_disable">Disabled</string> <string name="profile_notification_operation_disable">Disabled</string>
<string name="profile_notification_name_format">&lt;b&gt;%s&lt;/b&gt; %s (%s)</string> <string name="profile_notification_name_format">&lt;b&gt;%1$s&lt;/b&gt; %2$s (%3$s)</string>
<string name="profile_notification_process">Process</string> <string name="profile_notification_process">Process</string>
<string name="profile_notification_delete">Delete</string> <string name="profile_notification_delete">Delete</string>

View file

@ -10,9 +10,9 @@
<string name="slot_mapping">Slot Mapping</string> <string name="slot_mapping">Slot Mapping</string>
<string name="slot_mapping_logical_slot">Logical slot %d:</string> <string name="slot_mapping_logical_slot">Logical slot %d:</string>
<string name="slot_mapping_port">Slot %d Port %d</string> <string name="slot_mapping_port">Slot %1$d Port %2$d</string>
<string name="slot_mapping_help">Your phone has %d logical and %d physical SIM slots.%s\n\nSelect which physical slot and/or \"port\" you want each logical slot to correspond to. Note that not all mapping modes may be supported by hardware.</string> <string name="slot_mapping_help">Your phone has %1$d logical and %2$d physical SIM slots.%3$s\n\nSelect which physical slot and/or \"port\" you want each logical slot to correspond to. Note that not all mapping modes may be supported by hardware.</string>
<string name="slot_mapping_help_mep">\n\nPhysical slot %d supports Multiple Enabled Profiles (MEP). To use this feature, assign its %d virtual \"ports\" to different logical slots shown above.\n\nWith MEP enabled, the \"ports\" will behave like separate eSIM slots in OpenEUICC, except with a shared profile list.</string> <string name="slot_mapping_help_mep">\n\nPhysical slot %1$d supports Multiple Enabled Profiles (MEP). To use this feature, assign its %2$d virtual \"ports\" to different logical slots shown above.\n\nWith MEP enabled, the \"ports\" will behave like separate eSIM slots in OpenEUICC, except with a shared profile list.</string>
<string name="slot_mapping_help_dsds">\nDual SIM mode is supported but disabled. If your device comes with an internal eSIM chip, it might not be enabled by default. Change mapping above or enable dual SIM to access your eSIM.</string> <string name="slot_mapping_help_dsds">\nDual SIM mode is supported but disabled. If your device comes with an internal eSIM chip, it might not be enabled by default. Change mapping above or enable dual SIM to access your eSIM.</string>
<string name="slot_mapping_completed">Your new slot mapping has been set. Please wait until modem refreshes the slots.</string> <string name="slot_mapping_completed">Your new slot mapping has been set. Please wait until modem refreshes the slots.</string>
<string name="slot_mapping_failure">The specified mapping might be invalid or unsupported by hardware.</string> <string name="slot_mapping_failure">The specified mapping might be invalid or unsupported by hardware.</string>