14a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate<?xml version="1.0" encoding="utf-8"?>
24a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate<!--
34a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate** Copyright 2011, The Android Open Source Project
44a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate**
54a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate** Licensed under the Apache License, Version 2.0 (the "License");
64a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate** you may not use this file except in compliance with the License.
74a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate** You may obtain a copy of the License at
84a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate**
94a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate**     http://www.apache.org/licenses/LICENSE-2.0
104a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate**
114a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate** Unless required by applicable law or agreed to in writing, software
124a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate** distributed under the License is distributed on an "AS IS" BASIS,
134a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
144a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate** See the License for the specific language governing permissions and
154a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate** limitations under the License.
164a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate-->
174a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate
184a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate<manifest xmlns:android="http://schemas.android.com/apk/res/android"
194a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate    package="com.android.backupconfirm" >
204a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate
214a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate    <uses-permission android:name="android.permission.BACKUP" />
22a23b343299783e5990370579cfc7d93e62dacb8dChristopher Tate    <uses-permission android:name="android.permission.CRYPT_KEEPER" />
234a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate
244a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate    <application android:allowClearUserData="false"
25a858cb075d0c87e2965d401656ff2d5bc16406daChristopher Tate                 android:allowBackup="false"
264a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate                 android:permission="android.permission.CONFIRM_FULL_BACKUP" >
274a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate
284a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate        <activity android:name=".BackupRestoreConfirmation" 
29c58cf7dd02ad227a68d62a0204152cee62c13182Christopher Tate                  android:title=""
304a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate                  android:windowSoftInputMode="stateAlwaysHidden"
314a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate                  android:excludeFromRecents="true"
324a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate                  android:exported="true" >
334a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate        </activity>
344a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate    </application>
354a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate</manifest> 
36