OLD | NEW |
| (Empty) |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
3 package="com.google.dartino.todomvc" > | |
4 <uses-permission android:name="android.permission.INTERNET" /> | |
5 <application | |
6 android:name=".TodoMVC" | |
7 android:allowBackup="true" | |
8 android:icon="@drawable/ic_launcher" | |
9 android:label="@string/app_name" | |
10 android:theme="@style/AppTheme" > | |
11 <activity | |
12 android:name=".MainActivity" | |
13 android:label="@string/app_name" > | |
14 <intent-filter> | |
15 <action android:name="android.intent.action.MAIN" /> | |
16 | |
17 <category android:name="android.intent.category.LAUNCHER" /> | |
18 </intent-filter> | |
19 </activity> | |
20 <activity | |
21 android:name=".CreateTodoItem" | |
22 android:label="@string/title_activity_create_todo_item" | |
23 android:parentActivityName=".MainActivity"> | |
24 <meta-data | |
25 android:name="android.support.PARENT_ACTIVITY" | |
26 android:value=".MainActivity"/> | |
27 </activity> | |
28 </application> | |
29 | |
30 </manifest> | |
OLD | NEW |