VancedMicroG/AndroidManifest.xml

82 lines
3.5 KiB
XML
Raw Normal View History

2014-04-23 19:27:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2014 μg Project Team
~
~ 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
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ 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"
xmlns:tools="http://schemas.android.com/tools"
2015-01-03 14:27:50 +00:00
package="com.google.android.gms"
android:versionName="1.0"
2015-01-11 11:56:18 +00:00
android:versionCode="6599436">
2014-04-23 19:27:33 +00:00
2015-01-03 14:27:50 +00:00
<uses-sdk android:minSdkVersion="16" />
2014-04-23 19:27:33 +00:00
2015-01-03 14:27:50 +00:00
<uses-permission android:name="android.permission.INSTALL_LOCATION_PROVIDER" />
<uses-permission android:name="android.permission.ACCESS_COARSE_UPDATES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.FAKE_PACKAGE_SIGNATURE" />
<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-01-03 14:27:50 +00:00
<application
android:theme="@style/AppTheme"
android:label="@string/gms_app_name"
tools:replace="android:label">
2015-01-03 14:27:50 +00:00
<uses-library
android:name="com.google.android.maps"
android:required="false" />
<meta-data android:name="fake-signature"
android:value="@string/fake_signature" />
<service
2015-01-28 14:29:50 +00:00
android:name="com.google.android.location.internal.GoogleLocationManagerService"
android:permission="android.permission.ACCESS_COARSE_LOCATION"
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>
<intent-filter>
<action android:name="com.google.android.location.internal.GMS_NLP" />
</intent-filter>
2015-01-03 14:27:50 +00:00
<meta-data android:name="minProtocolVersion"
android:value="1" />
<meta-data android:name="maxProtocolVersion"
android:value="1" />
<meta-data android:name="releaseVersion"
android:value="2007" />
<meta-data android:name="nlpServiceIntent"
android:value="com.google.android.location.internal.GMS_NLP" />
</service>
2014-04-23 19:27:33 +00:00
2015-01-03 14:27:50 +00:00
<activity android:name="org.microg.tools.AccountPickerActivity"
android:exported="true"
android:excludeFromRecents="true"
android:theme="@android:style/Theme.Holo.Dialog">
<intent-filter>
<action android:name="com.google.android.gms.common.account.CHOOSE_ACCOUNT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
2015-01-03 14:27:50 +00:00
<service android:name=".auth.GetToken"
android:exported="true" />
<activity android:name=".auth.TokenActivity"
android:exported="true" />
</application>
2014-04-23 19:27:33 +00:00
</manifest>