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

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

Issue 2035023003: Remove service-compiler related code. (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Created 4 years, 6 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
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698