mirror of
https://github.com/letic/dashkiosk-android.git
synced 2024-10-07 19:21:16 +00:00
4ddd274cc7
- Upgrade XWalk to 22 - Try to disable requirement for user gesture to play media on the Webview in different part of the code
45 lines
1.8 KiB
XML
45 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.deezer.android.dashkiosk"
|
|
android:versionCode="11"
|
|
android:versionName="@string/app_versionName">
|
|
|
|
<uses-sdk
|
|
tools:ignore="OldTargetApi"
|
|
android:minSdkVersion="16"
|
|
android:targetSdkVersion="19" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
<!-- The following permission is solely for reading external
|
|
certificate store. You can remove it if you don't need it. -->
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<application android:label="@string/app_name"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:theme="@android:style/Theme.Holo"
|
|
android:allowBackup="true"
|
|
android:hardwareAccelerated="true">
|
|
<activity android:name="DashboardActivity"
|
|
android:launchMode="singleInstance"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
<category android:name="android.intent.category.HOME" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="DashboardPreferences"
|
|
android:label="@string/preferences">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|