Skip to content

Commit

Permalink
removed custom permission as that seems to work best, see GH issues #296
Browse files Browse the repository at this point in the history
 and #82
  • Loading branch information
wolpi committed Dec 11, 2023
1 parent 3fbe55a commit df40792
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions primitiveFTPd/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
<uses-feature android:name="android.software.leanback" android:required="false" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />

<!--
some docs say it would be mandatory to have custom permission
but users report it breaks stuff for them
<permission
android:name="org.primftpd.permission.WRITE_SERVER_STATUS"
android:label="@string/permWriteLabelServerstatus"
Expand All @@ -24,7 +27,7 @@
android:label="@string/permReadLabelServerstatus"
android:description="@string/permReadDescServerstatus"
android:protectionLevel="normal" />

-->

<!--
to enable adaptive icon use:
Expand Down Expand Up @@ -77,7 +80,7 @@
android:exported="true"
android:enabled="true"
android:process=":background"
android:permission="org.primftpd.permission.WRITE_SERVER_STATUS">
>
<intent-filter>
<action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING" />
</intent-filter>
Expand All @@ -88,7 +91,7 @@
android:exported="true"
android:enabled="true"
android:process=":background"
android:permission="org.primftpd.permission.READ_SERVER_STATUS">
>
<intent-filter>
<action android:name="com.twofortyfouram.locale.intent.action.QUERY_CONDITION" />
</intent-filter>
Expand Down

0 comments on commit df40792

Please sign in to comment.