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

Unified Diff: sky/shell/apk/AndroidManifest.xml

Issue 893643002: Add a standalone SkyShell.apk for testing (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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: sky/shell/apk/AndroidManifest.xml
diff --git a/shell/android/apk/AndroidManifest.xml b/sky/shell/apk/AndroidManifest.xml
similarity index 76%
copy from shell/android/apk/AndroidManifest.xml
copy to sky/shell/apk/AndroidManifest.xml
index 067c82e3c5fb66330286353012b4cf0f0b54d961..4b883998b0be36d6b81e12b0bfadd00b9c874aac 100644
--- a/shell/android/apk/AndroidManifest.xml
+++ b/sky/shell/apk/AndroidManifest.xml
@@ -1,20 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
-
-<!-- Copyright 2013 The Chromium Authors. All rights reserved.
-
+<!-- Copyright 2015 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.chromium.mojo.shell">
+ package="org.domokit.sky.shell">
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.INTERNET"/>
- <application android:name="MojoShellApplication"
- android:label="Mojo Shell">
- <activity android:name="MojoShellActivity"
+ <application android:name="SkyShellApplication" android:label="Sky">
+ <activity android:name="SkyShellActivity"
android:launchMode="singleTask"
android:theme="@android:style/Theme.Holo.Light.NoActionBar"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
@@ -25,5 +21,4 @@
</intent-filter>
</activity>
</application>
-
-</manifest>
+ </manifest>

Powered by Google App Engine
This is Rietveld 408576698