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

Side by Side Diff: sky/apk/stocks/AndroidManifest.xml

Issue 1211883004: Update Stocks.apk build tech (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « sky/BUILD.gn ('k') | sky/apk/stocks/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 -->
6 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
7 package="org.domokit.stocks">
8
9 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
10 <uses-permission android:name="android.permission.INTERNET"/>
11
12 <application android:name="org.domokit.sky.shell.SkyApplication" android:lab el="Stocks">
13 <activity android:name="StocksActivity"
14 android:launchMode="singleTask"
15 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
16 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
17 android:hardwareAccelerated="true">
18 <intent-filter>
19 <action android:name="android.intent.action.MAIN"/>
20 <category android:name="android.intent.category.LAUNCHER"/>
21 </intent-filter>
22 </activity>
23 </application>
24 </manifest>
OLDNEW
« no previous file with comments | « sky/BUILD.gn ('k') | sky/apk/stocks/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698