first commit
1
untitled/android/app/src/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
6a35edbb-8b1a-4a48-928f-87725da1b22a
|
||||
1
untitled/android/app/src/debug/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
f7acc579-c89b-45d8-8467-eff117e61639
|
||||
7
untitled/android/app/src/debug/AndroidManifest.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.picture.peach">
|
||||
<!-- Flutter needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
</manifest>
|
||||
1
untitled/android/app/src/main/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
7ee06137-ba62-48a8-8ab0-b5a8a50326df
|
||||
74
untitled/android/app/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,74 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.picture.peach">
|
||||
|
||||
<!--允许程序写入外部存储-->
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<!--允许获取网络信息状态-->
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
<!--允许获取当前WiFi接入的状态以及WLAN热点的信息-->
|
||||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||||
<!--允许程序访问网络连接,可能产生GPRS流量-->
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<!--允许程序访问电话状态-->
|
||||
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||||
<!--允许应用程序读取设备外部存储空间的文件-->
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
<!--允许程序写入外部存储-->
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<!--安装app-->
|
||||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
||||
<!--允许挂载和反挂载外部文件系统可移动存储-->
|
||||
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
|
||||
<uses-permission android:name = "android.permission.SET_WALLPAPER"/>
|
||||
|
||||
<application
|
||||
android:label="屁桃儿"
|
||||
android:requestLegacyExternalStorage="true"
|
||||
android:icon="@mipmap/ic_launcher">
|
||||
<activity
|
||||
android:name="com.picture.peach.MainActivity"
|
||||
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">
|
||||
<!-- 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"
|
||||
/>
|
||||
<!-- Displays an Android View that continues showing the launch screen
|
||||
Drawable until Flutter paints its first frame, then this splash
|
||||
screen fades out. A splash screen is useful to avoid any visual
|
||||
gap between the end of Android's launch screen and the painting of
|
||||
Flutter's first frame. -->
|
||||
<meta-data
|
||||
android:name="io.flutter.embedding.android.SplashScreenDrawable"
|
||||
android:resource="@drawable/launch_background"
|
||||
/>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="android.intent.category.LAUNCHER"/>
|
||||
</intent-filter>
|
||||
|
||||
<!--通过浏览器Url启动app-->
|
||||
<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:host="openfile"
|
||||
android:scheme="mitao" />
|
||||
</intent-filter>
|
||||
|
||||
</activity>
|
||||
<!-- 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>
|
||||
1
untitled/android/app/src/main/java/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
83c50025-5742-4f97-aa6f-a6ad16d6cfbb
|
||||
1
untitled/android/app/src/main/java/com/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
42ef3096-4d7f-4f3b-b679-ad780a063666
|
||||
1
untitled/android/app/src/main/java/com/picture/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
fc5e47d9-0e33-4230-8a2f-eae7a237771d
|
||||
@@ -0,0 +1 @@
|
||||
ddee1f3e-f490-4c48-9cc1-381069fec57f
|
||||
@@ -0,0 +1,6 @@
|
||||
package com.picture.peach;
|
||||
|
||||
import io.flutter.embedding.android.FlutterActivity;
|
||||
|
||||
public class MainActivity extends FlutterActivity {
|
||||
}
|
||||
1
untitled/android/app/src/main/java/io/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
41221280-e881-4615-a939-1fd6da4ed244
|
||||
1
untitled/android/app/src/main/java/io/flutter/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
b7b0de61-76c4-40a6-8682-5393d2107d7f
|
||||
@@ -0,0 +1 @@
|
||||
a4c3f563-072c-49c7-bc92-daf483c16746
|
||||
1
untitled/android/app/src/main/kotlin/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
5a85048e-9142-48ae-98ba-449116abca94
|
||||
1
untitled/android/app/src/main/kotlin/com/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
18ae3e25-e8d7-4fd8-b304-5b3ee859c9fd
|
||||
1
untitled/android/app/src/main/kotlin/com/example/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
3bd2169c-0756-435e-a5e3-406c62fd96ab
|
||||
@@ -0,0 +1 @@
|
||||
bffec605-3db9-4a2c-b58a-f153253fc92f
|
||||
@@ -0,0 +1,6 @@
|
||||
package com.example.untitled
|
||||
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
|
||||
class MainActivity: FlutterActivity() {
|
||||
}
|
||||
1
untitled/android/app/src/main/res/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
356cdbef-b52a-4080-93c8-f8b1b6ae21cf
|
||||
1
untitled/android/app/src/main/res/drawable-v21/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
994a5296-0a26-43f6-a673-5671e7928604
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Modify this file to customize your launch splash screen -->
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="?android:colorBackground" />
|
||||
|
||||
<!-- You can insert your own image assets here -->
|
||||
<!-- <item>
|
||||
<bitmap
|
||||
android:gravity="center"
|
||||
android:src="@mipmap/launch_image" />
|
||||
</item> -->
|
||||
</layer-list>
|
||||
1
untitled/android/app/src/main/res/drawable/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
1c5257fb-f306-44d9-9a16-d92a0b5e3daa
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Modify this file to customize your launch splash screen -->
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@android:color/white" />
|
||||
|
||||
<!-- You can insert your own image assets here -->
|
||||
<!-- <item>
|
||||
<bitmap
|
||||
android:gravity="center"
|
||||
android:src="@mipmap/launch_image" />
|
||||
</item> -->
|
||||
</layer-list>
|
||||
1
untitled/android/app/src/main/res/mipmap-hdpi/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
e9fc3ffa-d76b-44b5-abdd-115e1c88d3ec
|
||||
BIN
untitled/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
1
untitled/android/app/src/main/res/mipmap-mdpi/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
13ae13a7-184e-4edb-944d-6457662cdb2d
|
||||
BIN
untitled/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
1
untitled/android/app/src/main/res/mipmap-xhdpi/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
dae6e027-be46-48cd-8237-46af65abb254
|
||||
BIN
untitled/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
1
untitled/android/app/src/main/res/mipmap-xxhdpi/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
d5e93dbd-9008-46c4-82c2-2cb7a5590ca5
|
||||
BIN
untitled/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
1
untitled/android/app/src/main/res/mipmap-xxxhdpi/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
c7dc325d-5b88-4976-abb5-bf7af8354548
|
||||
BIN
untitled/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
1
untitled/android/app/src/main/res/values-night/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
48678e93-4c3c-49d6-b1d8-f2f5678257da
|
||||
18
untitled/android/app/src/main/res/values-night/styles.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
||||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||
<!-- Show a splash screen on the activity. Automatically removed when
|
||||
Flutter draws its first frame -->
|
||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||
</style>
|
||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||
This theme determines the color of the Android Window while your
|
||||
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||
running.
|
||||
|
||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||
<item name="android:windowBackground">?android:colorBackground</item>
|
||||
</style>
|
||||
</resources>
|
||||
1
untitled/android/app/src/main/res/values/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
3a29f427-76ed-46f1-817f-cb1128154e56
|
||||
18
untitled/android/app/src/main/res/values/styles.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||
<!-- Show a splash screen on the activity. Automatically removed when
|
||||
Flutter draws its first frame -->
|
||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||
</style>
|
||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||
This theme determines the color of the Android Window while your
|
||||
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||
running.
|
||||
|
||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||
<item name="android:windowBackground">?android:colorBackground</item>
|
||||
</style>
|
||||
</resources>
|
||||
1
untitled/android/app/src/main/res/xml/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
ab0e21c2-2621-43b1-a91a-ab9e366a808c
|
||||
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<network-security-config>
|
||||
<base-config cleartextTrafficPermitted="true" />
|
||||
</network-security-config>
|
||||
1
untitled/android/app/src/profile/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
d1bea652-4cc7-4d60-a270-890185b50e9d
|
||||
7
untitled/android/app/src/profile/AndroidManifest.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.picture.peach">
|
||||
<!-- Flutter needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
</manifest>
|
||||