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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: samples/todomvc/android/TodoMVC/app/src/main/AndroidManifest.xml
diff --git a/samples/todomvc/android/TodoMVC/app/src/main/AndroidManifest.xml b/samples/todomvc/android/TodoMVC/app/src/main/AndroidManifest.xml
deleted file mode 100644
index c7b98a1923deff5525cb5968913915a9256434ab..0000000000000000000000000000000000000000
--- a/samples/todomvc/android/TodoMVC/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.google.dartino.todomvc" >
- <uses-permission android:name="android.permission.INTERNET" />
- <application
- android:name=".TodoMVC"
- android:allowBackup="true"
- android:icon="@drawable/ic_launcher"
- android:label="@string/app_name"
- android:theme="@style/AppTheme" >
- <activity
- android:name=".MainActivity"
- android:label="@string/app_name" >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
-
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity
- android:name=".CreateTodoItem"
- android:label="@string/title_activity_create_todo_item"
- android:parentActivityName=".MainActivity">
- <meta-data
- android:name="android.support.PARENT_ACTIVITY"
- android:value=".MainActivity"/>
- </activity>
- </application>
-
-</manifest>

Powered by Google App Engine
This is Rietveld 408576698