nandi/frqpublic Fork 0
0addab351cf1ec0277ab8d7dcd083ed0d4e48383
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

AndroidManifest.xml · 49 lines · 2.4 KBXML Blame HistoryRaw
Build the APK, out of ClojureDart and Flutter e2b0e6b nandi 7d ago1<manifest xmlns:android="http://schemas.android.com/apk/res/android">
Reach irc.freeq.at over TLS from the phone e80514e nandi 7d ago2 <!-- The Flutter template declares this only in the debug manifest, where
3 it is there for the hot-reload VM service. frq is an IRC client: it
4 needs the network in a release build too. -->
5 <uses-permission android:name="android.permission.INTERNET"/>
Build the APK, out of ClojureDart and Flutter e2b0e6b nandi 7d ago6 <application
7 android:label="frq"
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 </activity>
32 <!-- Don't delete the meta-data below.
33 This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
34 <meta-data
35 android:name="flutterEmbedding"
36 android:value="2" />
37 </application>
38 <!-- Required to query activities that can process text, see:
39 https://developer.android.com/training/package-visibility and
40 https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
41
42 In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
43 <queries>
44 <intent>
45 <action android:name="android.intent.action.PROCESS_TEXT"/>
46 <data android:mimeType="text/plain"/>
47 </intent>
48 </queries>
49</manifest>