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

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

Issue 1138343002: Bump versionCode of SkyDemo.apk to avoid downgrade warning. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 | « no previous file | sky/tools/shelldb » ('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" 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
7 package="org.domokit.sky.demo" 7 package="org.domokit.sky.demo"
8 android:versionCode="3" 8 android:versionCode="7"
9 android:versionName="0.0.1"> 9 android:versionName="0.0.1">
10 10
11 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> 11 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
12 <uses-permission android:name="android.permission.INTERNET"/> 12 <uses-permission android:name="android.permission.INTERNET"/>
13 <uses-feature android:name="android.hardware.sensor.accelerometer" android:r equired="true" /> 13 <uses-feature android:name="android.hardware.sensor.accelerometer" android:r equired="true" />
14 14
15 <application android:icon="@mipmap/ic_launcher" android:name="SkyDemoApplica tion" android:label="Sky"> 15 <application android:icon="@mipmap/ic_launcher" android:name="SkyDemoApplica tion" android:label="Sky">
16 <activity android:name="SkyDemoActivity" 16 <activity android:name="SkyDemoActivity"
17 android:launchMode="singleTask" 17 android:launchMode="singleTask"
18 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 18 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
19 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 19 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
20 android:hardwareAccelerated="true"> 20 android:hardwareAccelerated="true">
21 <intent-filter> 21 <intent-filter>
22 <action android:name="android.intent.action.MAIN"/> 22 <action android:name="android.intent.action.MAIN"/>
23 <category android:name="android.intent.category.LAUNCHER"/> 23 <category android:name="android.intent.category.LAUNCHER"/>
24 </intent-filter> 24 </intent-filter>
25 <intent-filter> 25 <intent-filter>
26 <action android:name="android.intent.action.VIEW"/> 26 <action android:name="android.intent.action.VIEW"/>
27 <category android:name="android.intent.category.DEFAULT" /> 27 <category android:name="android.intent.category.DEFAULT" />
28 <data android:scheme="sky" /> 28 <data android:scheme="sky" />
29 </intent-filter> 29 </intent-filter>
30 </activity> 30 </activity>
31 </application> 31 </application>
32 </manifest> 32 </manifest>
OLDNEW
« no previous file with comments | « no previous file | sky/tools/shelldb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698