mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-21 19:55:33 -04:00
* Created from scratch by me (Royna) with help of LineageOS repo [1], Sony Xperia Dev repo [2] * Basic input/output, channel selection is working [1]: https://github.com/LineageOS/android_hardware_samsung_slsi_fm [2]: https://github.com/sonyxperiadev/vendor-qcom-opensource-fm Change-Id: I922bbeb9f86e6a4c7bc993d27d2f9eeb2a712186 Signed-off-by: roynatech2544 <whiteshell2544@naver.com>
48 lines
2.1 KiB
XML
48 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.eurekateam.fmradio"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
|
|
<application
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/OneUI4Theme">
|
|
<activity
|
|
android:name=".ErrorHandler"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.HEADSET_PLUG"/>
|
|
<action android:name="com.eurekateam.fmradio.RADIO.IO" />
|
|
<action android:name="com.eurekateam.fmradio.TRACKS" />
|
|
<action android:name="com.eurekateam.fmradio.NO_HEADPHONE" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<action android:name="android.intent.action.HEADSET_PLUG"/>
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<service
|
|
android:name=".FMRadioService"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="com.eurekateam.fmradio.STARTBG" />
|
|
<action android:name="com.eurekateam.fmradio.PLAY_FM"/>
|
|
<action android:name="com.eurekateam.fmradio.NEXT"/>
|
|
<action android:name="com.eurekateam.fmradio.BEFORE"/>
|
|
<action android:name="com.eurekateam.fmradio.QUIT"/>
|
|
<action android:name="com.eurekateam.fmradio.STOPBG"/>
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</service>
|
|
</application>
|
|
|
|
</manifest>
|