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

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

Issue 1175393002: Teach roll_versions.py how to update CHANGELOG.md files. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « mojo/public/dart/pubspec.yaml ('k') | sky/sdk/CHANGELOG.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 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 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="or g.domokit.sky.demo" android:versionCode="9" android:versionName="0.0.9"> 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="or g.domokit.sky.demo" android:versionCode="10" android:versionName="0.0.10">
7 7
8 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> 8 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
9 <uses-permission android:name="android.permission.INTERNET" /> 9 <uses-permission android:name="android.permission.INTERNET" />
10 <uses-feature android:name="android.hardware.sensor.accelerometer" android:r equired="true" /> 10 <uses-feature android:name="android.hardware.sensor.accelerometer" android:r equired="true" />
11 11
12 <application android:icon="@mipmap/ic_launcher" android:label="Sky" android: name="SkyDemoApplication"> 12 <application android:icon="@mipmap/ic_launcher" android:label="Sky" android: name="SkyDemoApplication">
13 <activity android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" android:hardwareAccelerated="true" android:launchMode="singleTask" andr oid:name="SkyDemoActivity" android:theme="@android:style/Theme.Holo.Light.NoActi onBar"> 13 <activity android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" android:hardwareAccelerated="true" android:launchMode="singleTask" andr oid:name="SkyDemoActivity" android:theme="@android:style/Theme.Holo.Light.NoActi onBar">
14 <intent-filter> 14 <intent-filter>
15 <action android:name="android.intent.action.MAIN" /> 15 <action android:name="android.intent.action.MAIN" />
16 <category android:name="android.intent.category.LAUNCHER" /> 16 <category android:name="android.intent.category.LAUNCHER" />
17 </intent-filter> 17 </intent-filter>
18 <intent-filter> 18 <intent-filter>
19 <action android:name="android.intent.action.VIEW" /> 19 <action android:name="android.intent.action.VIEW" />
20 <category android:name="android.intent.category.DEFAULT" /> 20 <category android:name="android.intent.category.DEFAULT" />
21 <data android:scheme="sky" /> 21 <data android:scheme="sky" />
22 </intent-filter> 22 </intent-filter>
23 </activity> 23 </activity>
24 </application> 24 </application>
25 </manifest> 25 </manifest>
OLDNEW
« no previous file with comments | « mojo/public/dart/pubspec.yaml ('k') | sky/sdk/CHANGELOG.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698