OLD | NEW |
| (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" package="or
g.domokit.sky.demo" android:versionCode="13" android:versionName="0.0.13"> | |
7 | |
8 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> | |
9 <uses-permission android:name="android.permission.INTERNET" /> | |
10 <uses-feature android:name="android.hardware.sensor.accelerometer" android:r
equired="true" /> | |
11 | |
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:name="SkyDemoActivity" andro
id:theme="@android:style/Theme.Holo.Light.NoActionBar"> | |
14 <intent-filter> | |
15 <action android:name="android.intent.action.MAIN" /> | |
16 <category android:name="android.intent.category.LAUNCHER" /> | |
17 </intent-filter> | |
18 </activity> | |
19 </application> | |
20 </manifest> | |
OLD | NEW |