1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 * Copyright (C) 2017 The Android Open Source Project 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 --> 17<!-- OEM-INSTRUCTION: Change the package attribute to something OEM-specific. --> 18<manifest xmlns:android="http://schemas.android.com/apk/res/android" 19 package="CHANGE"> 20 21 <!-- 22 OEM-INSTRUCTION: Change these to match the platform release the app is 23 for and update for every platform release to ensure the app is only 24 installed on the release it is targeted for. Typically, all values should 25 be the same unless two Android releases use the same distro format 26 version. 27 28 Your app version code strategy and the version of the app included in the 29 system image should be chosen to prevent older versions of the app being 30 installed on newer Android devices. 31 minSdkVersion will prevent newer versions of the app being installed on 32 older devices. 33 maxSdkVersion is not used by the device, but can be used by app stores to 34 prevent the app being shown to users of newer devices. 35 --> 36 <uses-sdk android:minSdkVersion="CHANGE" 37 android:targetSdkVersion="CHANGE" 38 android:maxSdkVersion="CHANGE" /> 39 40 <!-- 41 OEM-INSTRUCTION: Optionally restrict the app to an OEM-specific feature, 42 or remove the element entirely. 43 --> 44 <uses-feature 45 android:name="CHANGE" 46 android:required="true"/> 47 48 <application 49 android:allowBackup="false" 50 android:label="@string/app_name"> 51 52 <provider 53 android:name="com.android.timezone.data.TimeZoneRulesDataProvider" 54 android:authorities="com.android.timezone" 55 android:grantUriPermissions="true" 56 android:readPermission="android.permission.UPDATE_TIME_ZONE_RULES" 57 android:exported="true"> 58 <meta-data android:name="android.timezoneprovider.OPERATION" 59 android:value="INSTALL"/> 60 </provider> 61 </application> 62</manifest> 63