Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(777)

Side by Side Diff: samples/todomvc/android/TodoMVC/app/src/main/AndroidManifest.xml

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.google.fletch.todomvc" > 3 package="com.google.dartino.todomvc" >
4 <uses-permission android:name="android.permission.INTERNET" /> 4 <uses-permission android:name="android.permission.INTERNET" />
5 <application 5 <application
6 android:name=".TodoMVC" 6 android:name=".TodoMVC"
7 android:allowBackup="true" 7 android:allowBackup="true"
8 android:icon="@drawable/ic_launcher" 8 android:icon="@drawable/ic_launcher"
9 android:label="@string/app_name" 9 android:label="@string/app_name"
10 android:theme="@style/AppTheme" > 10 android:theme="@style/AppTheme" >
11 <activity 11 <activity
12 android:name=".MainActivity" 12 android:name=".MainActivity"
13 android:label="@string/app_name" > 13 android:label="@string/app_name" >
14 <intent-filter> 14 <intent-filter>
15 <action android:name="android.intent.action.MAIN" /> 15 <action android:name="android.intent.action.MAIN" />
16 16
17 <category android:name="android.intent.category.LAUNCHER" /> 17 <category android:name="android.intent.category.LAUNCHER" />
18 </intent-filter> 18 </intent-filter>
19 </activity> 19 </activity>
20 <activity 20 <activity
21 android:name=".CreateTodoItem" 21 android:name=".CreateTodoItem"
22 android:label="@string/title_activity_create_todo_item" 22 android:label="@string/title_activity_create_todo_item"
23 android:parentActivityName=".MainActivity"> 23 android:parentActivityName=".MainActivity">
24 <meta-data 24 <meta-data
25 android:name="android.support.PARENT_ACTIVITY" 25 android:name="android.support.PARENT_ACTIVITY"
26 android:value=".MainActivity"/> 26 android:value=".MainActivity"/>
27 </activity> 27 </activity>
28 </application> 28 </application>
29 29
30 </manifest> 30 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698