Initial commit

This commit is contained in:
Michatec
2025-04-27 15:07:05 +02:00
commit 2162c9fb40
157 changed files with 12179 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="utf-8"?>
<allowed_callers>
<signature
name="Android Auto"
package="com.google.android.projection.gearhead">
<key release="false">
19:75:b2:f1:71:77:bc:89:a5:df:f3:1f:9e:64:a6:ca:e2:81:a5:3d:c1:d1:d5:9b:1d:14:7f:e1:c8:2a:fa:00
</key>
<key release="false">
70:81:1a:3e:ac:fd:2e:83:e1:8d:a9:bf:ed:e5:2d:f1:6c:e9:1f:2e:69:a4:4d:21:f1:8a:b6:69:91:13:07:71
</key>
<key release="true">
fd:b0:0c:43:db:de:8b:51:cb:31:2a:a8:1d:3b:5f:a1:77:13:ad:b9:4b:28:f5:98:d7:7f:8e:b8:9d:ac:ee:df
</key>
</signature>
<signature
name="WearOS"
package="com.google.android.wearable.app">
<key release="false">
69:d0:72:16:9a:2c:6b:2f:5a:cc:59:0c:e4:33:a1:1a:c3:df:55:1a:df:ee:5d:5f:63:c0:83:b7:22:76:2e:19
</key>
<key release="true">
85:cd:59:73:54:1b:e6:f4:77:d8:47:a0:bc:c6:aa:25:27:68:4b:81:9c:d5:96:85:29:66:4c:b0:71:57:b6:fe
</key>
</signature>
<signature
name="Android Auto Simulator"
package="com.google.android.autosimulator">
<key release="true">
19:75:b2:f1:71:77:bc:89:a5:df:f3:1f:9e:64:a6:ca:e2:81:a5:3d:c1:d1:d5:9b:1d:14:7f:e1:c8:2a:fa:00
</key>
</signature>
<signature
name="Google"
package="com.google.android.googlequicksearchbox">
<key release="false">
19:75:b2:f1:71:77:bc:89:a5:df:f3:1f:9e:64:a6:ca:e2:81:a5:3d:c1:d1:d5:9b:1d:14:7f:e1:c8:2a:fa:00
</key>
<key release="true">
f0:fd:6c:5b:41:0f:25:cb:25:c3:b5:33:46:c8:97:2f:ae:30:f8:ee:74:11:df:91:04:80:ad:6b:2d:60:db:83
</key>
</signature>
<signature
name="Media Controller Tester"
package="com.example.android.mediacontroller">
<key>
7b:2a:46:f8:1e:cd:01:c0:b5:c7:bd:c9:9a:ca:6a:85:5b:f7:64:26:f5:4e:9a:d3:29:80:b1:da:41:76:63:e9
</key>
</signature>
</allowed_callers>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<automotiveApp>
<uses name="media" />
</automotiveApp>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
<!-- backup files from external storage -->
<include domain="external" />
</full-backup-content>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<data-extraction-rules>
<cloud-backup>
<!-- backup files from external storage -->
<include domain="external" />
</cloud-backup>
</data-extraction-rules>

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
<locale android:name="en" />
<locale android:name="ar" />
<locale android:name="bg" />
<locale android:name="cs" />
<locale android:name="de" />
<locale android:name="el" />
<locale android:name="fr" />
<locale android:name="hu" />
<locale android:name="it" />
<locale android:name="nl" />
<locale android:name="pl" />
<locale android:name="pt" />
<locale android:name="ru" />
<locale android:name="ro" />
<locale android:name="tr" />
<locale android:name="uk" />
<locale android:name="zh-rCN" />
</locale-config>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true">
<trust-anchors>
<certificates src="system" />
</trust-anchors>
</base-config>
</network-security-config>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<paths>
<external-files-path
name="my_images"
path="Android/data/com.michatec.urlradio/files/Pictures" />
<external-path
name="external_files"
path="." />
</paths>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:enabled="true"
android:icon="@drawable/ic_shortcut_play_circle_24dp"
android:shortcutDisabledMessage="@string/shortcut_last_station_disabled_message"
android:shortcutId="lastStation"
android:shortcutLongLabel="@string/shortcut_last_station_long_label"
android:shortcutShortLabel="@string/shortcut_last_station_short_label">
<intent
android:action="com.jamal2367.urlradio.action.START"
android:targetClass="com.michatec.radio.MainActivity"
android:targetPackage="com.michatec.radio">
<extra
android:name="START_LAST_PLAYED_STATION"
android:value="true" />
</intent>
<categories android:name="android.shortcut.conversation" />
</shortcut>
</shortcuts>