From 7f5e8a0fd08bbf14dfca6eef67cc32abf79d2aa8 Mon Sep 17 00:00:00 2001 From: mavlonerkinboev Date: Sun, 1 Aug 2021 19:29:14 +0500 Subject: released --- android/app/src/debug/AndroidManifest.xml | 7 ++++ android/app/src/main/AndroidManifest.xml | 41 +++++++++++++++++++++ .../java/com/mavlondev/recipes/MainActivity.java | 6 +++ .../main/res/drawable-v21/launch_background.xml | 12 ++++++ .../src/main/res/drawable/launch_background.xml | 12 ++++++ .../app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 12117 bytes .../app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 5721 bytes .../app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 20956 bytes .../app/src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 45602 bytes .../src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 78159 bytes android/app/src/main/res/values-night/styles.xml | 18 +++++++++ android/app/src/main/res/values/styles.xml | 18 +++++++++ android/app/src/profile/AndroidManifest.xml | 7 ++++ 13 files changed, 121 insertions(+) create mode 100755 android/app/src/debug/AndroidManifest.xml create mode 100755 android/app/src/main/AndroidManifest.xml create mode 100755 android/app/src/main/java/com/mavlondev/recipes/MainActivity.java create mode 100755 android/app/src/main/res/drawable-v21/launch_background.xml create mode 100755 android/app/src/main/res/drawable/launch_background.xml create mode 100755 android/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100755 android/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100755 android/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100755 android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100755 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100755 android/app/src/main/res/values-night/styles.xml create mode 100755 android/app/src/main/res/values/styles.xml create mode 100755 android/app/src/profile/AndroidManifest.xml (limited to 'android/app/src') diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100755 index 0000000..77ed35c --- /dev/null +++ b/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100755 index 0000000..f326401 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + diff --git a/android/app/src/main/java/com/mavlondev/recipes/MainActivity.java b/android/app/src/main/java/com/mavlondev/recipes/MainActivity.java new file mode 100755 index 0000000..7eca14a --- /dev/null +++ b/android/app/src/main/java/com/mavlondev/recipes/MainActivity.java @@ -0,0 +1,6 @@ +package com.mavlondev.recipes; + +import io.flutter.embedding.android.FlutterActivity; + +public class MainActivity extends FlutterActivity { +} diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100755 index 0000000..f74085f --- /dev/null +++ b/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml new file mode 100755 index 0000000..304732f --- /dev/null +++ b/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100755 index 0000000..e9997a0 Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100755 index 0000000..f19d440 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100755 index 0000000..a90cb5d Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100755 index 0000000..100996d Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100755 index 0000000..6b6a257 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml new file mode 100755 index 0000000..449a9f9 --- /dev/null +++ b/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100755 index 0000000..d74aa35 --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml new file mode 100755 index 0000000..77ed35c --- /dev/null +++ b/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + -- cgit v1.2.3