2015-02-01 22:27:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
|
~ Copyright 2013-2015 µg Project Team
|
2014-05-01 13:17:14 +00:00
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
2015-02-01 22:27:46 +00:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2014-05-01 13:17:14 +00:00
|
|
|
~
|
|
|
|
~ 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.
|
|
|
|
-->
|
|
|
|
|
2014-04-23 19:27:33 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-01-15 19:12:25 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-01-03 14:27:50 +00:00
|
|
|
package="com.google.android.gms"
|
2015-01-03 15:32:51 +00:00
|
|
|
android:versionName="1.0"
|
2015-01-11 11:56:18 +00:00
|
|
|
android:versionCode="6599436">
|
2014-04-23 19:27:33 +00:00
|
|
|
|
2015-02-01 22:27:46 +00:00
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="16"
|
|
|
|
android:targetSdkVersion="21" />
|
|
|
|
|
2015-03-06 19:08:47 +00:00
|
|
|
<permission android:name="com.google.android.c2dm.permission.RECEIVE" />
|
|
|
|
<permission
|
|
|
|
android:name="com.google.android.c2dm.permission.SEND"
|
|
|
|
android:protectionLevel="dangerous" />
|
|
|
|
|
2015-02-10 02:33:30 +00:00
|
|
|
<permission-tree android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" />
|
2015-02-10 14:31:13 +00:00
|
|
|
|
2015-02-10 02:33:30 +00:00
|
|
|
<permission
|
|
|
|
android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.local"
|
|
|
|
android:label="@string/permission_service_local_label"
|
|
|
|
android:description="@string/permission_service_local_description" />
|
|
|
|
<permission
|
|
|
|
android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail"
|
|
|
|
android:label="@string/permission_service_mail_label"
|
|
|
|
android:description="@string/permission_service_mail_description" />
|
|
|
|
|
2015-02-01 22:27:46 +00:00
|
|
|
<uses-permission android:name="android.permission.FAKE_PACKAGE_SIGNATURE" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2014-04-23 19:27:33 +00:00
|
|
|
|
2015-01-03 14:27:50 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2015-02-01 22:27:46 +00:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
|
2015-03-04 22:23:40 +00:00
|
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
2014-08-22 20:08:44 +00:00
|
|
|
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
|
|
|
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
|
2014-04-23 19:27:33 +00:00
|
|
|
|
2015-03-06 19:08:47 +00:00
|
|
|
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
|
|
|
|
<uses-permission android:name="com.google.android.c2dm.permission.SEND" />
|
|
|
|
|
2015-01-03 14:27:50 +00:00
|
|
|
<application
|
2015-01-15 19:12:25 +00:00
|
|
|
android:label="@string/gms_app_name"
|
2015-02-01 22:27:46 +00:00
|
|
|
android:icon="@drawable/ic_microg_app"
|
|
|
|
tools:replace="android:label,android:icon">
|
|
|
|
<meta-data
|
|
|
|
android:name="fake-signature"
|
2015-01-03 14:27:50 +00:00
|
|
|
android:value="@string/fake_signature" />
|
|
|
|
|
2015-02-01 22:27:46 +00:00
|
|
|
<!-- Location -->
|
|
|
|
|
2014-07-26 13:51:30 +00:00
|
|
|
<service
|
2015-03-01 13:54:31 +00:00
|
|
|
android:name="org.microg.gms.location.GoogleLocationManagerService"
|
2015-01-28 14:29:50 +00:00
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.location.internal.GoogleLocationManagerService.START" />
|
|
|
|
</intent-filter>
|
2015-03-01 13:54:31 +00:00
|
|
|
</service>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
~ TODO: maybe this should go in UnifiedNlp?
|
|
|
|
~ Only if fake signature is not required
|
|
|
|
-->
|
|
|
|
<service android:name="org.microg.gms.location.ReportingAndroidService">
|
2014-07-26 13:51:30 +00:00
|
|
|
<intent-filter>
|
2015-03-01 13:54:31 +00:00
|
|
|
<action android:name="com.google.android.location.reporting.service.START" />
|
|
|
|
<action android:name="com.google.android.gms.location.reporting.service.START" />
|
2015-02-01 22:27:46 +00:00
|
|
|
|
2015-03-01 13:54:31 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
2014-07-26 13:51:30 +00:00
|
|
|
</service>
|
2014-04-23 19:27:33 +00:00
|
|
|
|
2015-03-01 13:54:31 +00:00
|
|
|
<!-- Services Framework -->
|
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="org.microg.gms.gservices.GServicesProvider"
|
|
|
|
android:exported="true"
|
|
|
|
android:authorities="com.google.android.gsf.gservices" />
|
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="org.microg.gms.settings.GoogleSettingsProvider"
|
|
|
|
android:exported="true"
|
|
|
|
android:authorities="com.google.settings" />
|
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="org.microg.gms.feeds.SubscribedFeedsProvider"
|
|
|
|
android:authorities="subscribedfeeds"
|
|
|
|
android:exported="true"
|
|
|
|
android:multiprocess="false"
|
|
|
|
android:readPermission="android.permission.SUBSCRIBED_FEEDS_READ"
|
|
|
|
android:writePermission="android.permission.SUBSCRIBED_FEEDS_WRITE" />
|
|
|
|
|
2015-02-23 23:16:03 +00:00
|
|
|
<!-- Device Checkin -->
|
|
|
|
|
2015-02-28 19:56:05 +00:00
|
|
|
<service android:name="org.microg.gms.checkin.CheckinService" />
|
|
|
|
|
|
|
|
<receiver android:name="org.microg.gms.checkin.TriggerReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.server.checkin.CHECKIN" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
|
|
|
|
<category android:name="android.server.checkin.CHECKIN" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.provider.Telephony.SECRET_CODE" />
|
|
|
|
<data
|
|
|
|
android:host="2432546"
|
|
|
|
android:scheme="android_secret_code" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2015-02-23 23:16:03 +00:00
|
|
|
<!-- Cloud Messaging -->
|
|
|
|
<service
|
|
|
|
android:name="org.microg.gms.gcm.PushRegisterService"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="com.google.android.c2dm.permission.RECEIVE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.c2dm.intent.REGISTER" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.c2dm.intent.UNREGISTER" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2015-02-10 14:31:13 +00:00
|
|
|
<!-- People -->
|
|
|
|
|
|
|
|
<service
|
2015-03-01 13:54:31 +00:00
|
|
|
android:name="org.microg.gms.people.PeopleService"
|
2015-02-10 14:31:13 +00:00
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.gms.people.service.START" />
|
2015-02-23 23:16:03 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2015-02-10 14:31:13 +00:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2015-02-10 02:33:30 +00:00
|
|
|
|
2015-03-01 13:54:31 +00:00
|
|
|
<!-- Wearable -->
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name="org.microg.gms.wearable.WearableService"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.gms.wearable.BIND" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2015-02-01 22:27:46 +00:00
|
|
|
<!-- Auth -->
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name="org.microg.gms.auth.loginservice.GoogleLoginService"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.accounts.AccountAuthenticator" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.gsf.action.GET_GLS" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.accounts.AccountAuthenticator"
|
|
|
|
android:resource="@xml/authenticator" />
|
|
|
|
<meta-data
|
|
|
|
android:name="android.accounts.AccountAuthenticator.customTokens"
|
|
|
|
android:value="1" />
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name="org.microg.tools.AccountPickerActivity"
|
2015-01-03 14:27:50 +00:00
|
|
|
android:exported="true"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:theme="@android:style/Theme.Holo.Dialog">
|
2014-08-22 20:08:44 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.gms.common.account.CHOOSE_ACCOUNT" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2015-02-01 22:27:46 +00:00
|
|
|
<activity
|
|
|
|
android:name="org.microg.gms.auth.login.LoginActivity"
|
|
|
|
android:theme="@style/LoginBlueTheme"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.gms.auth.login.LOGIN" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2015-02-07 19:56:49 +00:00
|
|
|
<activity
|
|
|
|
android:name="org.microg.gms.auth.AskPermissionActivity"
|
|
|
|
android:theme="@style/Theme.AppCompat.Light.Dialog"
|
2015-02-03 22:08:55 +00:00
|
|
|
android:exported="true"
|
2015-02-10 14:31:13 +00:00
|
|
|
android:excludeFromRecents="true" />
|
2015-02-03 22:08:55 +00:00
|
|
|
|
2015-02-01 22:27:46 +00:00
|
|
|
<service
|
|
|
|
android:name=".auth.GetToken"
|
2015-01-03 14:27:50 +00:00
|
|
|
android:exported="true" />
|
2015-02-01 22:27:46 +00:00
|
|
|
<activity
|
|
|
|
android:name=".auth.TokenActivity"
|
2015-01-03 14:27:50 +00:00
|
|
|
android:exported="true" />
|
2015-03-01 13:54:31 +00:00
|
|
|
|
|
|
|
<!-- Other -->
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name="org.microg.gms.mdm.NetworkQualityService"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.gms.mdm.services.START" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name="org.microg.gms.icing.LightweightIndexService"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.gms.icing.LIGHTWEIGHT_INDEX_SERVICE" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2015-01-03 14:27:50 +00:00
|
|
|
</application>
|
2014-04-23 19:27:33 +00:00
|
|
|
</manifest>
|