Which application is responsible for OTA update in Android?

In the preference from the standard Settings application, the "System Update" item looks like this:

<PreferenceScreen android:key="system_update_settings" android:title="@string/system_update_settings_list_item_title" android:summary="@string/system_update_settings_list_item_summary"> <intent android:action="android.settings.SYSTEM_UPDATE_SETTINGS" /> </PreferenceScreen> 

screenshot

    1 answer 1

    Is on the way

     system/app/OTA-Updater.apk 

    UPD

    To be completely sure, open this application again, go to LogCat and put a filter on the ActivityManager tag in the logs you will find the application package and its activity. By package you can find apk in the system

    • there is no such thing in AOSP - kanefron5
    • Updated the answer. - Flippy