Allow third party apps to start TACNET server service

This commit is contained in:
2021-12-08 17:41:08 -06:00
parent cda2c90807
commit 525040fb33

View File

@@ -21,8 +21,14 @@
<service
android:name=".tacnet.TACNETServerService"
android:enabled="true"
android:exported="false"
android:permission="android.permission.WRITE_EXTERNAL_STORAGE" />
android:exported="true"
android:permission="android.permission.WRITE_EXTERNAL_STORAGE">
<intent-filter>
<action android:name="org.timecrafters.TimeCraftersConfigurationTool.tacnet.ACTION_START_SERVER" />
</intent-filter>
</service>
<service
android:name=".tacnet.TACNETConnectionService"
android:enabled="true"
@@ -30,6 +36,7 @@
android:permission="android.permission.WRITE_EXTERNAL_STORAGE"/>
<activity
android:exported="true"
android:name=".LauncherActivity"
android:label="@string/app_name">
<intent-filter>