├── Android.bp ├── Android.mk ├── AndroidProducts.mk ├── BoardConfig.mk ├── LICENSE ├── configs ├── audio │ ├── audio_effects.xml │ ├── audio_policy.conf │ ├── audio_policy_configuration.xml │ └── audio_policy_volumes.xml ├── bluetooth │ └── bdroid_buildcfg.h ├── keylayout │ ├── Vendor_0171_Product_0412.kl │ ├── Vendor_0171_Product_0414.kl │ ├── Vendor_0171_Product_0415.kl │ ├── Vendor_0171_Product_0418.kl │ ├── Vendor_0171_Product_041c.kl │ ├── Vendor_0171_Product_041e.kl │ ├── Vendor_0171_Product_041e_Apps_Apps.kl │ ├── Vendor_0171_Product_041e_Apps_Music.kl │ ├── Vendor_0171_Product_041e_CTV_Crave.kl │ ├── Vendor_0171_Product_041e_DAZN_Abema.kl │ ├── Vendor_0171_Product_041e_DAZN_Crave.kl │ ├── Vendor_0171_Product_041e_DAZN_Disney.kl │ ├── Vendor_0171_Product_041e_DAZN_Music.kl │ ├── Vendor_0171_Product_041e_DAZN_TVNow.kl │ ├── Vendor_0171_Product_041e_Disney_Apps.kl │ ├── Vendor_0171_Product_041e_Disney_Explore.kl │ ├── Vendor_0171_Product_041e_Disney_Music.kl │ ├── Vendor_0171_Product_041e_Disney_TVNow.kl │ ├── Vendor_0171_Product_041e_HBO_Apps.kl │ ├── Vendor_0171_Product_041e_HBO_Hulu.kl │ ├── Vendor_0171_Product_041e_IMDB_Hulu.kl │ ├── Vendor_0171_Product_041e_Music_Apps.kl │ ├── Vendor_0171_Product_041e_TV_Apps.kl │ ├── Vendor_0171_Product_041e_TV_Explore.kl │ ├── Vendor_0171_Product_041e_Zee5_Sony.kl │ └── Vendor_0171_Product_041f.kl ├── media │ ├── media_codecs.xml │ ├── media_codecs_mediatek_video.xml │ ├── media_codecs_performance.xml │ └── media_profiles_V1_0.xml ├── permissions │ ├── netflix.xml │ └── nrdp.modelgroup.xml ├── props │ ├── logging_props.mk │ ├── system.prop │ └── vendor.prop ├── seccomp │ └── mediacodec.policy ├── vintf │ ├── compatibility_matrix.xml │ └── manifest.xml └── wifi │ ├── p2p_supplicant_overlay.conf │ ├── wpa_supplicant.conf │ └── wpa_supplicant_overlay.conf ├── device.mk ├── extract-files.sh ├── go_opt.mk ├── keylayouts.mk ├── libshims ├── Android.bp ├── libshim_ladder.cpp └── libshim_nvram.cpp ├── lineage_sheldon.mk ├── overlay ├── frameworks │ └── base │ │ └── core │ │ └── res │ │ └── res │ │ └── values │ │ └── config.xml ├── lineage-sdk │ └── lineage │ │ └── res │ │ └── res │ │ └── values │ │ ├── arrays.xml │ │ └── config.xml └── packages │ └── apps │ ├── Bluetooth │ └── res │ │ └── values │ │ └── config.xml │ └── Settings │ └── res │ └── values │ └── config.xml ├── proprietary-files.txt ├── reorder-libs.py ├── rootdir ├── Android.mk └── etc │ ├── factory_init.project.rc │ ├── factory_init.rc │ ├── fstab.mt8695 │ ├── init.connectivity.rc │ ├── init.mt8695.rc │ ├── init.mt8695.usb.rc │ ├── init.nvdata.rc │ ├── init.project.rc │ ├── meta_init.rc │ ├── multi_init.rc │ └── ueventd.mtk.rc ├── rro_overlays ├── NetflixConfigOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── values │ │ └── strings.xml │ │ └── xml │ │ └── overlays.xml └── WifiOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ └── values │ └── config.xml ├── sepolicy └── vendor │ ├── amzn_dha_hmac.te │ ├── amzn_dha_tool.te │ ├── amzn_drmprov_check.te │ ├── amzn_drmprov_tool.te │ ├── amzn_xo_tool.te │ ├── device.te │ ├── file_contexts │ ├── hal_amzn_hdcp_default.te │ ├── hal_amzn_hdmitxinfo_default.te │ ├── hal_amzn_idme_default.te │ ├── hal_amzn_networkpower_default.te │ ├── hal_amzn_thermal_default.te │ ├── kisd.te │ ├── mt_securetime.te │ └── pr_device_cert_id.te └── setup-makefiles.sh /Android.bp: -------------------------------------------------------------------------------- 1 | soong_namespace { 2 | } 3 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/Android.mk -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/AndroidProducts.mk -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/BoardConfig.mk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/LICENSE -------------------------------------------------------------------------------- /configs/audio/audio_effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/audio/audio_effects.xml -------------------------------------------------------------------------------- /configs/audio/audio_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/audio/audio_policy.conf -------------------------------------------------------------------------------- /configs/audio/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/audio/audio_policy_configuration.xml -------------------------------------------------------------------------------- /configs/audio/audio_policy_volumes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/audio/audio_policy_volumes.xml -------------------------------------------------------------------------------- /configs/bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/bluetooth/bdroid_buildcfg.h -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_0412.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_0412.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_0414.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_0414.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_0415.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_0415.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_0418.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_0418.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041c.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041c.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_Apps_Apps.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_Apps_Apps.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_Apps_Music.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_Apps_Music.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_CTV_Crave.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_CTV_Crave.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_DAZN_Abema.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_DAZN_Abema.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_DAZN_Crave.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_DAZN_Crave.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_DAZN_Disney.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_DAZN_Disney.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_DAZN_Music.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_DAZN_Music.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_DAZN_TVNow.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_DAZN_TVNow.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_Disney_Apps.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_Disney_Apps.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_Disney_Explore.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_Disney_Explore.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_Disney_Music.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_Disney_Music.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_Disney_TVNow.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_Disney_TVNow.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_HBO_Apps.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_HBO_Apps.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_HBO_Hulu.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_HBO_Hulu.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_IMDB_Hulu.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_IMDB_Hulu.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_Music_Apps.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_Music_Apps.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_TV_Apps.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_TV_Apps.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_TV_Explore.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_TV_Explore.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041e_Zee5_Sony.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041e_Zee5_Sony.kl -------------------------------------------------------------------------------- /configs/keylayout/Vendor_0171_Product_041f.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/keylayout/Vendor_0171_Product_041f.kl -------------------------------------------------------------------------------- /configs/media/media_codecs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/media/media_codecs.xml -------------------------------------------------------------------------------- /configs/media/media_codecs_mediatek_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/media/media_codecs_mediatek_video.xml -------------------------------------------------------------------------------- /configs/media/media_codecs_performance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/media/media_codecs_performance.xml -------------------------------------------------------------------------------- /configs/media/media_profiles_V1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/media/media_profiles_V1_0.xml -------------------------------------------------------------------------------- /configs/permissions/netflix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/permissions/netflix.xml -------------------------------------------------------------------------------- /configs/permissions/nrdp.modelgroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/permissions/nrdp.modelgroup.xml -------------------------------------------------------------------------------- /configs/props/logging_props.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/props/logging_props.mk -------------------------------------------------------------------------------- /configs/props/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/props/system.prop -------------------------------------------------------------------------------- /configs/props/vendor.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/props/vendor.prop -------------------------------------------------------------------------------- /configs/seccomp/mediacodec.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/seccomp/mediacodec.policy -------------------------------------------------------------------------------- /configs/vintf/compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/vintf/compatibility_matrix.xml -------------------------------------------------------------------------------- /configs/vintf/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/vintf/manifest.xml -------------------------------------------------------------------------------- /configs/wifi/p2p_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/wifi/p2p_supplicant_overlay.conf -------------------------------------------------------------------------------- /configs/wifi/wpa_supplicant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/wifi/wpa_supplicant.conf -------------------------------------------------------------------------------- /configs/wifi/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/configs/wifi/wpa_supplicant_overlay.conf -------------------------------------------------------------------------------- /device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/device.mk -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/extract-files.sh -------------------------------------------------------------------------------- /go_opt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/go_opt.mk -------------------------------------------------------------------------------- /keylayouts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/keylayouts.mk -------------------------------------------------------------------------------- /libshims/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/libshims/Android.bp -------------------------------------------------------------------------------- /libshims/libshim_ladder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/libshims/libshim_ladder.cpp -------------------------------------------------------------------------------- /libshims/libshim_nvram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/libshims/libshim_nvram.cpp -------------------------------------------------------------------------------- /lineage_sheldon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/lineage_sheldon.mk -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/lineage-sdk/lineage/res/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/overlay/lineage-sdk/lineage/res/res/values/arrays.xml -------------------------------------------------------------------------------- /overlay/lineage-sdk/lineage/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/overlay/lineage-sdk/lineage/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Bluetooth/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/overlay/packages/apps/Bluetooth/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/overlay/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /reorder-libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/reorder-libs.py -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/Android.mk -------------------------------------------------------------------------------- /rootdir/etc/factory_init.project.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/etc/factory_init.project.rc -------------------------------------------------------------------------------- /rootdir/etc/factory_init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/etc/factory_init.rc -------------------------------------------------------------------------------- /rootdir/etc/fstab.mt8695: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/etc/fstab.mt8695 -------------------------------------------------------------------------------- /rootdir/etc/init.connectivity.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/etc/init.connectivity.rc -------------------------------------------------------------------------------- /rootdir/etc/init.mt8695.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/etc/init.mt8695.rc -------------------------------------------------------------------------------- /rootdir/etc/init.mt8695.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/etc/init.mt8695.usb.rc -------------------------------------------------------------------------------- /rootdir/etc/init.nvdata.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/etc/init.nvdata.rc -------------------------------------------------------------------------------- /rootdir/etc/init.project.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/etc/init.project.rc -------------------------------------------------------------------------------- /rootdir/etc/meta_init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/etc/meta_init.rc -------------------------------------------------------------------------------- /rootdir/etc/multi_init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/etc/multi_init.rc -------------------------------------------------------------------------------- /rootdir/etc/ueventd.mtk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rootdir/etc/ueventd.mtk.rc -------------------------------------------------------------------------------- /rro_overlays/NetflixConfigOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rro_overlays/NetflixConfigOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/NetflixConfigOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rro_overlays/NetflixConfigOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/NetflixConfigOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rro_overlays/NetflixConfigOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /rro_overlays/NetflixConfigOverlay/res/xml/overlays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rro_overlays/NetflixConfigOverlay/res/xml/overlays.xml -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rro_overlays/WifiOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rro_overlays/WifiOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/rro_overlays/WifiOverlay/res/values/config.xml -------------------------------------------------------------------------------- /sepolicy/vendor/amzn_dha_hmac.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/amzn_dha_hmac.te -------------------------------------------------------------------------------- /sepolicy/vendor/amzn_dha_tool.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/amzn_dha_tool.te -------------------------------------------------------------------------------- /sepolicy/vendor/amzn_drmprov_check.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/amzn_drmprov_check.te -------------------------------------------------------------------------------- /sepolicy/vendor/amzn_drmprov_tool.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/amzn_drmprov_tool.te -------------------------------------------------------------------------------- /sepolicy/vendor/amzn_xo_tool.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/amzn_xo_tool.te -------------------------------------------------------------------------------- /sepolicy/vendor/device.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/device.te -------------------------------------------------------------------------------- /sepolicy/vendor/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/file_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/hal_amzn_hdcp_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/hal_amzn_hdcp_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_amzn_hdmitxinfo_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/hal_amzn_hdmitxinfo_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_amzn_idme_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/hal_amzn_idme_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_amzn_networkpower_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/hal_amzn_networkpower_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_amzn_thermal_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/hal_amzn_thermal_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/kisd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/kisd.te -------------------------------------------------------------------------------- /sepolicy/vendor/mt_securetime.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/mt_securetime.te -------------------------------------------------------------------------------- /sepolicy/vendor/pr_device_cert_id.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/sepolicy/vendor/pr_device_cert_id.te -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt8695/android_device_amazon_sheldon/HEAD/setup-makefiles.sh --------------------------------------------------------------------------------