Chromium Code Reviews| OLD | NEW |
|---|---|
| 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.asteroids"> | 7 package="org.domokit.asteroids"> |
| 8 | 8 |
| 9 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> | 9 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> |
| 10 <uses-permission android:name="android.permission.INTERNET"/> | 10 <uses-permission android:name="android.permission.INTERNET"/> |
| 11 | 11 |
| 12 <application android:name="org.domokit.sky.shell.SkyApplication" android:lab el="Asteroids"> | 12 <application android:icon="@mipmap/ic_launcher" android:name="org.domokit.sk y.shell.SkyApplication" android:label="Asteroids"> |
| 13 <activity android:name="org.domokit.sky.shell.SkyActivity" | 13 <activity android:name="org.domokit.sky.shell.SkyActivity" |
| 14 android:launchMode="singleTask" | 14 android:launchMode="singleTask" |
| 15 android:theme="@android:style/Theme.Holo.Light.NoActionBar" | 15 android:theme="@android:style/Theme.Black.NoTitleBar" |
|
abarth-chromium
2015/07/10 20:24:54
We should use this in all the AndroidManifests.xml
| |
| 16 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" | 16 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" |
| 17 android:hardwareAccelerated="true"> | 17 android:hardwareAccelerated="true"> |
| 18 <intent-filter> | 18 <intent-filter> |
| 19 <action android:name="android.intent.action.MAIN"/> | 19 <action android:name="android.intent.action.MAIN"/> |
| 20 <category android:name="android.intent.category.LAUNCHER"/> | 20 <category android:name="android.intent.category.LAUNCHER"/> |
| 21 </intent-filter> | 21 </intent-filter> |
| 22 </activity> | 22 </activity> |
| 23 </application> | 23 </application> |
| 24 </manifest> | 24 </manifest> |
| OLD | NEW |