Add backup transport overlay

This commit is contained in:
Alessandro Astone 2021-12-16 16:43:49 +01:00
parent 401e4af0e0
commit de00d21a12
4 changed files with 14 additions and 1 deletions

View File

@ -31,4 +31,4 @@ PRODUCT_PACKAGES += \
endif
PRODUCT_SOONG_NAMESPACES += vendor/gapps/overlay
PRODUCT_PACKAGES += GmsOverlay
PRODUCT_PACKAGES += GmsOverlay GmsSettingsProviderOverlay

View File

@ -0,0 +1,4 @@
runtime_resource_overlay {
name: "GmsSettingsProviderOverlay",
product_specific: true
}

View File

@ -0,0 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mtg.gmssettingsprovideroverlay"
android:versionCode="1"
android:versionName="1.0">
<overlay android:targetPackage="com.android.providers.settings" android:priority="1337" android:isStatic="true" />
</manifest>

View File

@ -0,0 +1,3 @@
<resources>
<string name="def_backup_transport">com.google.android.gms/.backup.BackupTransportService</string>
</resources>