mirror of
https://github.com/Cateners/tiny_computer.git
synced 2026-05-21 00:45:49 +08:00
80 lines
3.8 KiB
XML
80 lines
3.8 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<application
|
|
android:label="小小电脑"
|
|
android:name=".MainApplication"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:usesCleartextTraffic="true"
|
|
android:theme="@style/App.Theme">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true"
|
|
android:launchMode="singleTop"
|
|
android:theme="@style/LaunchTheme"
|
|
android:configChanges="navigation|orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
android:hardwareAccelerated="true"
|
|
android:windowSoftInputMode="adjustResize">
|
|
<!-- Specifies an Android theme to apply to this Activity as soon as
|
|
the Android process has started. This theme is visible to the user
|
|
while the Flutter UI initializes. After that, this theme continues
|
|
to determine the Window background behind the Flutter UI. -->
|
|
<meta-data
|
|
android:name="io.flutter.embedding.android.NormalTheme"
|
|
android:resource="@style/NormalTheme"
|
|
/>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.example.tiny_computer.Signal9Activity" />
|
|
<activity-alias
|
|
android:name="com.gaurav.avnc.UriReceiverActivity"
|
|
android:targetActivity="com.gaurav.avnc.ui.vnc.IntentReceiverActivity">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="vnc" />
|
|
</intent-filter>
|
|
</activity-alias>
|
|
<activity
|
|
android:name="com.gaurav.avnc.ui.vnc.VncActivity"
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
|
|
android:resizeableActivity="true"
|
|
android:supportsPictureInPicture="true"
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
<activity
|
|
android:name="com.gaurav.avnc.ui.vnc.IntentReceiverActivity"
|
|
android:theme="@style/App.SplashTheme.Dark" />
|
|
|
|
<activity android:name="com.gaurav.avnc.ui.prefs.PrefsActivity" />
|
|
<activity android:name="com.gaurav.avnc.ui.about.AboutActivity" />
|
|
<provider
|
|
android:name="com.example.tiny_computer.filepicker.TinyDocumentsProvider"
|
|
android:authorities="com.example.tiny_computer.documents"
|
|
android:exported="true"
|
|
android:grantUriPermissions="true"
|
|
android:permission="android.permission.MANAGE_DOCUMENTS">
|
|
<intent-filter>
|
|
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
|
|
</intent-filter>
|
|
</provider>
|
|
<!-- Don't delete the meta-data below.
|
|
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
|
<meta-data
|
|
android:name="flutterEmbedding"
|
|
android:value="2" />
|
|
</application>
|
|
</manifest>
|