mobile bluesky app made with flutter lazurite.stormlightlabs.org/
mobile bluesky flutter
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

at ft/monetization 66 lines 3.4 kB view raw
1<manifest xmlns:android="http://schemas.android.com/apk/res/android"> 2 <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" /> 3 <uses-permission android:name="android.permission.READ_MEDIA_VIDEO" /> 4 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32" /> 5 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28" /> 6 <application 7 android:label="lazurite" 8 android:name="${applicationName}" 9 android:icon="@mipmap/ic_launcher"> 10 <activity 11 android:name=".MainActivity" 12 android:exported="true" 13 android:launchMode="singleTop" 14 android:taskAffinity="" 15 android:theme="@style/LaunchTheme" 16 android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" 17 android:hardwareAccelerated="true" 18 android:windowSoftInputMode="adjustResize"> 19 <!-- Specifies an Android theme to apply to this Activity as soon as 20 the Android process has started. This theme is visible to the user 21 while the Flutter UI initializes. After that, this theme continues 22 to determine the Window background behind the Flutter UI. --> 23 <meta-data 24 android:name="io.flutter.embedding.android.NormalTheme" 25 android:resource="@style/NormalTheme" 26 /> 27 <intent-filter> 28 <action android:name="android.intent.action.MAIN"/> 29 <category android:name="android.intent.category.LAUNCHER"/> 30 </intent-filter> 31 <intent-filter> 32 <action android:name="android.intent.action.VIEW" /> 33 34 <category android:name="android.intent.category.DEFAULT" /> 35 <category android:name="android.intent.category.BROWSABLE" /> 36 37 <data android:scheme="lazurite" android:host="auth-complete" /> 38 </intent-filter> 39 </activity> 40 <!-- Google Mobile Ads App ID --> 41 <meta-data 42 android:name="com.google.android.gms.ads.APPLICATION_ID" 43 android:value="ca-app-pub-3940256099942544~3347511713" /> 44 <!-- Don't delete the meta-data below. 45 This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> 46 <meta-data 47 android:name="flutterEmbedding" 48 android:value="2" /> 49 <!-- WorkManager background service for scheduled posts --> 50 <service 51 android:name="be.tramckrijte.workmanager.BackgroundWorker" 52 android:exported="false" 53 android:permission="android.permission.BIND_JOB_SERVICE" /> 54 </application> 55 <!-- Required to query activities that can process text, see: 56 https://developer.android.com/training/package-visibility and 57 https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT. 58 59 In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. --> 60 <queries> 61 <intent> 62 <action android:name="android.intent.action.PROCESS_TEXT"/> 63 <data android:mimeType="text/plain"/> 64 </intent> 65 </queries> 66</manifest>