blob: 0a446de3edb872528a214c400e747d9c2b5fd5c3 [file] [log] [blame]
The Android Open Source Project52d4c302009-03-03 19:29:09 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
Raphael Mollbc6fa8a2011-01-30 17:05:10 -080016
The Android Open Source Project52d4c302009-03-03 19:29:09 -080017<manifest
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:versionCode="1"
Raphael Mollbc6fa8a2011-01-30 17:05:10 -080020 android:versionName="1.0"
21 package="com.android.customlocale2"
22 >
23
24 <uses-sdk android:minSdkVersion="3" />
25
26 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
27 <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
28
The Android Open Source Project52d4c302009-03-03 19:29:09 -080029 <application
30 android:icon="@drawable/icon"
Raphael Mollbc6fa8a2011-01-30 17:05:10 -080031 android:label="@string/app_name" >
32
The Android Open Source Project52d4c302009-03-03 19:29:09 -080033 <activity
Raphael Mollbc6fa8a2011-01-30 17:05:10 -080034 android:label="@string/app_name"
35 android:name="CustomLocaleActivity" >
The Android Open Source Project52d4c302009-03-03 19:29:09 -080036 <intent-filter>
37 <action android:name="android.intent.action.MAIN" />
38 <category android:name="android.intent.category.LAUNCHER" />
39 </intent-filter>
40 </activity>
Raphael Mollbc6fa8a2011-01-30 17:05:10 -080041
The Android Open Source Project52d4c302009-03-03 19:29:09 -080042 <activity
Raphael Mollbc6fa8a2011-01-30 17:05:10 -080043 android:theme="@android:style/Theme.Dialog"
44 android:name="NewLocaleDialog" />
45
46 <receiver android:name="CustomLocaleReceiver" >
47 <intent-filter>
48 <action android:name="com.android.intent.action.SET_LOCALE" />
49 </intent-filter>
50 </receiver>
The Android Open Source Project52d4c302009-03-03 19:29:09 -080051 </application>
The Android Open Source Project52d4c302009-03-03 19:29:09 -080052</manifest>