2013-02-08 10:09:55 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-06-26 21:10:37 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-07-26 18:15:07 +02:00
|
|
|
package="org.moire.ultrasonic"
|
2018-06-26 21:10:37 +02:00
|
|
|
android:installLocation="auto">
|
2013-04-18 08:18:59 +02:00
|
|
|
|
2018-06-26 21:10:37 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH"/>
|
2020-06-17 15:08:30 +02:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2013-04-18 08:18:59 +02:00
|
|
|
|
|
|
|
<supports-screens
|
2018-06-26 21:10:37 +02:00
|
|
|
android:anyDensity="true"
|
|
|
|
android:largeScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:xlargeScreens="true"/>
|
2013-04-18 08:18:59 +02:00
|
|
|
|
|
|
|
<application
|
2018-06-26 21:10:37 +02:00
|
|
|
android:allowBackup="false"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:theme="@style/Theme.AppCompat"
|
|
|
|
android:name=".app.UApp"
|
2020-06-17 18:14:34 +02:00
|
|
|
android:label="@string/common.appname"
|
|
|
|
android:usesCleartextTraffic="true">
|
2018-06-26 21:10:37 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.MainActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:label="UltraSonic"
|
|
|
|
android:launchMode="standard">
|
2013-02-08 10:09:55 +01:00
|
|
|
<intent-filter>
|
2018-06-26 21:10:37 +02:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
2013-02-08 10:09:55 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2013-04-18 08:18:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.SelectArtistActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:launchMode="standard"/>
|
2013-04-18 08:18:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.SelectAlbumActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"/>
|
2013-04-18 08:18:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.SearchActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:label="@string/search.label"
|
|
|
|
android:launchMode="singleTask"/>
|
2013-04-18 08:18:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.SelectPlaylistActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:label="@string/playlist.label"
|
|
|
|
android:launchMode="standard"/>
|
2016-02-26 10:40:52 +01:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.PodcastsActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:label="@string/podcasts.label"
|
|
|
|
android:launchMode="standard"/>
|
2013-05-29 10:21:09 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.BookmarkActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"/>
|
2013-12-28 01:29:12 +01:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.ShareActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"/>
|
2013-05-22 07:47:40 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.ChatActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"/>
|
2013-04-18 08:18:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.DownloadActivity"
|
|
|
|
android:configChanges="keyboardHidden"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:exported="true" />
|
2013-04-18 08:18:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.SettingsActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:launchMode="singleTask"/>
|
2013-04-18 08:18:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.HelpActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:launchMode="singleTask"/>
|
2013-04-18 08:18:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.LyricsActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:launchMode="singleTask"/>
|
2013-04-18 08:18:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.EqualizerActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:label="@string/equalizer.label"
|
|
|
|
android:launchMode="singleTask"/>
|
2013-04-20 23:58:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.SelectGenreActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:launchMode="standard"/>
|
2013-04-18 08:18:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.VoiceQueryReceiverActivity"
|
|
|
|
android:launchMode="singleTask">
|
2013-02-08 10:09:55 +01:00
|
|
|
<intent-filter>
|
2018-06-26 21:10:37 +02:00
|
|
|
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2013-02-08 10:09:55 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2013-04-18 08:18:59 +02:00
|
|
|
<activity
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".activity.QueryReceiverActivity"
|
|
|
|
android:launchMode="singleTask">
|
2013-02-08 10:09:55 +01:00
|
|
|
<intent-filter>
|
2018-06-26 21:10:37 +02:00
|
|
|
<action android:name="android.intent.action.SEARCH"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2013-02-08 10:09:55 +01:00
|
|
|
</intent-filter>
|
2013-04-18 08:18:59 +02:00
|
|
|
|
|
|
|
<meta-data
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name="android.app.searchable"
|
|
|
|
android:resource="@xml/searchable"/>
|
2013-02-08 10:09:55 +01:00
|
|
|
</activity>
|
2013-04-18 08:18:59 +02:00
|
|
|
|
2018-06-26 21:10:37 +02:00
|
|
|
<activity android:name=".activity.ServerSettingsActivity" />
|
2017-02-05 23:57:21 +01:00
|
|
|
|
2013-04-18 08:18:59 +02:00
|
|
|
<service
|
2020-06-21 09:31:38 +02:00
|
|
|
android:name=".service.MediaPlayerService"
|
2018-06-26 21:10:37 +02:00
|
|
|
android:label="UltraSonic Download Service"
|
|
|
|
android:exported="false">
|
2013-02-08 10:09:55 +01:00
|
|
|
<intent-filter>
|
2018-06-26 21:10:37 +02:00
|
|
|
<action android:name="org.moire.ultrasonic.CMD_TOGGLEPAUSE"/>
|
|
|
|
<action android:name="org.moire.ultrasonic.CMD_PLAY"/>
|
|
|
|
<action android:name="org.moire.ultrasonic.CMD_PAUSE"/>
|
|
|
|
<action android:name="org.moire.ultrasonic.CMD_NEXT"/>
|
|
|
|
<action android:name="org.moire.ultrasonic.CMD_PREVIOUS"/>
|
|
|
|
<action android:name="org.moire.ultrasonic.CMD_STOP"/>
|
2013-02-08 10:09:55 +01:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2018-06-26 21:10:37 +02:00
|
|
|
<receiver android:name=".receiver.MediaButtonIntentReceiver">
|
|
|
|
<intent-filter android:priority="2147483647">
|
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON"/>
|
2013-02-08 10:09:55 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2018-06-26 21:10:37 +02:00
|
|
|
<receiver android:name=".receiver.BluetoothIntentReceiver">
|
2013-02-08 10:09:55 +01:00
|
|
|
<intent-filter>
|
2018-06-26 21:10:37 +02:00
|
|
|
<action android:name="android.bluetooth.device.action.ACL_CONNECTED"/>
|
|
|
|
<action android:name="android.bluetooth.device.action.ACL_DISCONNECTED"/>
|
|
|
|
<action android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED"/>
|
|
|
|
<action android:name="android.bluetooth.a2dp.action.SINK_STATE_CHANGED"/>
|
2013-02-08 10:09:55 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2013-04-18 08:18:59 +02:00
|
|
|
<receiver
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".provider.UltraSonicAppWidgetProvider4x1"
|
|
|
|
android:label="UltraSonic (4x1)">
|
2013-02-08 10:09:55 +01:00
|
|
|
<intent-filter>
|
2018-06-26 21:10:37 +02:00
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
2013-02-08 10:09:55 +01:00
|
|
|
</intent-filter>
|
2013-04-18 08:18:59 +02:00
|
|
|
|
|
|
|
<meta-data
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/appwidget_info_4x1"/>
|
2013-02-08 10:09:55 +01:00
|
|
|
</receiver>
|
2013-05-26 07:19:28 +02:00
|
|
|
<receiver
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".provider.UltraSonicAppWidgetProvider4x2"
|
|
|
|
android:label="UltraSonic (4x2)">
|
2013-05-26 07:19:28 +02:00
|
|
|
<intent-filter>
|
2018-06-26 21:10:37 +02:00
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
2013-05-26 07:19:28 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/appwidget_info_4x2"/>
|
2013-05-26 07:19:28 +02:00
|
|
|
</receiver>
|
|
|
|
<receiver
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".provider.UltraSonicAppWidgetProvider4x3"
|
|
|
|
android:label="UltraSonic (4x3)">
|
2013-05-26 07:19:28 +02:00
|
|
|
<intent-filter>
|
2018-06-26 21:10:37 +02:00
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
2013-05-26 07:19:28 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/appwidget_info_4x3"/>
|
2013-05-26 07:19:28 +02:00
|
|
|
</receiver>
|
|
|
|
<receiver
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".provider.UltraSonicAppWidgetProvider4x4"
|
|
|
|
android:label="UltraSonic (4x4)">
|
2013-05-26 07:19:28 +02:00
|
|
|
<intent-filter>
|
2018-06-26 21:10:37 +02:00
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
2013-05-26 07:19:28 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/appwidget_info_4x4"/>
|
2013-05-26 07:19:28 +02:00
|
|
|
</receiver>
|
2013-02-08 10:09:55 +01:00
|
|
|
|
2013-04-18 08:18:59 +02:00
|
|
|
<provider
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".provider.SearchSuggestionProvider"
|
|
|
|
android:authorities="org.moire.ultrasonic.provider.SearchSuggestionProvider"/>
|
2013-02-08 10:09:55 +01:00
|
|
|
|
2013-04-18 08:18:59 +02:00
|
|
|
<meta-data
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name="android.app.default_searchable"
|
|
|
|
android:value="org.moire.ultrasonic.activity.QueryReceiverActivity"/>
|
2013-02-08 10:09:55 +01:00
|
|
|
|
2013-04-18 08:18:59 +02:00
|
|
|
<receiver
|
2018-06-26 21:10:37 +02:00
|
|
|
android:name=".receiver.A2dpIntentReceiver"
|
|
|
|
android:exported="false">
|
2013-04-18 08:18:59 +02:00
|
|
|
<intent-filter>
|
2018-06-26 21:10:37 +02:00
|
|
|
<action android:name="com.android.music.playstatusrequest"/>
|
2013-04-18 08:18:59 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2013-02-08 10:09:55 +01:00
|
|
|
</application>
|
|
|
|
|
2018-01-29 17:48:34 +01:00
|
|
|
</manifest>
|