Remove references to deleted backends

This commit is contained in:
Pete Fotheringham 2025-02-15 20:37:41 +00:00
parent 122b0a20a0
commit 1fd9552a8e
3 changed files with 1 additions and 6 deletions

View File

@ -46,8 +46,6 @@ The included APKs are:
* GmsCore: the main component of microG, a FOSS reimplementation of the Google Play Services (requires GsfProxy and FakeStore for full functionality) * GmsCore: the main component of microG, a FOSS reimplementation of the Google Play Services (requires GsfProxy and FakeStore for full functionality)
* GsfProxy: a GmsCore proxy for legacy GCM compatibility * GsfProxy: a GmsCore proxy for legacy GCM compatibility
* FakeStore: an empty package that mocks the existence of the Google Play Store * FakeStore: an empty package that mocks the existence of the Google Play Store
* IchnaeaNlpBackend: Network location provider using Mozilla Location Service
* NominatimGeocoderBackend: Geocoder backend that uses OSM Nominatim service.
These are official unmodified prebuilt binaries, signed by the These are official unmodified prebuilt binaries, signed by the
corresponding developers. corresponding developers.

View File

@ -2,8 +2,6 @@ PRODUCT_PACKAGES += \
GmsCore \ GmsCore \
GsfProxy \ GsfProxy \
FakeStore \ FakeStore \
IchnaeaNlpBackend \
NominatimGeocoderBackend \
FDroid \ FDroid \
FDroidPrivilegedExtension \ FDroidPrivilegedExtension \
additional_repos.xml additional_repos.xml

View File

@ -44,4 +44,3 @@ update_if_needed('FDroid', fdroid_recommended_release(fdroid_main_repo, 'org.fdr
update_if_needed('FDroidPrivilegedExtension', fdroid_recommended_release(fdroid_main_repo, 'org.fdroid.fdroid.privileged')) update_if_needed('FDroidPrivilegedExtension', fdroid_recommended_release(fdroid_main_repo, 'org.fdroid.fdroid.privileged'))
update_if_needed('GmsCore', fdroid_recommended_release(fdroid_microg_repo, 'com.google.android.gms')) update_if_needed('GmsCore', fdroid_recommended_release(fdroid_microg_repo, 'com.google.android.gms'))
update_if_needed('GsfProxy', fdroid_recommended_release(fdroid_microg_repo, 'com.google.android.gsf')) update_if_needed('GsfProxy', fdroid_recommended_release(fdroid_microg_repo, 'com.google.android.gsf'))
update_if_needed('NominatimGeocoderBackend', fdroid_recommended_release(fdroid_main_repo, 'org.microg.nlp.backend.nominatim'))