xref: /aosp_15_r20/system/timezone/apex/AndroidManifest.xml (revision 2fd832c65f8b41db7ddb4ac802b9196762fe4888)
1*2fd832c6SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*2fd832c6SAndroid Build Coastguard Worker<!--
3*2fd832c6SAndroid Build Coastguard Worker * Copyright (C) 2017 The Android Open Source Project
4*2fd832c6SAndroid Build Coastguard Worker *
5*2fd832c6SAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License");
6*2fd832c6SAndroid Build Coastguard Worker * you may not use this file except in compliance with the License.
7*2fd832c6SAndroid Build Coastguard Worker * You may obtain a copy of the License at
8*2fd832c6SAndroid Build Coastguard Worker *
9*2fd832c6SAndroid Build Coastguard Worker *      http://www.apache.org/licenses/LICENSE-2.0
10*2fd832c6SAndroid Build Coastguard Worker *
11*2fd832c6SAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software
12*2fd832c6SAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS,
13*2fd832c6SAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*2fd832c6SAndroid Build Coastguard Worker * See the License for the specific language governing permissions and
15*2fd832c6SAndroid Build Coastguard Worker * limitations under the License.
16*2fd832c6SAndroid Build Coastguard Worker -->
17*2fd832c6SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18*2fd832c6SAndroid Build Coastguard Worker  package="com.android.tzdata">
19*2fd832c6SAndroid Build Coastguard Worker  <!-- APEX does not have classes.dex -->
20*2fd832c6SAndroid Build Coastguard Worker  <application android:hasCode="false" />
21*2fd832c6SAndroid Build Coastguard Worker  <!--
22*2fd832c6SAndroid Build Coastguard Worker    *  The content of the time zone data module is tied to (among other things)
23*2fd832c6SAndroid Build Coastguard Worker    *  the version of ICU being used on the device. Since that typically
24*2fd832c6SAndroid Build Coastguard Worker    *  updates every dessert release, we lock the module to a single API level.
25*2fd832c6SAndroid Build Coastguard Worker    -->
26*2fd832c6SAndroid Build Coastguard Worker  <!-- TODO: Uncomment this when the R API level is fixed. b/148281152 -->
27*2fd832c6SAndroid Build Coastguard Worker  <!--uses-sdk
28*2fd832c6SAndroid Build Coastguard Worker      android:minSdkVersion="29"
29*2fd832c6SAndroid Build Coastguard Worker      android:maxSdkVersion="29"
30*2fd832c6SAndroid Build Coastguard Worker      android:targetSdkVersion="29"
31*2fd832c6SAndroid Build Coastguard Worker  />
32*2fd832c6SAndroid Build Coastguard Worker  -->
33*2fd832c6SAndroid Build Coastguard Worker</manifest>
34