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

Verified Commit c30e05ee authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

EN: Use own file provider class to ensure there is no duplicate use

parent f0337b5d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@
        </receiver>

        <provider
            android:name="androidx.core.content.FileProvider"
            android:name="org.microg.gms.nearby.exposurenotification.ExposureFileProvider"
            android:authorities="${applicationId}.microg.exposure.export"
            android:exported="false"
            android:grantUriPermissions="true">
+10 −0
Original line number Diff line number Diff line
/*
 * SPDX-FileCopyrightText: 2020, microG Project Team
 * SPDX-License-Identifier: Apache-2.0
 */

package org.microg.gms.nearby.exposurenotification

import androidx.core.content.FileProvider

class ExposureFileProvider : FileProvider()