2019-09-04 16:21:28 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
2018-11-15 16:08:53 +01:00
|
|
|
/*
|
2019-09-04 16:21:28 +01:00
|
|
|
* Copyright (c) 2016 Google Inc.
|
2018-11-15 16:08:53 +01: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
|
|
|
|
*
|
2019-09-04 16:21:28 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2018-11-15 16:08:53 +01: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.
|
|
|
|
*/
|
2019-09-04 16:21:28 +01:00
|
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.server.backup.encryption"
|
|
|
|
android:sharedUserId="android.uid.system" >
|
2018-11-15 16:08:53 +01:00
|
|
|
|
2019-09-24 23:01:19 +01:00
|
|
|
<application android:allowBackup="false" >
|
|
|
|
<!-- This service does not need to be exported because it shares uid with the system server
|
|
|
|
which is the only client. -->
|
|
|
|
<service android:name=".BackupEncryptionService"
|
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.encryption.BACKUP_ENCRYPTION" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
</application>
|
2019-09-04 16:21:28 +01:00
|
|
|
</manifest>
|