mirror of
https://github.com/TeamVanced/VancedMicroG
synced 2024-11-19 02:29:25 +01:00
Write readme, remove useless services
This commit is contained in:
parent
838770a615
commit
a2a6c8d561
33
README.md
33
README.md
@ -1,24 +1,19 @@
|
|||||||
<img src="http://i.imgur.com/hXY4lcC.png" height="42px" alt="microG" /> Services Core (GmsCore)
|
# Vanced MicroG
|
||||||
=======
|
|
||||||
[![Build Status](https://travis-ci.org/microg/android_packages_apps_GmsCore.svg?branch=master)](https://travis-ci.org/microg/android_packages_apps_GmsCore)
|
[![Build Status](https://travis-ci.org/YTVanced/VancedMicroG.svg?branch=master)](https://travis-ci.com/github/YTVanced/VancedMicroG)
|
||||||
|
|
||||||
microG GmsCore is a FLOSS (Free/Libre Open Source Software) framework to allow applications designed for Google Play Services to run on systems, where Play Services is not available.
|
microG GmsCore is a FLOSS (Free/Libre Open Source Software) framework to allow applications designed for Google Play Services to run on systems, where Play Services is not available.
|
||||||
|
|
||||||
### Please refer to the [wiki](https://github.com/microg/android_packages_apps_GmsCore/wiki) for downloads and instructions
|
This fork tweaks MicroG to be usable by applications that require Google authentication such as Youtube Vanced.
|
||||||
|
|
||||||
|
## Notable changes
|
||||||
|
|
||||||
License
|
- No longer a system app
|
||||||
-------
|
- Package name changed from `com.google.android.gms` to `com.mgoogle.android.gms` to support installation alongside the official MicroG
|
||||||
Copyright 2013-2019 microG Project Team
|
- Removed unnecessary features:
|
||||||
|
- Maps & Location
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
- Wear-Api
|
||||||
you may not use this file except in compliance with the License.
|
- Safetynet
|
||||||
You may obtain a copy of the License at
|
- Games
|
||||||
|
- Car
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
- Removed all permissions, as none are required for Google authentication
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
|
@ -197,38 +197,6 @@
|
|||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<!-- Car -->
|
|
||||||
|
|
||||||
<service android:name="org.microg.gms.car.CarService">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.google.android.gms.car.service.START" />
|
|
||||||
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<!-- People -->
|
|
||||||
|
|
||||||
<service android:name="org.microg.gms.people.PeopleService">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.google.android.gms.people.service.START" />
|
|
||||||
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<service
|
|
||||||
android:name="org.microg.gms.people.ContactSyncService"
|
|
||||||
android:exported="false">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.content.SyncAdapter" />
|
|
||||||
</intent-filter>
|
|
||||||
<meta-data
|
|
||||||
android:name="android.content.SyncAdapter"
|
|
||||||
android:resource="@xml/contact_syncadapter" />
|
|
||||||
</service>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Auth -->
|
<!-- Auth -->
|
||||||
|
|
||||||
<service android:name="org.microg.gms.auth.loginservice.GoogleLoginService">
|
<service android:name="org.microg.gms.auth.loginservice.GoogleLoginService">
|
||||||
@ -295,24 +263,6 @@
|
|||||||
android:authorities="com.mgoogle.android.gms.auth.accounts"
|
android:authorities="com.mgoogle.android.gms.auth.accounts"
|
||||||
android:exported="true" />
|
android:exported="true" />
|
||||||
|
|
||||||
<!-- Games -->
|
|
||||||
|
|
||||||
<service android:name="org.microg.gms.games.GamesStubService">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.google.android.gms.games.service.START" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="org.microg.gms.games.UpgradeActivity"
|
|
||||||
android:theme="@style/Theme.AppCompat.DayNight.Dialog">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.google.android.gms.games.PLAY_GAMES_UPGRADE" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
</intent-filter>
|
|
||||||
</activity>
|
|
||||||
|
|
||||||
<!-- Cast -->
|
<!-- Cast -->
|
||||||
|
|
||||||
<service android:name="com.google.android.gms.cast.media.CastMediaRouteProviderService">
|
<service android:name="com.google.android.gms.cast.media.CastMediaRouteProviderService">
|
||||||
@ -321,12 +271,6 @@
|
|||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<!-- Chimera spoof -->
|
|
||||||
<provider
|
|
||||||
android:name="org.microg.gms.ChimeraSpoofProvider"
|
|
||||||
android:authorities="com.mgoogle.android.gms.chimera"
|
|
||||||
android:exported="true" />
|
|
||||||
|
|
||||||
<!-- microG custom UI -->
|
<!-- microG custom UI -->
|
||||||
|
|
||||||
<!-- microG Settings shown in Launcher -->
|
<!-- microG Settings shown in Launcher -->
|
||||||
@ -477,60 +421,18 @@
|
|||||||
android:name="com.google.android.gms.gcm.http.GoogleHttpService"
|
android:name="com.google.android.gms.gcm.http.GoogleHttpService"
|
||||||
android:exported="true" />
|
android:exported="true" />
|
||||||
|
|
||||||
<service android:name="org.microg.gms.ads.GService">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.google.android.gms.ads.gservice.START" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
<service android:name="org.microg.gms.feedback.FeedbackService">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.google.android.gms.feedback.internal.IFeedbackService" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
<service android:name="org.microg.gms.ads.AdvertisingIdService">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.google.android.gms.ads.identifier.service.START" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
<service android:name="org.microg.gms.clearcut.ClearcutLoggerService">
|
<service android:name="org.microg.gms.clearcut.ClearcutLoggerService">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="com.google.android.gms.clearcut.service.START" />
|
<action android:name="com.google.android.gms.clearcut.service.START" />
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
<service android:name="org.microg.gms.drive.api.DriveApiService">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.google.android.gms.drive.ApiService.START" />
|
|
||||||
<action android:name="com.google.android.gms.drive.ApiService.STOP" />
|
|
||||||
<action android:name="com.google.android.gms.drive.ApiService.RESET_AFTER_BOOT" />
|
|
||||||
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
<service android:name="org.microg.gms.auth.SignInService">
|
<service android:name="org.microg.gms.auth.SignInService">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="com.google.android.gms.signin.service.START" />
|
<action android:name="com.google.android.gms.signin.service.START" />
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
<service android:name="org.microg.gms.reminders.RemindersService">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.google.android.gms.reminders.service.START" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<service android:name="org.microg.gms.wallet.PaymentService">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.google.android.gms.wallet.service.BIND" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
<service android:name="org.microg.gms.tapandpay.TapAndPayService">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.google.android.gms.tapandpay.service.BIND" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<service android:name="org.microg.gms.cast.CastDeviceControllerService">
|
<service android:name="org.microg.gms.cast.CastDeviceControllerService">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
Loading…
Reference in New Issue
Block a user