The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 1 | <?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 Moll | bc6fa8a | 2011-01-30 17:05:10 -0800 | [diff] [blame] | 16 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 17 | <manifest |
| 18 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 19 | android:versionCode="1" |
Raphael Moll | bc6fa8a | 2011-01-30 17:05:10 -0800 | [diff] [blame] | 20 | 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 Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 29 | <application |
| 30 | android:icon="@drawable/icon" |
Raphael Moll | bc6fa8a | 2011-01-30 17:05:10 -0800 | [diff] [blame] | 31 | android:label="@string/app_name" > |
| 32 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 33 | <activity |
Raphael Moll | bc6fa8a | 2011-01-30 17:05:10 -0800 | [diff] [blame] | 34 | android:label="@string/app_name" |
| 35 | android:name="CustomLocaleActivity" > |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 36 | <intent-filter> |
| 37 | <action android:name="android.intent.action.MAIN" /> |
| 38 | <category android:name="android.intent.category.LAUNCHER" /> |
| 39 | </intent-filter> |
| 40 | </activity> |
Raphael Moll | bc6fa8a | 2011-01-30 17:05:10 -0800 | [diff] [blame] | 41 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 42 | <activity |
Raphael Moll | bc6fa8a | 2011-01-30 17:05:10 -0800 | [diff] [blame] | 43 | 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 Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 51 | </application> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 52 | </manifest> |