Spaces:
Sleeping
Sleeping
Initial deploy via assistant API
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- admin-app/.gitignore +24 -0
- admin-app/README.md +16 -0
- admin-app/android/.gitignore +101 -0
- admin-app/android/.gradle/8.14.3/checksums/checksums.lock +0 -0
- admin-app/android/.gradle/8.14.3/fileChanges/last-build.bin +3 -0
- admin-app/android/.gradle/8.14.3/fileHashes/fileHashes.lock +0 -0
- admin-app/android/.gradle/8.14.3/gc.properties +0 -0
- admin-app/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- admin-app/android/.gradle/buildOutputCleanup/cache.properties +2 -0
- admin-app/android/.gradle/vcs-1/gc.properties +0 -0
- admin-app/android/app/.gitignore +2 -0
- admin-app/android/app/build.gradle +54 -0
- admin-app/android/app/build/.npmkeep +0 -0
- admin-app/android/app/capacitor.build.gradle +19 -0
- admin-app/android/app/proguard-rules.pro +21 -0
- admin-app/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java +26 -0
- admin-app/android/app/src/main/AndroidManifest.xml +41 -0
- admin-app/android/app/src/main/assets/capacitor.config.json +5 -0
- admin-app/android/app/src/main/assets/capacitor.plugins.json +1 -0
- admin-app/android/app/src/main/assets/public/assets/index-BV84xLdW.css +1 -0
- admin-app/android/app/src/main/assets/public/assets/index-BkRR8uCM.js +0 -0
- admin-app/android/app/src/main/assets/public/cordova.js +0 -0
- admin-app/android/app/src/main/assets/public/cordova_plugins.js +0 -0
- admin-app/android/app/src/main/assets/public/index.html +14 -0
- admin-app/android/app/src/main/assets/public/vite.svg +1 -0
- admin-app/android/app/src/main/java/com/mtextile/admin/MainActivity.java +5 -0
- admin-app/android/app/src/main/res/drawable-land-hdpi/splash.png +0 -0
- admin-app/android/app/src/main/res/drawable-land-mdpi/splash.png +0 -0
- admin-app/android/app/src/main/res/drawable-land-xhdpi/splash.png +0 -0
- admin-app/android/app/src/main/res/drawable-land-xxhdpi/splash.png +0 -0
- admin-app/android/app/src/main/res/drawable-land-xxxhdpi/splash.png +0 -0
- admin-app/android/app/src/main/res/drawable-port-hdpi/splash.png +0 -0
- admin-app/android/app/src/main/res/drawable-port-mdpi/splash.png +0 -0
- admin-app/android/app/src/main/res/drawable-port-xhdpi/splash.png +0 -0
- admin-app/android/app/src/main/res/drawable-port-xxhdpi/splash.png +0 -0
- admin-app/android/app/src/main/res/drawable-port-xxxhdpi/splash.png +0 -0
- admin-app/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +34 -0
- admin-app/android/app/src/main/res/drawable/ic_launcher_background.xml +170 -0
- admin-app/android/app/src/main/res/drawable/splash.png +0 -0
- admin-app/android/app/src/main/res/layout/activity_main.xml +12 -0
- admin-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
- admin-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
- admin-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- admin-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- admin-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- admin-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- admin-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- admin-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- admin-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- admin-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
admin-app/.gitignore
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Logs
|
| 2 |
+
logs
|
| 3 |
+
*.log
|
| 4 |
+
npm-debug.log*
|
| 5 |
+
yarn-debug.log*
|
| 6 |
+
yarn-error.log*
|
| 7 |
+
pnpm-debug.log*
|
| 8 |
+
lerna-debug.log*
|
| 9 |
+
|
| 10 |
+
node_modules
|
| 11 |
+
dist
|
| 12 |
+
dist-ssr
|
| 13 |
+
*.local
|
| 14 |
+
|
| 15 |
+
# Editor directories and files
|
| 16 |
+
.vscode/*
|
| 17 |
+
!.vscode/extensions.json
|
| 18 |
+
.idea
|
| 19 |
+
.DS_Store
|
| 20 |
+
*.suo
|
| 21 |
+
*.ntvs*
|
| 22 |
+
*.njsproj
|
| 23 |
+
*.sln
|
| 24 |
+
*.sw?
|
admin-app/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# React + Vite
|
| 2 |
+
|
| 3 |
+
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
| 4 |
+
|
| 5 |
+
Currently, two official plugins are available:
|
| 6 |
+
|
| 7 |
+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh
|
| 8 |
+
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
| 9 |
+
|
| 10 |
+
## React Compiler
|
| 11 |
+
|
| 12 |
+
The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
|
| 13 |
+
|
| 14 |
+
## Expanding the ESLint configuration
|
| 15 |
+
|
| 16 |
+
If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
|
admin-app/android/.gitignore
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Using Android gitignore template: https://github.com/github/gitignore/blob/HEAD/Android.gitignore
|
| 2 |
+
|
| 3 |
+
# Built application files
|
| 4 |
+
*.apk
|
| 5 |
+
*.aar
|
| 6 |
+
*.ap_
|
| 7 |
+
*.aab
|
| 8 |
+
|
| 9 |
+
# Files for the ART/Dalvik VM
|
| 10 |
+
*.dex
|
| 11 |
+
|
| 12 |
+
# Java class files
|
| 13 |
+
*.class
|
| 14 |
+
|
| 15 |
+
# Generated files
|
| 16 |
+
bin/
|
| 17 |
+
gen/
|
| 18 |
+
out/
|
| 19 |
+
# Uncomment the following line in case you need and you don't have the release build type files in your app
|
| 20 |
+
# release/
|
| 21 |
+
|
| 22 |
+
# Gradle files
|
| 23 |
+
.gradle/
|
| 24 |
+
build/
|
| 25 |
+
|
| 26 |
+
# Local configuration file (sdk path, etc)
|
| 27 |
+
local.properties
|
| 28 |
+
|
| 29 |
+
# Proguard folder generated by Eclipse
|
| 30 |
+
proguard/
|
| 31 |
+
|
| 32 |
+
# Log Files
|
| 33 |
+
*.log
|
| 34 |
+
|
| 35 |
+
# Android Studio Navigation editor temp files
|
| 36 |
+
.navigation/
|
| 37 |
+
|
| 38 |
+
# Android Studio captures folder
|
| 39 |
+
captures/
|
| 40 |
+
|
| 41 |
+
# IntelliJ
|
| 42 |
+
*.iml
|
| 43 |
+
.idea/workspace.xml
|
| 44 |
+
.idea/tasks.xml
|
| 45 |
+
.idea/gradle.xml
|
| 46 |
+
.idea/assetWizardSettings.xml
|
| 47 |
+
.idea/dictionaries
|
| 48 |
+
.idea/libraries
|
| 49 |
+
# Android Studio 3 in .gitignore file.
|
| 50 |
+
.idea/caches
|
| 51 |
+
.idea/modules.xml
|
| 52 |
+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
|
| 53 |
+
.idea/navEditor.xml
|
| 54 |
+
|
| 55 |
+
# Keystore files
|
| 56 |
+
# Uncomment the following lines if you do not want to check your keystore files in.
|
| 57 |
+
#*.jks
|
| 58 |
+
#*.keystore
|
| 59 |
+
|
| 60 |
+
# External native build folder generated in Android Studio 2.2 and later
|
| 61 |
+
.externalNativeBuild
|
| 62 |
+
.cxx/
|
| 63 |
+
|
| 64 |
+
# Google Services (e.g. APIs or Firebase)
|
| 65 |
+
# google-services.json
|
| 66 |
+
|
| 67 |
+
# Freeline
|
| 68 |
+
freeline.py
|
| 69 |
+
freeline/
|
| 70 |
+
freeline_project_description.json
|
| 71 |
+
|
| 72 |
+
# fastlane
|
| 73 |
+
fastlane/report.xml
|
| 74 |
+
fastlane/Preview.html
|
| 75 |
+
fastlane/screenshots
|
| 76 |
+
fastlane/test_output
|
| 77 |
+
fastlane/readme.md
|
| 78 |
+
|
| 79 |
+
# Version control
|
| 80 |
+
vcs.xml
|
| 81 |
+
|
| 82 |
+
# lint
|
| 83 |
+
lint/intermediates/
|
| 84 |
+
lint/generated/
|
| 85 |
+
lint/outputs/
|
| 86 |
+
lint/tmp/
|
| 87 |
+
# lint/reports/
|
| 88 |
+
|
| 89 |
+
# Android Profiling
|
| 90 |
+
*.hprof
|
| 91 |
+
|
| 92 |
+
# Cordova plugins for Capacitor
|
| 93 |
+
capacitor-cordova-android-plugins
|
| 94 |
+
|
| 95 |
+
# Copied web assets
|
| 96 |
+
app/src/main/assets/public
|
| 97 |
+
|
| 98 |
+
# Generated Config files
|
| 99 |
+
app/src/main/assets/capacitor.config.json
|
| 100 |
+
app/src/main/assets/capacitor.plugins.json
|
| 101 |
+
app/src/main/res/xml/config.xml
|
admin-app/android/.gradle/8.14.3/checksums/checksums.lock
ADDED
|
Binary file (17 Bytes). View file
|
|
|
admin-app/android/.gradle/8.14.3/fileChanges/last-build.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d
|
| 3 |
+
size 1
|
admin-app/android/.gradle/8.14.3/fileHashes/fileHashes.lock
ADDED
|
Binary file (17 Bytes). View file
|
|
|
admin-app/android/.gradle/8.14.3/gc.properties
ADDED
|
File without changes
|
admin-app/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock
ADDED
|
Binary file (17 Bytes). View file
|
|
|
admin-app/android/.gradle/buildOutputCleanup/cache.properties
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#Mon Mar 02 22:35:17 UZT 2026
|
| 2 |
+
gradle.version=8.14.3
|
admin-app/android/.gradle/vcs-1/gc.properties
ADDED
|
File without changes
|
admin-app/android/app/.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/build/*
|
| 2 |
+
!/build/.npmkeep
|
admin-app/android/app/build.gradle
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
apply plugin: 'com.android.application'
|
| 2 |
+
|
| 3 |
+
android {
|
| 4 |
+
namespace = "com.mtextile.admin"
|
| 5 |
+
compileSdk = rootProject.ext.compileSdkVersion
|
| 6 |
+
defaultConfig {
|
| 7 |
+
applicationId "com.mtextile.admin"
|
| 8 |
+
minSdkVersion rootProject.ext.minSdkVersion
|
| 9 |
+
targetSdkVersion rootProject.ext.targetSdkVersion
|
| 10 |
+
versionCode 1
|
| 11 |
+
versionName "1.0"
|
| 12 |
+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
| 13 |
+
aaptOptions {
|
| 14 |
+
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
|
| 15 |
+
// Default: https://android.googlesource.com/platform/frameworks/base/+/282e181b58cf72b6ca770dc7ca5f91f135444502/tools/aapt/AaptAssets.cpp#61
|
| 16 |
+
ignoreAssetsPattern = '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~'
|
| 17 |
+
}
|
| 18 |
+
}
|
| 19 |
+
buildTypes {
|
| 20 |
+
release {
|
| 21 |
+
minifyEnabled false
|
| 22 |
+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
| 23 |
+
}
|
| 24 |
+
}
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
repositories {
|
| 28 |
+
flatDir{
|
| 29 |
+
dirs '../capacitor-cordova-android-plugins/src/main/libs', 'libs'
|
| 30 |
+
}
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
dependencies {
|
| 34 |
+
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
| 35 |
+
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
|
| 36 |
+
implementation "androidx.coordinatorlayout:coordinatorlayout:$androidxCoordinatorLayoutVersion"
|
| 37 |
+
implementation "androidx.core:core-splashscreen:$coreSplashScreenVersion"
|
| 38 |
+
implementation project(':capacitor-android')
|
| 39 |
+
testImplementation "junit:junit:$junitVersion"
|
| 40 |
+
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
|
| 41 |
+
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
|
| 42 |
+
implementation project(':capacitor-cordova-android-plugins')
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
+
apply from: 'capacitor.build.gradle'
|
| 46 |
+
|
| 47 |
+
try {
|
| 48 |
+
def servicesJSON = file('google-services.json')
|
| 49 |
+
if (servicesJSON.text) {
|
| 50 |
+
apply plugin: 'com.google.gms.google-services'
|
| 51 |
+
}
|
| 52 |
+
} catch(Exception e) {
|
| 53 |
+
logger.info("google-services.json not found, google-services plugin not applied. Push Notifications won't work")
|
| 54 |
+
}
|
admin-app/android/app/build/.npmkeep
ADDED
|
File without changes
|
admin-app/android/app/capacitor.build.gradle
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
|
| 2 |
+
|
| 3 |
+
android {
|
| 4 |
+
compileOptions {
|
| 5 |
+
sourceCompatibility JavaVersion.VERSION_21
|
| 6 |
+
targetCompatibility JavaVersion.VERSION_21
|
| 7 |
+
}
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
|
| 11 |
+
dependencies {
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
if (hasProperty('postBuildExtras')) {
|
| 18 |
+
postBuildExtras()
|
| 19 |
+
}
|
admin-app/android/app/proguard-rules.pro
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Add project specific ProGuard rules here.
|
| 2 |
+
# You can control the set of applied configuration files using the
|
| 3 |
+
# proguardFiles setting in build.gradle.
|
| 4 |
+
#
|
| 5 |
+
# For more details, see
|
| 6 |
+
# http://developer.android.com/guide/developing/tools/proguard.html
|
| 7 |
+
|
| 8 |
+
# If your project uses WebView with JS, uncomment the following
|
| 9 |
+
# and specify the fully qualified class name to the JavaScript interface
|
| 10 |
+
# class:
|
| 11 |
+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
| 12 |
+
# public *;
|
| 13 |
+
#}
|
| 14 |
+
|
| 15 |
+
# Uncomment this to preserve the line number information for
|
| 16 |
+
# debugging stack traces.
|
| 17 |
+
#-keepattributes SourceFile,LineNumberTable
|
| 18 |
+
|
| 19 |
+
# If you keep the line number information, uncomment this to
|
| 20 |
+
# hide the original source file name.
|
| 21 |
+
#-renamesourcefileattribute SourceFile
|
admin-app/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
package com.getcapacitor.myapp;
|
| 2 |
+
|
| 3 |
+
import static org.junit.Assert.*;
|
| 4 |
+
|
| 5 |
+
import android.content.Context;
|
| 6 |
+
import androidx.test.ext.junit.runners.AndroidJUnit4;
|
| 7 |
+
import androidx.test.platform.app.InstrumentationRegistry;
|
| 8 |
+
import org.junit.Test;
|
| 9 |
+
import org.junit.runner.RunWith;
|
| 10 |
+
|
| 11 |
+
/**
|
| 12 |
+
* Instrumented test, which will execute on an Android device.
|
| 13 |
+
*
|
| 14 |
+
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
|
| 15 |
+
*/
|
| 16 |
+
@RunWith(AndroidJUnit4.class)
|
| 17 |
+
public class ExampleInstrumentedTest {
|
| 18 |
+
|
| 19 |
+
@Test
|
| 20 |
+
public void useAppContext() throws Exception {
|
| 21 |
+
// Context of the app under test.
|
| 22 |
+
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
|
| 23 |
+
|
| 24 |
+
assertEquals("com.getcapacitor.app", appContext.getPackageName());
|
| 25 |
+
}
|
| 26 |
+
}
|
admin-app/android/app/src/main/AndroidManifest.xml
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
| 2 |
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
| 3 |
+
|
| 4 |
+
<application
|
| 5 |
+
android:allowBackup="true"
|
| 6 |
+
android:icon="@mipmap/ic_launcher"
|
| 7 |
+
android:label="@string/app_name"
|
| 8 |
+
android:roundIcon="@mipmap/ic_launcher_round"
|
| 9 |
+
android:supportsRtl="true"
|
| 10 |
+
android:theme="@style/AppTheme">
|
| 11 |
+
|
| 12 |
+
<activity
|
| 13 |
+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation|density"
|
| 14 |
+
android:name=".MainActivity"
|
| 15 |
+
android:label="@string/title_activity_main"
|
| 16 |
+
android:theme="@style/AppTheme.NoActionBarLaunch"
|
| 17 |
+
android:launchMode="singleTask"
|
| 18 |
+
android:exported="true">
|
| 19 |
+
|
| 20 |
+
<intent-filter>
|
| 21 |
+
<action android:name="android.intent.action.MAIN" />
|
| 22 |
+
<category android:name="android.intent.category.LAUNCHER" />
|
| 23 |
+
</intent-filter>
|
| 24 |
+
|
| 25 |
+
</activity>
|
| 26 |
+
|
| 27 |
+
<provider
|
| 28 |
+
android:name="androidx.core.content.FileProvider"
|
| 29 |
+
android:authorities="${applicationId}.fileprovider"
|
| 30 |
+
android:exported="false"
|
| 31 |
+
android:grantUriPermissions="true">
|
| 32 |
+
<meta-data
|
| 33 |
+
android:name="android.support.FILE_PROVIDER_PATHS"
|
| 34 |
+
android:resource="@xml/file_paths"></meta-data>
|
| 35 |
+
</provider>
|
| 36 |
+
</application>
|
| 37 |
+
|
| 38 |
+
<!-- Permissions -->
|
| 39 |
+
|
| 40 |
+
<uses-permission android:name="android.permission.INTERNET" />
|
| 41 |
+
</manifest>
|
admin-app/android/app/src/main/assets/capacitor.config.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"appId": "com.mtextile.admin",
|
| 3 |
+
"appName": "M-TEXTILE Admin",
|
| 4 |
+
"webDir": "dist"
|
| 5 |
+
}
|
admin-app/android/app/src/main/assets/capacitor.plugins.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
[]
|
admin-app/android/app/src/main/assets/public/assets/index-BV84xLdW.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
@layer properties{@supports ((-webkit-hyphens:none) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-divide-y-reverse:0;--tw-border-style:solid;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial}}}@layer theme{:root,:host{--font-sans:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--color-red-300:oklch(80.8% .114 19.571);--color-red-400:oklch(70.4% .191 22.216);--color-red-500:oklch(63.7% .237 25.331);--color-yellow-500:oklch(79.5% .184 86.047);--color-green-500:oklch(72.3% .219 149.579);--color-blue-300:oklch(80.9% .105 251.813);--color-blue-400:oklch(70.7% .165 254.624);--color-blue-500:oklch(62.3% .214 259.815);--color-blue-600:oklch(54.6% .245 262.881);--color-gray-100:oklch(96.7% .003 264.542);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-500:oklch(55.1% .027 264.364);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-800:oklch(27.8% .033 256.848);--color-gray-900:oklch(21% .034 264.665);--color-gray-950:oklch(13% .028 261.692);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-sm:24rem;--container-2xl:42rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-xl:1.25rem;--text-xl--line-height:calc(1.75 / 1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--font-weight-medium:500;--font-weight-bold:700;--tracking-wider:.05em;--radius-md:.375rem;--radius-lg:.5rem;--radius-2xl:1rem;--ease-in-out:cubic-bezier(.4, 0, .2, 1);--animate-pulse:pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;--blur-sm:8px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::-moz-placeholder{opacity:1}::placeholder{opacity:1}@supports (not (-webkit-appearance:-apple-pay-button)) or (contain-intrinsic-size:1px){::-moz-placeholder{color:currentColor}::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::-moz-placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.absolute{position:absolute}.fixed{position:fixed}.static{position:static}.inset-0{inset:calc(var(--spacing) * 0)}.inset-y-0{inset-block:calc(var(--spacing) * 0)}.start{inset-inline-start:var(--spacing)}.top-0{top:calc(var(--spacing) * 0)}.right-0{right:calc(var(--spacing) * 0)}.bottom-0{bottom:calc(var(--spacing) * 0)}.left-0{left:calc(var(--spacing) * 0)}.z-0{z-index:0}.z-10{z-index:10}.z-20{z-index:20}.mx-auto{margin-inline:auto}.mt-0\.5{margin-top:calc(var(--spacing) * .5)}.mt-1{margin-top:calc(var(--spacing) * 1)}.mt-2{margin-top:calc(var(--spacing) * 2)}.mb-1{margin-bottom:calc(var(--spacing) * 1)}.mb-2{margin-bottom:calc(var(--spacing) * 2)}.mb-4{margin-bottom:calc(var(--spacing) * 4)}.mb-6{margin-bottom:calc(var(--spacing) * 6)}.line-clamp-1{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-flex{display:inline-flex}.h-8{height:calc(var(--spacing) * 8)}.h-10{height:calc(var(--spacing) * 10)}.h-16{height:calc(var(--spacing) * 16)}.h-full{height:100%}.min-h-screen{min-height:100vh}.w-8{width:calc(var(--spacing) * 8)}.w-10{width:calc(var(--spacing) * 10)}.w-12{width:calc(var(--spacing) * 12)}.w-16{width:calc(var(--spacing) * 16)}.w-64{width:calc(var(--spacing) * 64)}.w-full{width:100%}.max-w-2xl{max-width:var(--container-2xl)}.max-w-max{max-width:-moz-max-content;max-width:max-content}.max-w-sm{max-width:var(--container-sm)}.flex-1{flex:1}.shrink-0{flex-shrink:0}.-translate-x-full{--tw-translate-x:-100%;translate:var(--tw-translate-x) var(--tw-translate-y)}.translate-x-0{--tw-translate-x:calc(var(--spacing) * 0);translate:var(--tw-translate-x) var(--tw-translate-y)}.transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse)}.resize-none{resize:none}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-1{gap:calc(var(--spacing) * 1)}.gap-2{gap:calc(var(--spacing) * 2)}.gap-3{gap:calc(var(--spacing) * 3)}.gap-4{gap:calc(var(--spacing) * 4)}.gap-6{gap:calc(var(--spacing) * 6)}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)))}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px * var(--tw-divide-y-reverse));border-bottom-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)))}:where(.divide-gray-800\/50>:not(:last-child)){border-color:#1e293980}@supports (color:color-mix(in lab,red,red)){:where(.divide-gray-800\/50>:not(:last-child)){border-color:color-mix(in oklab,var(--color-gray-800) 50%,transparent)}}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-gray-800{border-color:var(--color-gray-800)}.border-gray-800\/50{border-color:#1e293980}@supports (color:color-mix(in lab,red,red)){.border-gray-800\/50{border-color:color-mix(in oklab,var(--color-gray-800) 50%,transparent)}}.border-green-500\/20{border-color:#00c75833}@supports (color:color-mix(in lab,red,red)){.border-green-500\/20{border-color:color-mix(in oklab,var(--color-green-500) 20%,transparent)}}.border-green-500\/30{border-color:#00c7584d}@supports (color:color-mix(in lab,red,red)){.border-green-500\/30{border-color:color-mix(in oklab,var(--color-green-500) 30%,transparent)}}.border-red-500\/20{border-color:#fb2c3633}@supports (color:color-mix(in lab,red,red)){.border-red-500\/20{border-color:color-mix(in oklab,var(--color-red-500) 20%,transparent)}}.border-red-500\/30{border-color:#fb2c364d}@supports (color:color-mix(in lab,red,red)){.border-red-500\/30{border-color:color-mix(in oklab,var(--color-red-500) 30%,transparent)}}.border-red-500\/50{border-color:#fb2c3680}@supports (color:color-mix(in lab,red,red)){.border-red-500\/50{border-color:color-mix(in oklab,var(--color-red-500) 50%,transparent)}}.border-yellow-500\/20{border-color:#edb20033}@supports (color:color-mix(in lab,red,red)){.border-yellow-500\/20{border-color:color-mix(in oklab,var(--color-yellow-500) 20%,transparent)}}.border-yellow-500\/30{border-color:#edb2004d}@supports (color:color-mix(in lab,red,red)){.border-yellow-500\/30{border-color:color-mix(in oklab,var(--color-yellow-500) 30%,transparent)}}.bg-black\/50{background-color:#00000080}@supports (color:color-mix(in lab,red,red)){.bg-black\/50{background-color:color-mix(in oklab,var(--color-black) 50%,transparent)}}.bg-blue-500\/10{background-color:#3080ff1a}@supports (color:color-mix(in lab,red,red)){.bg-blue-500\/10{background-color:color-mix(in oklab,var(--color-blue-500) 10%,transparent)}}.bg-blue-600{background-color:var(--color-blue-600)}.bg-blue-600\/10{background-color:#155dfc1a}@supports (color:color-mix(in lab,red,red)){.bg-blue-600\/10{background-color:color-mix(in oklab,var(--color-blue-600) 10%,transparent)}}.bg-blue-600\/20{background-color:#155dfc33}@supports (color:color-mix(in lab,red,red)){.bg-blue-600\/20{background-color:color-mix(in oklab,var(--color-blue-600) 20%,transparent)}}.bg-gray-800{background-color:var(--color-gray-800)}.bg-gray-900{background-color:var(--color-gray-900)}.bg-gray-900\/50{background-color:#10182880}@supports (color:color-mix(in lab,red,red)){.bg-gray-900\/50{background-color:color-mix(in oklab,var(--color-gray-900) 50%,transparent)}}.bg-gray-950{background-color:var(--color-gray-950)}.bg-green-500\/10{background-color:#00c7581a}@supports (color:color-mix(in lab,red,red)){.bg-green-500\/10{background-color:color-mix(in oklab,var(--color-green-500) 10%,transparent)}}.bg-red-500\/10{background-color:#fb2c361a}@supports (color:color-mix(in lab,red,red)){.bg-red-500\/10{background-color:color-mix(in oklab,var(--color-red-500) 10%,transparent)}}.bg-yellow-500\/10{background-color:#edb2001a}@supports (color:color-mix(in lab,red,red)){.bg-yellow-500\/10{background-color:color-mix(in oklab,var(--color-yellow-500) 10%,transparent)}}.object-cover{-o-object-fit:cover;object-fit:cover}.p-2{padding:calc(var(--spacing) * 2)}.p-3{padding:calc(var(--spacing) * 3)}.p-4{padding:calc(var(--spacing) * 4)}.p-6{padding:calc(var(--spacing) * 6)}.p-8{padding:calc(var(--spacing) * 8)}.px-2\.5{padding-inline:calc(var(--spacing) * 2.5)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-4{padding-inline:calc(var(--spacing) * 4)}.px-6{padding-inline:calc(var(--spacing) * 6)}.py-1{padding-block:calc(var(--spacing) * 1)}.py-2{padding-block:calc(var(--spacing) * 2)}.py-3{padding-block:calc(var(--spacing) * 3)}.py-4{padding-block:calc(var(--spacing) * 4)}.py-6{padding-block:calc(var(--spacing) * 6)}.py-8{padding-block:calc(var(--spacing) * 8)}.py-12{padding-block:calc(var(--spacing) * 12)}.pt-4{padding-top:calc(var(--spacing) * 4)}.pt-16{padding-top:calc(var(--spacing) * 16)}.text-center{text-align:center}.text-left{text-align:left}.font-mono{font-family:var(--font-mono)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.text-blue-400{color:var(--color-blue-400)}.text-blue-500{color:var(--color-blue-500)}.text-gray-100{color:var(--color-gray-100)}.text-gray-300{color:var(--color-gray-300)}.text-gray-400{color:var(--color-gray-400)}.text-gray-500{color:var(--color-gray-500)}.text-green-500{color:var(--color-green-500)}.text-red-400{color:var(--color-red-400)}.text-red-500{color:var(--color-red-500)}.text-white{color:var(--color-white)}.text-yellow-500{color:var(--color-yellow-500)}.capitalize{text-transform:capitalize}.uppercase{text-transform:uppercase}.line-through{text-decoration-line:line-through}.placeholder-gray-600::-moz-placeholder{color:var(--color-gray-600)}.placeholder-gray-600::placeholder{color:var(--color-gray-600)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a), 0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.backdrop-blur-sm{--tw-backdrop-blur:blur(var(--blur-sm));-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.outline-none{--tw-outline-style:none;outline-style:none}@media(hover:hover){.hover\:bg-blue-500:hover{background-color:var(--color-blue-500)}.hover\:bg-blue-500\/10:hover{background-color:#3080ff1a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-blue-500\/10:hover{background-color:color-mix(in oklab,var(--color-blue-500) 10%,transparent)}}.hover\:bg-gray-800:hover{background-color:var(--color-gray-800)}.hover\:bg-gray-800\/20:hover{background-color:#1e293933}@supports (color:color-mix(in lab,red,red)){.hover\:bg-gray-800\/20:hover{background-color:color-mix(in oklab,var(--color-gray-800) 20%,transparent)}}.hover\:bg-red-500\/10:hover{background-color:#fb2c361a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-red-500\/10:hover{background-color:color-mix(in oklab,var(--color-red-500) 10%,transparent)}}.hover\:text-blue-300:hover{color:var(--color-blue-300)}.hover\:text-blue-400:hover{color:var(--color-blue-400)}.hover\:text-red-300:hover{color:var(--color-red-300)}.hover\:text-red-500:hover{color:var(--color-red-500)}.hover\:text-white:hover{color:var(--color-white)}.hover\:underline:hover{text-decoration-line:underline}}.focus\:border-blue-500:focus{border-color:var(--color-blue-500)}.focus\:ring-1:focus{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-blue-500:focus{--tw-ring-color:var(--color-blue-500)}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}@media(min-width:40rem){.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}}@media(min-width:48rem){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(min-width:64rem){.lg\:ml-64{margin-left:calc(var(--spacing) * 64)}.lg\:flex{display:flex}.lg\:hidden{display:none}.lg\:translate-x-0{--tw-translate-x:calc(var(--spacing) * 0);translate:var(--tw-translate-x) var(--tw-translate-y)}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:p-8{padding:calc(var(--spacing) * 8)}.lg\:pt-0{padding-top:calc(var(--spacing) * 0)}}}body{background-color:var(--color-gray-900);font-family:var(--font-sans);color:var(--color-gray-100);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}::-moz-selection{background-color:var(--color-blue-500);color:var(--color-white)}::selection{background-color:var(--color-blue-500);color:var(--color-white)}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes pulse{50%{opacity:.5}}
|
admin-app/android/app/src/main/assets/public/assets/index-BkRR8uCM.js
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
admin-app/android/app/src/main/assets/public/cordova.js
ADDED
|
File without changes
|
admin-app/android/app/src/main/assets/public/cordova_plugins.js
ADDED
|
File without changes
|
admin-app/android/app/src/main/assets/public/index.html
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!doctype html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8" />
|
| 5 |
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 7 |
+
<title>admin-app</title>
|
| 8 |
+
<script type="module" crossorigin src="/assets/index-BkRR8uCM.js"></script>
|
| 9 |
+
<link rel="stylesheet" crossorigin href="/assets/index-BV84xLdW.css">
|
| 10 |
+
</head>
|
| 11 |
+
<body>
|
| 12 |
+
<div id="root"></div>
|
| 13 |
+
</body>
|
| 14 |
+
</html>
|
admin-app/android/app/src/main/assets/public/vite.svg
ADDED
|
|
admin-app/android/app/src/main/java/com/mtextile/admin/MainActivity.java
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
package com.mtextile.admin;
|
| 2 |
+
|
| 3 |
+
import com.getcapacitor.BridgeActivity;
|
| 4 |
+
|
| 5 |
+
public class MainActivity extends BridgeActivity {}
|
admin-app/android/app/src/main/res/drawable-land-hdpi/splash.png
ADDED
|
admin-app/android/app/src/main/res/drawable-land-mdpi/splash.png
ADDED
|
admin-app/android/app/src/main/res/drawable-land-xhdpi/splash.png
ADDED
|
admin-app/android/app/src/main/res/drawable-land-xxhdpi/splash.png
ADDED
|
admin-app/android/app/src/main/res/drawable-land-xxxhdpi/splash.png
ADDED
|
admin-app/android/app/src/main/res/drawable-port-hdpi/splash.png
ADDED
|
admin-app/android/app/src/main/res/drawable-port-mdpi/splash.png
ADDED
|
admin-app/android/app/src/main/res/drawable-port-xhdpi/splash.png
ADDED
|
admin-app/android/app/src/main/res/drawable-port-xxhdpi/splash.png
ADDED
|
admin-app/android/app/src/main/res/drawable-port-xxxhdpi/splash.png
ADDED
|
admin-app/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
| 2 |
+
xmlns:aapt="http://schemas.android.com/aapt"
|
| 3 |
+
android:width="108dp"
|
| 4 |
+
android:height="108dp"
|
| 5 |
+
android:viewportHeight="108"
|
| 6 |
+
android:viewportWidth="108">
|
| 7 |
+
<path
|
| 8 |
+
android:fillType="evenOdd"
|
| 9 |
+
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
|
| 10 |
+
android:strokeColor="#00000000"
|
| 11 |
+
android:strokeWidth="1">
|
| 12 |
+
<aapt:attr name="android:fillColor">
|
| 13 |
+
<gradient
|
| 14 |
+
android:endX="78.5885"
|
| 15 |
+
android:endY="90.9159"
|
| 16 |
+
android:startX="48.7653"
|
| 17 |
+
android:startY="61.0927"
|
| 18 |
+
android:type="linear">
|
| 19 |
+
<item
|
| 20 |
+
android:color="#44000000"
|
| 21 |
+
android:offset="0.0" />
|
| 22 |
+
<item
|
| 23 |
+
android:color="#00000000"
|
| 24 |
+
android:offset="1.0" />
|
| 25 |
+
</gradient>
|
| 26 |
+
</aapt:attr>
|
| 27 |
+
</path>
|
| 28 |
+
<path
|
| 29 |
+
android:fillColor="#FFFFFF"
|
| 30 |
+
android:fillType="nonZero"
|
| 31 |
+
android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
|
| 32 |
+
android:strokeColor="#00000000"
|
| 33 |
+
android:strokeWidth="1" />
|
| 34 |
+
</vector>
|
admin-app/android/app/src/main/res/drawable/ic_launcher_background.xml
ADDED
|
@@ -0,0 +1,170 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
| 2 |
+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
| 3 |
+
android:width="108dp"
|
| 4 |
+
android:height="108dp"
|
| 5 |
+
android:viewportHeight="108"
|
| 6 |
+
android:viewportWidth="108">
|
| 7 |
+
<path
|
| 8 |
+
android:fillColor="#26A69A"
|
| 9 |
+
android:pathData="M0,0h108v108h-108z" />
|
| 10 |
+
<path
|
| 11 |
+
android:fillColor="#00000000"
|
| 12 |
+
android:pathData="M9,0L9,108"
|
| 13 |
+
android:strokeColor="#33FFFFFF"
|
| 14 |
+
android:strokeWidth="0.8" />
|
| 15 |
+
<path
|
| 16 |
+
android:fillColor="#00000000"
|
| 17 |
+
android:pathData="M19,0L19,108"
|
| 18 |
+
android:strokeColor="#33FFFFFF"
|
| 19 |
+
android:strokeWidth="0.8" />
|
| 20 |
+
<path
|
| 21 |
+
android:fillColor="#00000000"
|
| 22 |
+
android:pathData="M29,0L29,108"
|
| 23 |
+
android:strokeColor="#33FFFFFF"
|
| 24 |
+
android:strokeWidth="0.8" />
|
| 25 |
+
<path
|
| 26 |
+
android:fillColor="#00000000"
|
| 27 |
+
android:pathData="M39,0L39,108"
|
| 28 |
+
android:strokeColor="#33FFFFFF"
|
| 29 |
+
android:strokeWidth="0.8" />
|
| 30 |
+
<path
|
| 31 |
+
android:fillColor="#00000000"
|
| 32 |
+
android:pathData="M49,0L49,108"
|
| 33 |
+
android:strokeColor="#33FFFFFF"
|
| 34 |
+
android:strokeWidth="0.8" />
|
| 35 |
+
<path
|
| 36 |
+
android:fillColor="#00000000"
|
| 37 |
+
android:pathData="M59,0L59,108"
|
| 38 |
+
android:strokeColor="#33FFFFFF"
|
| 39 |
+
android:strokeWidth="0.8" />
|
| 40 |
+
<path
|
| 41 |
+
android:fillColor="#00000000"
|
| 42 |
+
android:pathData="M69,0L69,108"
|
| 43 |
+
android:strokeColor="#33FFFFFF"
|
| 44 |
+
android:strokeWidth="0.8" />
|
| 45 |
+
<path
|
| 46 |
+
android:fillColor="#00000000"
|
| 47 |
+
android:pathData="M79,0L79,108"
|
| 48 |
+
android:strokeColor="#33FFFFFF"
|
| 49 |
+
android:strokeWidth="0.8" />
|
| 50 |
+
<path
|
| 51 |
+
android:fillColor="#00000000"
|
| 52 |
+
android:pathData="M89,0L89,108"
|
| 53 |
+
android:strokeColor="#33FFFFFF"
|
| 54 |
+
android:strokeWidth="0.8" />
|
| 55 |
+
<path
|
| 56 |
+
android:fillColor="#00000000"
|
| 57 |
+
android:pathData="M99,0L99,108"
|
| 58 |
+
android:strokeColor="#33FFFFFF"
|
| 59 |
+
android:strokeWidth="0.8" />
|
| 60 |
+
<path
|
| 61 |
+
android:fillColor="#00000000"
|
| 62 |
+
android:pathData="M0,9L108,9"
|
| 63 |
+
android:strokeColor="#33FFFFFF"
|
| 64 |
+
android:strokeWidth="0.8" />
|
| 65 |
+
<path
|
| 66 |
+
android:fillColor="#00000000"
|
| 67 |
+
android:pathData="M0,19L108,19"
|
| 68 |
+
android:strokeColor="#33FFFFFF"
|
| 69 |
+
android:strokeWidth="0.8" />
|
| 70 |
+
<path
|
| 71 |
+
android:fillColor="#00000000"
|
| 72 |
+
android:pathData="M0,29L108,29"
|
| 73 |
+
android:strokeColor="#33FFFFFF"
|
| 74 |
+
android:strokeWidth="0.8" />
|
| 75 |
+
<path
|
| 76 |
+
android:fillColor="#00000000"
|
| 77 |
+
android:pathData="M0,39L108,39"
|
| 78 |
+
android:strokeColor="#33FFFFFF"
|
| 79 |
+
android:strokeWidth="0.8" />
|
| 80 |
+
<path
|
| 81 |
+
android:fillColor="#00000000"
|
| 82 |
+
android:pathData="M0,49L108,49"
|
| 83 |
+
android:strokeColor="#33FFFFFF"
|
| 84 |
+
android:strokeWidth="0.8" />
|
| 85 |
+
<path
|
| 86 |
+
android:fillColor="#00000000"
|
| 87 |
+
android:pathData="M0,59L108,59"
|
| 88 |
+
android:strokeColor="#33FFFFFF"
|
| 89 |
+
android:strokeWidth="0.8" />
|
| 90 |
+
<path
|
| 91 |
+
android:fillColor="#00000000"
|
| 92 |
+
android:pathData="M0,69L108,69"
|
| 93 |
+
android:strokeColor="#33FFFFFF"
|
| 94 |
+
android:strokeWidth="0.8" />
|
| 95 |
+
<path
|
| 96 |
+
android:fillColor="#00000000"
|
| 97 |
+
android:pathData="M0,79L108,79"
|
| 98 |
+
android:strokeColor="#33FFFFFF"
|
| 99 |
+
android:strokeWidth="0.8" />
|
| 100 |
+
<path
|
| 101 |
+
android:fillColor="#00000000"
|
| 102 |
+
android:pathData="M0,89L108,89"
|
| 103 |
+
android:strokeColor="#33FFFFFF"
|
| 104 |
+
android:strokeWidth="0.8" />
|
| 105 |
+
<path
|
| 106 |
+
android:fillColor="#00000000"
|
| 107 |
+
android:pathData="M0,99L108,99"
|
| 108 |
+
android:strokeColor="#33FFFFFF"
|
| 109 |
+
android:strokeWidth="0.8" />
|
| 110 |
+
<path
|
| 111 |
+
android:fillColor="#00000000"
|
| 112 |
+
android:pathData="M19,29L89,29"
|
| 113 |
+
android:strokeColor="#33FFFFFF"
|
| 114 |
+
android:strokeWidth="0.8" />
|
| 115 |
+
<path
|
| 116 |
+
android:fillColor="#00000000"
|
| 117 |
+
android:pathData="M19,39L89,39"
|
| 118 |
+
android:strokeColor="#33FFFFFF"
|
| 119 |
+
android:strokeWidth="0.8" />
|
| 120 |
+
<path
|
| 121 |
+
android:fillColor="#00000000"
|
| 122 |
+
android:pathData="M19,49L89,49"
|
| 123 |
+
android:strokeColor="#33FFFFFF"
|
| 124 |
+
android:strokeWidth="0.8" />
|
| 125 |
+
<path
|
| 126 |
+
android:fillColor="#00000000"
|
| 127 |
+
android:pathData="M19,59L89,59"
|
| 128 |
+
android:strokeColor="#33FFFFFF"
|
| 129 |
+
android:strokeWidth="0.8" />
|
| 130 |
+
<path
|
| 131 |
+
android:fillColor="#00000000"
|
| 132 |
+
android:pathData="M19,69L89,69"
|
| 133 |
+
android:strokeColor="#33FFFFFF"
|
| 134 |
+
android:strokeWidth="0.8" />
|
| 135 |
+
<path
|
| 136 |
+
android:fillColor="#00000000"
|
| 137 |
+
android:pathData="M19,79L89,79"
|
| 138 |
+
android:strokeColor="#33FFFFFF"
|
| 139 |
+
android:strokeWidth="0.8" />
|
| 140 |
+
<path
|
| 141 |
+
android:fillColor="#00000000"
|
| 142 |
+
android:pathData="M29,19L29,89"
|
| 143 |
+
android:strokeColor="#33FFFFFF"
|
| 144 |
+
android:strokeWidth="0.8" />
|
| 145 |
+
<path
|
| 146 |
+
android:fillColor="#00000000"
|
| 147 |
+
android:pathData="M39,19L39,89"
|
| 148 |
+
android:strokeColor="#33FFFFFF"
|
| 149 |
+
android:strokeWidth="0.8" />
|
| 150 |
+
<path
|
| 151 |
+
android:fillColor="#00000000"
|
| 152 |
+
android:pathData="M49,19L49,89"
|
| 153 |
+
android:strokeColor="#33FFFFFF"
|
| 154 |
+
android:strokeWidth="0.8" />
|
| 155 |
+
<path
|
| 156 |
+
android:fillColor="#00000000"
|
| 157 |
+
android:pathData="M59,19L59,89"
|
| 158 |
+
android:strokeColor="#33FFFFFF"
|
| 159 |
+
android:strokeWidth="0.8" />
|
| 160 |
+
<path
|
| 161 |
+
android:fillColor="#00000000"
|
| 162 |
+
android:pathData="M69,19L69,89"
|
| 163 |
+
android:strokeColor="#33FFFFFF"
|
| 164 |
+
android:strokeWidth="0.8" />
|
| 165 |
+
<path
|
| 166 |
+
android:fillColor="#00000000"
|
| 167 |
+
android:pathData="M79,19L79,89"
|
| 168 |
+
android:strokeColor="#33FFFFFF"
|
| 169 |
+
android:strokeWidth="0.8" />
|
| 170 |
+
</vector>
|
admin-app/android/app/src/main/res/drawable/splash.png
ADDED
|
admin-app/android/app/src/main/res/layout/activity_main.xml
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
| 2 |
+
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
| 3 |
+
xmlns:app="http://schemas.android.com/apk/res-auto"
|
| 4 |
+
xmlns:tools="http://schemas.android.com/tools"
|
| 5 |
+
android:layout_width="match_parent"
|
| 6 |
+
android:layout_height="match_parent"
|
| 7 |
+
tools:context=".MainActivity">
|
| 8 |
+
|
| 9 |
+
<WebView
|
| 10 |
+
android:layout_width="match_parent"
|
| 11 |
+
android:layout_height="match_parent" />
|
| 12 |
+
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
admin-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
| 2 |
+
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
| 3 |
+
<background android:drawable="@color/ic_launcher_background"/>
|
| 4 |
+
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
| 5 |
+
</adaptive-icon>
|
admin-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
| 2 |
+
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
| 3 |
+
<background android:drawable="@color/ic_launcher_background"/>
|
| 4 |
+
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
| 5 |
+
</adaptive-icon>
|
admin-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
ADDED
|
admin-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
ADDED
|
admin-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
ADDED
|
admin-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
ADDED
|
admin-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
ADDED
|
admin-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
ADDED
|
admin-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
ADDED
|
admin-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
ADDED
|