Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d4401d30 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Merge branch '1739-q-talkback' into 'v1-q'

added talkback support

See merge request !156
parents 58033eea 97b78fbe
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -136,6 +136,10 @@ PRODUCT_PACKAGES += \
    SplitInstallService \
    WebCalendarManager

# TalkBack
PRODUCT_PACKAGES += \
    Talkback

# PicoTTS
$(call inherit-product, external/svox/svox_tts.mk)

+7 −0
Original line number Diff line number Diff line
@@ -44,6 +44,13 @@
        <permission name="android.permission.WRITE_EXTERNAL_STORAGE" fixed="false"/>
    </exception>

    <exception package="app.talkbackfoss">
        <!-- Microphone -->
        <permission name="android.permission.RECORD_AUDIO" fixed="false"/>
        <!-- Phone -->
        <permission name="android.permission.READ_PHONE_STATE" fixed="false"/>
    </exception>

    <exception package="com.generalmagic.magicearth">
        <!-- Camera -->
        <permission name="android.permission.CAMERA" fixed="false"/>
+6 −0
Original line number Diff line number Diff line
@@ -110,4 +110,10 @@
    even after user setup is complete. The defined component should be used for supervision purposes
    only. The component must be part of a system app. -->
    <string name="config_defaultSupervisionProfileOwnerComponent" translatable="false">com.google.android.gms/.kids.account.receiver.ProfileOwnerReceiver</string>

    <!-- The component name, flattened to a string, for the default accessibility service to be
         enabled by the accessibility shortcut. This service must be trusted, as it can be activated
         without explicit consent of the user. If no accessibility service with the specified name
         exists on the device, the accessibility shortcut will be disabled by default. -->
    <string name="config_defaultAccessibilityService" translatable="false">app.talkbackfoss/com.google.android.marvin.talkback.TalkBackService</string>
</resources>
+11 −0
Original line number Diff line number Diff line
@@ -38,4 +38,15 @@

    <!-- Manufacturer backup settings label -->
    <string name="config_backup_settings_label" translatable="true">@string/backup_transport_setting_label</string>

    <!-- List containing the component names of pre-installed screen reader services. -->
    <string-array name="config_preinstalled_screen_reader_services" translatable="false">
        <item>app.talkbackfoss/com.google.android.marvin.talkback.TalkBackService</item>
    </string-array>

    <!-- List containing the order of services in screen reader category by componentname.
         All componentnames in a category need to be specified to guarantee correct behavior.-->
    <string-array name="config_order_screen_reader_services" translatable="false">
        <item>app.talkbackfoss/com.google.android.marvin.talkback.TalkBackService</item>
    </string-array>
</resources>