Remove excessive permissions

This commit is contained in:
pegasko 2024-06-24 00:40:42 +03:00
parent b5a869f177
commit fc2e255d31

View file

@ -3,9 +3,6 @@
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
@ -16,10 +13,6 @@
android:supportsRtl="true"
android:theme="@style/Theme.Yeeemp"
tools:targetApi="31">
<activity
android:name=".ui.activity.EventEditActivity"
android:theme="@style/Theme.Yeeemp.Red"
android:exported="false" />
<activity
android:name=".ui.activity.QueueListActivity"
android:exported="true"
@ -30,10 +23,14 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ui.activity.EventEditActivity"
android:theme="@style/Theme.Yeeemp.Red"
android:exported="false" />
<activity
android:name=".ui.activity.EventListActivity"
android:exported="false"
android:theme="@style/Theme.Yeeemp.Blue"></activity>
android:theme="@style/Theme.Yeeemp.Blue" />
</application>
</manifest>