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

Commit cd24523c authored by Frank Preel's avatar Frank Preel
Browse files

Merge remote-tracking branch 'origin/3015-whiteliste_findmydevice' into 0000-a14-find-my-device

parents dab20050 612a3632
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -36,7 +36,8 @@ class FakeLocationForAppUseCase(
    private val nullFakeLocationPkgs = listOf(
        AppListRepository.PNAME_MICROG_SERVICES_CORE,
        AppListRepository.PNAME_FUSED_LOCATION,
        AppListRepository.PNAME_ANDROID_SYSTEM
        AppListRepository.PNAME_ANDROID_SYSTEM,
        AppListRepository.PNAME_FIND_MY_DEVICE
    )

    init {
+1 −1
Original line number Diff line number Diff line
@@ -179,7 +179,7 @@
    <string name="warningdialog_trackers_message" weblate_ctx="home-trackers-alert;widget-trackers-alert">While this option is active, in some rare cases, some apps may not work properly. If you meet any problems, you can disable trackers control for specific apps and websites at anytime.</string>
    <string name="warningdialog_trackers_secondary_cta" weblate_ctx="home-trackers-alert;widget-trackers-alert">Manage app trackers</string>
    <string name="warningdialog_location_title" weblate_ctx="home-location-alert;widget-location-alert">Fake my location</string>
    <string name="warningdialog_location_message" weblate_ctx="home-location-alert;widget-location-alert">While this option is active, some apps that rely on your real location may not work properly. It\'s recommended to enable it only occasionally, only when needed.</string>
    <string name="warningdialog_location_message" weblate_ctx="home-location-alert;widget-location-alert">While this option is active, some apps that rely on your real location may not work properly. It\'s recommended to enable it only occasionally, only when needed. \nFind my device is authorized to access your real location in order to work as expected.</string>
    <string name="warningdialog_ipscrambling_title" weblate_ctx="home-ipscrambling-alert;widget-ipscrambling-alert">Hide my IP</string>
    <string name="warningdialog_ipscrambling_message" weblate_ctx="home-ipscrambling-alert;widget-ipscrambling-alert">This option uses the TOR network to hide your real IP address. Only use it for specific applications. While your IP is faked, your Internet speed is likely to be reduced.\n<b>Important:</b> we advise disabling this feature for email services as your address may end into permanent ban from your provider.</string>
    <string name="warningdialog_ipscrambling_cta" weblate_ctx="home-ipscrambling-alert;widget-ipscrambling-alert">I understand</string>
+1 −0
Original line number Diff line number Diff line
@@ -53,6 +53,7 @@ class AppListRepository(
        const val PNAME_MICROG_SERVICES_CORE = "com.google.android.gms"
        const val PNAME_FUSED_LOCATION = "com.android.location.fused"
        const val PNAME_ANDROID_SYSTEM = "android"
        const val PNAME_FIND_MY_DEVICE = "foundation.e.findmydevice"

        private val compatibilityInternetPNames = setOf(
            PNAME_PWAPLAYER,