Added ExportSettingsActivity

This commit is contained in:
Benjamin Halko
2023-09-26 16:21:46 -07:00
parent f1ea306291
commit d9d5b746c3
7 changed files with 181 additions and 100 deletions

View File

@@ -42,6 +42,22 @@
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name=".ExportSettingsActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"/>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<meta-data
android:name="flutterEmbedding"
android:value="2" />
@@ -54,10 +70,5 @@
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<provider
android:name=".utils.share.LegacySettingsProvider"
android:authorities="app.revanced.manager.flutter.provider"
android:exported="true">
</provider>
</application>
</manifest>