update
|
@ -0,0 +1,46 @@
|
|||
# Miscellaneous
|
||||
*.class
|
||||
*.log
|
||||
*.pyc
|
||||
*.swp
|
||||
.DS_Store
|
||||
.atom/
|
||||
.buildlog/
|
||||
.history
|
||||
.svn/
|
||||
migrate_working_dir/
|
||||
|
||||
# IntelliJ related
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
.idea/
|
||||
|
||||
# The .vscode folder contains launch configuration and tasks you configure in
|
||||
# VS Code which you may wish to be included in version control, so this line
|
||||
# is commented out by default.
|
||||
#.vscode/
|
||||
|
||||
# Flutter/Dart/Pub related
|
||||
**/doc/api/
|
||||
**/ios/Flutter/.last_build_id
|
||||
.dart_tool/
|
||||
.flutter-plugins
|
||||
.flutter-plugins-dependencies
|
||||
.packages
|
||||
.pub-cache/
|
||||
.pub/
|
||||
/build/
|
||||
|
||||
# Symbolication related
|
||||
app.*.symbols
|
||||
|
||||
# Obfuscation related
|
||||
app.*.map.json
|
||||
|
||||
# Android Studio will place build artifacts here
|
||||
/android/app/debug
|
||||
/android/app/profile
|
||||
/android/app/release
|
||||
|
||||
.vscode/templates
|
|
@ -0,0 +1,45 @@
|
|||
# This file tracks properties of this Flutter project.
|
||||
# Used by Flutter tool to assess capabilities and perform upgrades etc.
|
||||
#
|
||||
# This file should be version controlled and should not be manually edited.
|
||||
|
||||
version:
|
||||
revision: "12fccda598477eddd19f93040a1dba24f915b9be"
|
||||
channel: "stable"
|
||||
|
||||
project_type: app
|
||||
|
||||
# Tracks metadata for the flutter migrate command
|
||||
migration:
|
||||
platforms:
|
||||
- platform: root
|
||||
create_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
base_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
- platform: android
|
||||
create_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
base_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
- platform: ios
|
||||
create_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
base_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
- platform: linux
|
||||
create_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
base_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
- platform: macos
|
||||
create_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
base_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
- platform: web
|
||||
create_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
base_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
- platform: windows
|
||||
create_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
base_revision: 12fccda598477eddd19f93040a1dba24f915b9be
|
||||
|
||||
# User provided section
|
||||
|
||||
# List of Local paths (relative to this file) that should be
|
||||
# ignored by the migrate tool.
|
||||
#
|
||||
# Files that are not part of the templates will be ignored by default.
|
||||
unmanaged_files:
|
||||
- 'lib/main.dart'
|
||||
- 'ios/Runner.xcodeproj/project.pbxproj'
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"java.configuration.updateBuildConfiguration": "interactive"
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
{}
|
|
@ -0,0 +1,28 @@
|
|||
# This file configures the analyzer, which statically analyzes Dart code to
|
||||
# check for errors, warnings, and lints.
|
||||
#
|
||||
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
|
||||
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
|
||||
# invoked from the command line by running `flutter analyze`.
|
||||
|
||||
# The following line activates a set of recommended lints for Flutter apps,
|
||||
# packages, and plugins designed to encourage good coding practices.
|
||||
include: package:flutter_lints/flutter.yaml
|
||||
|
||||
linter:
|
||||
# The lint rules applied to this project can be customized in the
|
||||
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
|
||||
# included above or to enable additional rules. A list of all available lints
|
||||
# and their documentation is published at https://dart.dev/lints.
|
||||
#
|
||||
# Instead of disabling a lint rule for the entire project in the
|
||||
# section below, it can also be suppressed for a single line of code
|
||||
# or a specific dart file by using the `// ignore: name_of_lint` and
|
||||
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
|
||||
# producing the lint.
|
||||
rules:
|
||||
# avoid_print: false # Uncomment to disable the `avoid_print` rule
|
||||
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
|
||||
|
||||
# Additional information about this file can be found at
|
||||
# https://dart.dev/guides/language/analysis-options
|
|
@ -0,0 +1,13 @@
|
|||
gradle-wrapper.jar
|
||||
/.gradle
|
||||
/captures/
|
||||
/gradlew
|
||||
/gradlew.bat
|
||||
/local.properties
|
||||
GeneratedPluginRegistrant.java
|
||||
|
||||
# Remember to never publicly share your keystore.
|
||||
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
|
||||
key.properties
|
||||
**/*.keystore
|
||||
**/*.jks
|
|
@ -0,0 +1,82 @@
|
|||
plugins {
|
||||
id "com.android.application"
|
||||
id "kotlin-android"
|
||||
id "dev.flutter.flutter-gradle-plugin"
|
||||
}
|
||||
|
||||
def localProperties = new Properties()
|
||||
def localPropertiesFile = rootProject.file('local.properties')
|
||||
if (localPropertiesFile.exists()) {
|
||||
localPropertiesFile.withReader('UTF-8') { reader ->
|
||||
localProperties.load(reader)
|
||||
}
|
||||
}
|
||||
|
||||
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
||||
if (flutterVersionCode == null) {
|
||||
flutterVersionCode = '2'
|
||||
}
|
||||
|
||||
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
||||
if (flutterVersionName == null) {
|
||||
flutterVersionName = '1.2'
|
||||
}
|
||||
|
||||
def keystoreProperties = new Properties()
|
||||
def keystorePropertiesFile = rootProject.file('key.properties')
|
||||
if (keystorePropertiesFile.exists()) {
|
||||
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||
}
|
||||
|
||||
android {
|
||||
namespace "com.tefa.dikatin"
|
||||
compileSdkVersion flutter.compileSdkVersion
|
||||
ndkVersion flutter.ndkVersion
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
targetCompatibility JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
jvmTarget = '1.8'
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
main.java.srcDirs += 'src/main/kotlin'
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||
applicationId "com.tefa.dikatin"
|
||||
multiDexEnabled true
|
||||
// You can update the following values to match your application needs.
|
||||
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
|
||||
// minSdkVersion flutter.minSdkVersion
|
||||
minSdkVersion flutter.minSdkVersion
|
||||
targetSdkVersion flutter.targetSdkVersion
|
||||
versionCode flutterVersionCode.toInteger()
|
||||
versionName flutterVersionName
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
release {
|
||||
keyAlias keystoreProperties['keyAlias']
|
||||
keyPassword keystoreProperties['keyPassword']
|
||||
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
|
||||
storePassword keystoreProperties['storePassword']
|
||||
}
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
flutter {
|
||||
source '../..'
|
||||
}
|
||||
|
||||
dependencies {implementation 'com.android.support:multidex:1.0.3'}
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"project_info": {
|
||||
"project_number": "595237626151",
|
||||
"project_id": "dikantin-a64ad",
|
||||
"storage_bucket": "dikantin-a64ad.appspot.com"
|
||||
},
|
||||
"client": [
|
||||
{
|
||||
"client_info": {
|
||||
"mobilesdk_app_id": "1:595237626151:android:4ece3d123c458e92910902",
|
||||
"android_client_info": {
|
||||
"package_name": "com.tefa.dikatin"
|
||||
}
|
||||
},
|
||||
"oauth_client": [],
|
||||
"api_key": [
|
||||
{
|
||||
"current_key": "AIzaSyDY2YW6rguLMY9-5f5rPnLYp2Wv1AWcrTI"
|
||||
}
|
||||
],
|
||||
"services": {
|
||||
"appinvite_service": {
|
||||
"other_platform_oauth_client": []
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"configuration_version": "1"
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- The INTERNET permission is required for development. Specifically,
|
||||
the Flutter tool 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>
|
|
@ -0,0 +1,40 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||
<application
|
||||
android:usesCleartextTraffic="true"
|
||||
android:label="Dikantin"
|
||||
android:name="${applicationName}"
|
||||
android:icon="@mipmap/launcher_icon">
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:exported="true"
|
||||
android:launchMode="singleTop"
|
||||
android:screenOrientation="portrait"
|
||||
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"
|
||||
/>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="android.intent.category.LAUNCHER"/>
|
||||
</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" />
|
||||
<meta-data
|
||||
android:name="com.google.android.geo.API_KEY"
|
||||
android:value="AIzaSyDXCLvIDwKUDu4jaYOLaimHhrrWQeCa1_4" />
|
||||
</application>
|
||||
</manifest>
|
|
@ -0,0 +1,5 @@
|
|||
package com.tefa.dikatin
|
||||
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
|
||||
class MainActivity : FlutterActivity() {}
|
|
@ -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>
|
|
@ -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>
|
After Width: | Height: | Size: 544 B |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 442 B |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 721 B |
After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 22 KiB |
|
@ -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
|
||||
the Flutter engine 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>
|
|
@ -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
|
||||
the Flutter engine 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>
|
|
@ -0,0 +1,8 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- The INTERNET permission is required for development. Specifically,
|
||||
the Flutter tool 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>
|
|
@ -0,0 +1,31 @@
|
|||
buildscript {
|
||||
ext.kotlin_version = '1.9.22'
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:7.3.0'
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
}
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.buildDir = '../build'
|
||||
subprojects {
|
||||
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
||||
}
|
||||
subprojects {
|
||||
project.evaluationDependsOn(':app')
|
||||
}
|
||||
|
||||
tasks.register("clean", Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
org.gradle.jvmargs=-Xmx1536M
|
||||
android.useAndroidX=true
|
||||
android.enableJetifier=true
|
|
@ -0,0 +1,5 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
|
After Width: | Height: | Size: 25 KiB |
|
@ -0,0 +1,20 @@
|
|||
pluginManagement {
|
||||
def flutterSdkPath = {
|
||||
def properties = new Properties()
|
||||
file("local.properties").withInputStream { properties.load(it) }
|
||||
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
||||
return flutterSdkPath
|
||||
}
|
||||
settings.ext.flutterSdkPath = flutterSdkPath()
|
||||
|
||||
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
|
||||
|
||||
plugins {
|
||||
id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false
|
||||
}
|
||||
}
|
||||
|
||||
include ":app"
|
||||
|
||||
apply from: "${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle/app_plugin_loader.gradle"
|
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 2.5 MiB |
After Width: | Height: | Size: 300 KiB |
|
@ -0,0 +1 @@
|
|||
{"v":"5.6.5","fr":30,"ip":0,"op":44,"w":167,"h":167,"nm":"tick","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 2","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-24.497,0.832],[-8.831,18],[24.497,-18]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.26],"y":[1]},"o":{"x":[0.227],"y":[0.154]},"t":21,"s":[0]},{"t":32.806640625,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.41568627450980394,0.8196078431372549,0.8901960784313725,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":60,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"frame","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[83.5,83.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0.833],"y":[1,1,1]},"o":{"x":[0.843,0.843,0.72],"y":[0,0,0]},"t":0,"s":[0,0,100]},{"i":{"x":[0.841,0.841,0.88],"y":[1,1,1]},"o":{"x":[1,1,0.66],"y":[0,0,0]},"t":21,"s":[105,105,100]},{"i":{"x":[0.084,0.084,0.42],"y":[1,1,1]},"o":{"x":[0.356,0.356,0.12],"y":[0,0,0]},"t":29.871,"s":[95,95,100]},{"t":35.87109375,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[101,101],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.41568627450980394,0.8196078431372549,0.8901960784313725,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-0.199,-0.199],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":60,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"frame 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[83.5,83.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ef":[{"ty":5,"nm":"Gradient Ramp","np":11,"mn":"ADBE Ramp","ix":1,"en":1,"ef":[{"ty":3,"nm":"Start of Ramp","mn":"ADBE Ramp-0001","ix":1,"v":{"a":0,"k":[83.5,0],"ix":1}},{"ty":2,"nm":"Start Color","mn":"ADBE Ramp-0002","ix":2,"v":{"a":0,"k":[0.490196079016,0.827450990677,0.803921580315,1],"ix":2}},{"ty":3,"nm":"End of Ramp","mn":"ADBE Ramp-0003","ix":3,"v":{"a":0,"k":[83.5,167],"ix":3}},{"ty":2,"nm":"End Color","mn":"ADBE Ramp-0004","ix":4,"v":{"a":0,"k":[0,0.662745118141,0.615686297417,1],"ix":4}},{"ty":7,"nm":"Ramp Shape","mn":"ADBE Ramp-0005","ix":5,"v":{"a":0,"k":1,"ix":5}},{"ty":0,"nm":"Ramp Scatter","mn":"ADBE Ramp-0006","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Blend With Original","mn":"ADBE Ramp-0007","ix":7,"v":{"a":0,"k":0,"ix":7}},{"ty":6,"nm":"","mn":"ADBE Ramp-0008","ix":8,"v":0},{"ty":7,"nm":"GPU Rendering","mn":"ADBE Force CPU GPU","ix":9,"v":{"a":0,"k":1,"ix":9}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[101,101],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.41568627450980394,0.8196078431372549,0.8901960784313725,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.118],"y":[1]},"o":{"x":[0.116],"y":[0]},"t":0,"s":[10]},{"t":22,"s":[0]}],"ix":5},"lc":2,"lj":2,"bm":0,"d":[{"n":"d","nm":"dash","v":{"a":0,"k":0.5,"ix":1}},{"n":"g","nm":"gap","v":{"a":0,"k":45,"ix":2}},{"n":"o","nm":"offset","v":{"a":0,"k":0,"ix":7}}],"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-0.199,-0.199],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.118,0.118],"y":[1,1]},"o":{"x":[0.116,0.116],"y":[0,0]},"t":0,"s":[0,0]},{"t":22,"s":[117,117]}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":60,"st":0,"bm":0}],"markers":[]}
|
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 99 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 30 KiB |
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"data": {
|
||||
"id_customer": "CUST19700",
|
||||
"nama": "rizqi",
|
||||
"no_telepon": "08883662780",
|
||||
"email_verified": 1,
|
||||
"kode_verified": null,
|
||||
"token": "O9MHyWzdus9hYvmYm1eaOKaBJ7mR0lACpby28F2zLfDxX1pH6BqOme9Sa8AG40y1lFypiAJOhb8vFltyPaLAprDnlkwGQ2DiJakZunKrISrwCKvEOQcjBG2EJhHG8FpvsZZERzBeZ2SskcODKw85Iro2IEmCNV0Nn12tXEm4nKBVEID4nMrzSCxUP6MQfX2mkHaQIJbj",
|
||||
"token_fcm": null,
|
||||
"alamat": "jl mantap no 1depan gang enjoy",
|
||||
"email": "rizqi@gmail.com",
|
||||
"foto": null,
|
||||
"created_at": "2023-11-14T16:20:55.000000Z",
|
||||
"updated_at": "2023-11-15T04:18:17.000000Z"
|
||||
},
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"id_menu": 13,
|
||||
"nama": "Aqua",
|
||||
"harga": 3000,
|
||||
"foto": "menu/rjwJkLd1Zo5RvWutZWqFuiEKF8MjklFkX1M0gZCC.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "minuman",
|
||||
"id_kantin": 1,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 02:40:19",
|
||||
"updated_at": "2023-05-08 07:29:57"
|
||||
},
|
||||
{
|
||||
"id_menu": 15,
|
||||
"nama": "Nasi Goreng",
|
||||
"harga": 8000,
|
||||
"foto": "menu/lJu3UQn5Urh4f6yIvB1isfLjfuah1GaFGXRQHR8R.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 1,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 02:55:36",
|
||||
"updated_at": "2023-05-08 07:30:06"
|
||||
},
|
||||
{
|
||||
"id_menu": 16,
|
||||
"nama": "Ayam Bakar",
|
||||
"harga": 12000,
|
||||
"foto": "menu/n9hWAwaqoFiZjnNMcDZlaaiAiH6aC2Wb5fEfi6cJ.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 1,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 02:57:50",
|
||||
"updated_at": "2023-05-03 06:23:36"
|
||||
},
|
||||
{
|
||||
"id_menu": 17,
|
||||
"nama": "Es Jeruk",
|
||||
"harga": 3000,
|
||||
"foto": "menu/HvUL2FL75oZyzqvSqQMIqwy0sz3z0lZPG81YSNyM.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "minuman",
|
||||
"id_kantin": 1,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 03:02:51",
|
||||
"updated_at": "2023-05-02 03:17:33"
|
||||
}
|
||||
],
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"id_menu": 13,
|
||||
"nama": "Aqua",
|
||||
"harga": 3000,
|
||||
"foto": "menu/aqua.jpg",
|
||||
"status_stok": "ada",
|
||||
"kategori": "minuman",
|
||||
"id_kantin": 1,
|
||||
"diskon": 10
|
||||
},
|
||||
{
|
||||
"id_menu": 16,
|
||||
"nama": "Ayam Bakar",
|
||||
"harga": 12000,
|
||||
"foto": "menu/ayam_bakar.jpg",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 1,
|
||||
"diskon": 10
|
||||
},
|
||||
{
|
||||
"id_menu": 15,
|
||||
"nama": "Nasi Goreng",
|
||||
"harga": 8000,
|
||||
"foto": "menu/nasi.jpeg",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 1,
|
||||
"diskon": 10
|
||||
}
|
||||
],
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"data": {
|
||||
"selesai": 0,
|
||||
"dilayani": 0
|
||||
},
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"id_menu": 20,
|
||||
"nama": "Ayam Geprek",
|
||||
"harga": 10000,
|
||||
"foto": "menu/Ayam_Geprek.jpeg",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 2,
|
||||
"diskon": null,
|
||||
"penjualan_hari_ini": "6"
|
||||
},
|
||||
{
|
||||
"id_menu": 16,
|
||||
"nama": "Ayam Bakar",
|
||||
"harga": 12000,
|
||||
"foto": "menu/ayam_bakar.jpg",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 1,
|
||||
"diskon": 10,
|
||||
"penjualan_hari_ini": "2"
|
||||
}
|
||||
],
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"data": {
|
||||
"id_customer": "CUST73557",
|
||||
"nama": "Sepatek",
|
||||
"no_telepon": "082229474403",
|
||||
"email_verified": 1,
|
||||
"kode_verified": null,
|
||||
"token": "Pjb6nM8YZQfcYnTYhv56KBLsu74fZ0qFvwBOMEs7XxvvjgAb1g0iELkpniGdVVaCBI4nqIRTg43JPJibjxgtrwCt2cU5YqtUcl5BK5vpwqKl0gs7EvWoxEbj70HaiHHSlA4aYQ1xSOk444KQS7bGwkW4j8gbL1B1rmcwkbd80Y5NbQaAegZir4zJvX8HbCoghuQvoxEQ",
|
||||
"token_fcm": "anjaysdgayg",
|
||||
"alamat": "1233 S 5th St, , Mountain View, 91801, United States",
|
||||
"email": "rayhanbetta890@gmail.com",
|
||||
"foto": null,
|
||||
"google_id": null,
|
||||
"created_at": "2023-12-05T10:16:30.000000Z",
|
||||
"updated_at": "2023-12-06T04:00:23.000000Z"
|
||||
},
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"data": {
|
||||
"id_kurir": "3219",
|
||||
"email": "DwiK@gmail.com",
|
||||
"nama": "Dwi ",
|
||||
"status": 0,
|
||||
"token": "v6GhOSlTe7nYq1b3WYyTo04UYL3dXZgRgSVugpUhxmIkqyoCwpAkU6NQfXIYBDVJ8RtE0g4aTjiSoI5VfUPs5rTO4LFDYOgrQXbSjt28XyJpQ6ZhW7oQ3kKrJSQyrtINMybyrJpIVKsCLmgn5ggLIL7Ghir0SKk2i0Fejsff8SYSbP4NVWkWJPSIkxgUlmAWlJr67pjr",
|
||||
"token_fcm": "anjaysdgayg",
|
||||
"telepon": "089778866889",
|
||||
"foto": null,
|
||||
"created_at": "2023-11-14T15:34:33.000000Z",
|
||||
"updated_at": "2023-12-06T07:56:31.000000Z"
|
||||
},
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,144 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"kode_tr": "TRDKN4058",
|
||||
"status_konfirm": null,
|
||||
"status_pesanan": null,
|
||||
"tanggal": "2024-01-18 00:21:40",
|
||||
"id_customer": "CUST98273",
|
||||
"id_kurir": null,
|
||||
"id_kasir": null,
|
||||
"total_bayar": 0,
|
||||
"total_harga": 10000,
|
||||
"kembalian": 0,
|
||||
"status_pengiriman": null,
|
||||
"bukti_pengiriman": null,
|
||||
"no_meja": null,
|
||||
"model_pembayaran": "cash",
|
||||
"expired_at": "2024-01-18 00:22:40",
|
||||
"total_biaya_kurir": null,
|
||||
"created_at": "2024-01-17T17:21:40.000000Z",
|
||||
"updated_at": "2024-01-17T17:21:40.000000Z",
|
||||
"detail_transaksi": [
|
||||
{
|
||||
"kode_tr": "TRDKN4058",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 10000,
|
||||
"subtotal_hargapokok": 9000,
|
||||
"kode_menu": 35,
|
||||
"catatan": null,
|
||||
"status_konfirm": "menunggu",
|
||||
"created_at": "2024-01-17T17:21:40.000000Z",
|
||||
"updated_at": "2024-01-17T17:21:40.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 35,
|
||||
"nama": "Tahu Lontong",
|
||||
"harga": 10000,
|
||||
"harga_pokok": 9000,
|
||||
"foto": "menu/cmXBQx5bSTgmkjfcUbGSwUhqY10YVAkCeI79n82F.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 2,
|
||||
"diskon": null,
|
||||
"created_at": "2023-05-03 11:16:44",
|
||||
"updated_at": "2023-05-08 23:22:25"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN1353",
|
||||
"status_konfirm": null,
|
||||
"status_pesanan": null,
|
||||
"tanggal": "2024-01-18 00:06:47",
|
||||
"id_customer": "CUST98273",
|
||||
"id_kurir": null,
|
||||
"id_kasir": null,
|
||||
"total_bayar": 0,
|
||||
"total_harga": 15000,
|
||||
"kembalian": 0,
|
||||
"status_pengiriman": null,
|
||||
"bukti_pengiriman": null,
|
||||
"no_meja": null,
|
||||
"model_pembayaran": "cash",
|
||||
"expired_at": "2024-01-18 00:07:47",
|
||||
"total_biaya_kurir": null,
|
||||
"created_at": "2024-01-17T17:06:47.000000Z",
|
||||
"updated_at": "2024-01-17T17:06:47.000000Z",
|
||||
"detail_transaksi": [
|
||||
{
|
||||
"kode_tr": "TRDKN1353",
|
||||
"QTY": 3,
|
||||
"subtotal_bayar": 15000,
|
||||
"subtotal_hargapokok": 12000,
|
||||
"kode_menu": 10,
|
||||
"catatan": null,
|
||||
"status_konfirm": "menunggu",
|
||||
"created_at": "2024-01-17T17:06:47.000000Z",
|
||||
"updated_at": "2024-01-17T17:06:47.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 10,
|
||||
"nama": "Gado-gado",
|
||||
"harga": 5000,
|
||||
"harga_pokok": 4000,
|
||||
"foto": "menu/MU1qcs3g6pNoNfhZmhspeOQEylRXU4Nl3Ki8DNJu.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 3,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 08:45:50",
|
||||
"updated_at": "2023-05-02 13:32:03"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN1654",
|
||||
"status_konfirm": null,
|
||||
"status_pesanan": null,
|
||||
"tanggal": "2024-01-17 23:56:45",
|
||||
"id_customer": "CUST98273",
|
||||
"id_kurir": null,
|
||||
"id_kasir": null,
|
||||
"total_bayar": 0,
|
||||
"total_harga": 3000,
|
||||
"kembalian": 0,
|
||||
"status_pengiriman": null,
|
||||
"bukti_pengiriman": null,
|
||||
"no_meja": null,
|
||||
"model_pembayaran": "cash",
|
||||
"expired_at": "2024-01-17 23:57:45",
|
||||
"total_biaya_kurir": null,
|
||||
"created_at": "2024-01-17T16:56:45.000000Z",
|
||||
"updated_at": "2024-01-17T16:56:45.000000Z",
|
||||
"detail_transaksi": [
|
||||
{
|
||||
"kode_tr": "TRDKN1654",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 3000,
|
||||
"subtotal_hargapokok": 2500,
|
||||
"kode_menu": 33,
|
||||
"catatan": null,
|
||||
"status_konfirm": "menunggu",
|
||||
"created_at": "2024-01-17T16:56:45.000000Z",
|
||||
"updated_at": "2024-01-17T16:56:45.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 33,
|
||||
"nama": "Teh Hangat",
|
||||
"harga": 3000,
|
||||
"harga_pokok": 2500,
|
||||
"foto": "menu/WbNsQ08nNi8zYRVpXougeZSeJOpVQHIpKGGD2Hnt.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "minuman",
|
||||
"id_kantin": 6,
|
||||
"diskon": null,
|
||||
"created_at": "2023-05-03 11:10:59",
|
||||
"updated_at": "2023-05-03 11:11:22"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"code": 200,
|
||||
"status":true
|
||||
}
|
|
@ -0,0 +1,404 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"status": "Menunggu Konfirmasi",
|
||||
"transaksi": {
|
||||
"kode_tr": "TRDKN5376",
|
||||
"status_konfirm": "1",
|
||||
"status_pesanan": "1",
|
||||
"tanggal": "2023-11-11 08:29:13",
|
||||
"id_customer": "CUST98273",
|
||||
"id_kurir": "323423",
|
||||
"total_bayar": 16000,
|
||||
"total_harga": 16000,
|
||||
"kembalian": 0,
|
||||
"status_pengiriman": "proses",
|
||||
"bukti_pengiriman": null,
|
||||
"model_pembayaran": "cash",
|
||||
"created_at": "2023-11-11T08:29:13.000000Z",
|
||||
"updated_at": "2023-11-11T08:29:13.000000Z",
|
||||
"detail_transaksi": [
|
||||
{
|
||||
"kode_tr": "TRDKN5376",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 5600,
|
||||
"kode_menu": 18,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-11T08:29:13.000000Z",
|
||||
"updated_at": "2023-11-11T08:29:13.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 18,
|
||||
"nama": "Lalapan",
|
||||
"harga": 7000,
|
||||
"foto": "menu/WDNGW8EotGSqjmYuT8wrm5U4tmgXTVJWi4GmYfFo.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 3,
|
||||
"diskon": 20,
|
||||
"created_at": "2023-04-14 10:04:39",
|
||||
"updated_at": "2023-05-02 08:00:01"
|
||||
}
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN5376",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 2400,
|
||||
"kode_menu": 11,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-11T08:29:13.000000Z",
|
||||
"updated_at": "2023-11-11T08:29:13.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 11,
|
||||
"nama": "Es Teh",
|
||||
"harga": 3000,
|
||||
"foto": "menu/A6x5TjzFfKJ39oOyDJOeCTuvffL56HD0KmWn4ipd.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "minuman",
|
||||
"id_kantin": 4,
|
||||
"diskon": 20,
|
||||
"created_at": "2023-04-14 09:39:20",
|
||||
"updated_at": "2023-05-03 11:12:04"
|
||||
}
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN5376",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 5000,
|
||||
"kode_menu": 10,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-11T08:29:13.000000Z",
|
||||
"updated_at": "2023-11-11T08:29:13.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 10,
|
||||
"nama": "Gado-gado",
|
||||
"harga": 5000,
|
||||
"foto": "menu/MU1qcs3g6pNoNfhZmhspeOQEylRXU4Nl3Ki8DNJu.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 3,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 08:45:50",
|
||||
"updated_at": "2023-05-02 13:32:03"
|
||||
}
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN5376",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 3000,
|
||||
"kode_menu": 13,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-11T08:29:13.000000Z",
|
||||
"updated_at": "2023-11-11T08:29:13.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 13,
|
||||
"nama": "Aqua",
|
||||
"harga": 3000,
|
||||
"foto": "menu/rjwJkLd1Zo5RvWutZWqFuiEKF8MjklFkX1M0gZCC.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "minuman",
|
||||
"id_kantin": 1,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 09:40:19",
|
||||
"updated_at": "2023-05-08 14:29:57"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"status": "Menunggu Konfirmasi",
|
||||
"transaksi": {
|
||||
"kode_tr": "TRDKN8302",
|
||||
"status_konfirm": "1",
|
||||
"status_pesanan": "1",
|
||||
"tanggal": "2023-11-11 06:18:53",
|
||||
"id_customer": "CUST98273",
|
||||
"id_kurir": "323423",
|
||||
"total_bayar": 150,
|
||||
"total_harga": 120,
|
||||
"kembalian": 30,
|
||||
"status_pengiriman": "proses",
|
||||
"bukti_pengiriman": null,
|
||||
"model_pembayaran": "cash",
|
||||
"created_at": "2023-11-11T06:18:53.000000Z",
|
||||
"updated_at": "2023-11-11T06:18:53.000000Z",
|
||||
"detail_transaksi": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"status": "Menunggu Konfirmasi",
|
||||
"transaksi": {
|
||||
"kode_tr": "TRDKN8846",
|
||||
"status_konfirm": "1",
|
||||
"status_pesanan": "1",
|
||||
"tanggal": "2023-11-11 06:27:34",
|
||||
"id_customer": "CUST98273",
|
||||
"id_kurir": "323423",
|
||||
"total_bayar": 16000,
|
||||
"total_harga": 16000,
|
||||
"kembalian": 0,
|
||||
"status_pengiriman": "proses",
|
||||
"bukti_pengiriman": null,
|
||||
"model_pembayaran": "cash",
|
||||
"created_at": "2023-11-11T06:27:34.000000Z",
|
||||
"updated_at": "2023-11-11T06:27:34.000000Z",
|
||||
"detail_transaksi": [
|
||||
{
|
||||
"kode_tr": "TRDKN8846",
|
||||
"QTY": 2,
|
||||
"subtotal_bayar": 11200,
|
||||
"kode_menu": 18,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-11T06:27:34.000000Z",
|
||||
"updated_at": "2023-11-11T06:27:34.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 18,
|
||||
"nama": "Lalapan",
|
||||
"harga": 7000,
|
||||
"foto": "menu/WDNGW8EotGSqjmYuT8wrm5U4tmgXTVJWi4GmYfFo.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 3,
|
||||
"diskon": 20,
|
||||
"created_at": "2023-04-14 10:04:39",
|
||||
"updated_at": "2023-05-02 08:00:01"
|
||||
}
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN8846",
|
||||
"QTY": 2,
|
||||
"subtotal_bayar": 4800,
|
||||
"kode_menu": 11,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-11T06:27:34.000000Z",
|
||||
"updated_at": "2023-11-11T06:27:34.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 11,
|
||||
"nama": "Es Teh",
|
||||
"harga": 3000,
|
||||
"foto": "menu/A6x5TjzFfKJ39oOyDJOeCTuvffL56HD0KmWn4ipd.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "minuman",
|
||||
"id_kantin": 4,
|
||||
"diskon": 20,
|
||||
"created_at": "2023-04-14 09:39:20",
|
||||
"updated_at": "2023-05-03 11:12:04"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"status": "Menunggu Konfirmasi",
|
||||
"transaksi": {
|
||||
"kode_tr": "TRDKN8882",
|
||||
"status_konfirm": "1",
|
||||
"status_pesanan": "1",
|
||||
"tanggal": "2023-10-21 09:32:59",
|
||||
"id_customer": "CUST98273",
|
||||
"id_kurir": "323423",
|
||||
"total_bayar": 100000,
|
||||
"total_harga": 50000,
|
||||
"kembalian": 50000,
|
||||
"status_pengiriman": "proses",
|
||||
"bukti_pengiriman": "fefawsdfasd",
|
||||
"model_pembayaran": "cash",
|
||||
"created_at": "2023-11-10T05:17:55.000000Z",
|
||||
"updated_at": "2023-11-10T12:46:28.000000Z",
|
||||
"detail_transaksi": [
|
||||
{
|
||||
"kode_tr": "TRDKN8882",
|
||||
"QTY": 2,
|
||||
"subtotal_bayar": 20000,
|
||||
"kode_menu": 20,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-10T05:17:55.000000Z",
|
||||
"updated_at": "2023-11-10T12:46:28.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 20,
|
||||
"nama": "Ayam Geprek",
|
||||
"harga": 10000,
|
||||
"foto": "menu/jSU3bn6yUBulPNfClPWfA0HFZNU0NheKTfyMdjiS.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 2,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-18 23:58:10",
|
||||
"updated_at": "2023-05-09 09:53:23"
|
||||
}
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN8882",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 10000,
|
||||
"kode_menu": 16,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-10T05:17:55.000000Z",
|
||||
"updated_at": "2023-11-10T12:46:28.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 16,
|
||||
"nama": "Ayam Bakar",
|
||||
"harga": 12000,
|
||||
"foto": "menu/n9hWAwaqoFiZjnNMcDZlaaiAiH6aC2Wb5fEfi6cJ.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 1,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 09:57:50",
|
||||
"updated_at": "2023-05-03 13:23:36"
|
||||
}
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN8882",
|
||||
"QTY": 4,
|
||||
"subtotal_bayar": 40000,
|
||||
"kode_menu": 20,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-10T05:17:55.000000Z",
|
||||
"updated_at": "2023-11-10T12:46:28.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 20,
|
||||
"nama": "Ayam Geprek",
|
||||
"harga": 10000,
|
||||
"foto": "menu/jSU3bn6yUBulPNfClPWfA0HFZNU0NheKTfyMdjiS.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 2,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-18 23:58:10",
|
||||
"updated_at": "2023-05-09 09:53:23"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"status": "Menunggu Konfirmasi",
|
||||
"transaksi": {
|
||||
"kode_tr": "TRDKN9272",
|
||||
"status_konfirm": "1",
|
||||
"status_pesanan": "1",
|
||||
"tanggal": "2023-10-21 09:32:59",
|
||||
"id_customer": "CUST98273",
|
||||
"id_kurir": "323423",
|
||||
"total_bayar": 50000,
|
||||
"total_harga": 30000,
|
||||
"kembalian": 20000,
|
||||
"status_pengiriman": "proses",
|
||||
"bukti_pengiriman": "fefawsdfasd",
|
||||
"model_pembayaran": "cash",
|
||||
"created_at": "2023-11-08T05:17:55.000000Z",
|
||||
"updated_at": "2023-11-08T12:46:28.000000Z",
|
||||
"detail_transaksi": [
|
||||
{
|
||||
"kode_tr": "TRDKN9272",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 10000,
|
||||
"kode_menu": 16,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-08T05:17:55.000000Z",
|
||||
"updated_at": "2023-11-08T12:46:28.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 16,
|
||||
"nama": "Ayam Bakar",
|
||||
"harga": 12000,
|
||||
"foto": "menu/n9hWAwaqoFiZjnNMcDZlaaiAiH6aC2Wb5fEfi6cJ.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 1,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 09:57:50",
|
||||
"updated_at": "2023-05-03 13:23:36"
|
||||
}
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN9272",
|
||||
"QTY": 2,
|
||||
"subtotal_bayar": 20000,
|
||||
"kode_menu": 20,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-08T05:17:55.000000Z",
|
||||
"updated_at": "2023-11-08T12:46:28.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 20,
|
||||
"nama": "Ayam Geprek",
|
||||
"harga": 10000,
|
||||
"foto": "menu/jSU3bn6yUBulPNfClPWfA0HFZNU0NheKTfyMdjiS.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 2,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-18 23:58:10",
|
||||
"updated_at": "2023-05-09 09:53:23"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"status": "Menunggu Konfirmasi",
|
||||
"transaksi": {
|
||||
"kode_tr": "TRDKN9928",
|
||||
"status_konfirm": "1",
|
||||
"status_pesanan": "1",
|
||||
"tanggal": "2023-10-21 09:32:59",
|
||||
"id_customer": "CUST98273",
|
||||
"id_kurir": "323423",
|
||||
"total_bayar": 100000,
|
||||
"total_harga": 50000,
|
||||
"kembalian": 50000,
|
||||
"status_pengiriman": "proses",
|
||||
"bukti_pengiriman": "fefawsdfasd",
|
||||
"model_pembayaran": "cash",
|
||||
"created_at": "2023-11-09T05:17:55.000000Z",
|
||||
"updated_at": "2023-11-09T12:46:28.000000Z",
|
||||
"detail_transaksi": [
|
||||
{
|
||||
"kode_tr": "TRDKN9928",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 10000,
|
||||
"kode_menu": 16,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-09T05:17:55.000000Z",
|
||||
"updated_at": "2023-11-09T12:46:28.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 16,
|
||||
"nama": "Ayam Bakar",
|
||||
"harga": 12000,
|
||||
"foto": "menu/n9hWAwaqoFiZjnNMcDZlaaiAiH6aC2Wb5fEfi6cJ.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 1,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 09:57:50",
|
||||
"updated_at": "2023-05-03 13:23:36"
|
||||
}
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN9928",
|
||||
"QTY": 4,
|
||||
"subtotal_bayar": 40000,
|
||||
"kode_menu": 20,
|
||||
"status_konfirm": null,
|
||||
"created_at": "2023-11-09T05:17:55.000000Z",
|
||||
"updated_at": "2023-11-09T12:46:28.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 20,
|
||||
"nama": "Ayam Geprek",
|
||||
"harga": 10000,
|
||||
"foto": "menu/jSU3bn6yUBulPNfClPWfA0HFZNU0NheKTfyMdjiS.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 2,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-18 23:58:10",
|
||||
"updated_at": "2023-05-09 09:53:23"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"foto": "menu/HvUL2FL75oZyzqvSqQMIqwy0sz3z0lZPG81YSNyM.png",
|
||||
"id_menu": 17,
|
||||
"id_detail": "TRDKN6988",
|
||||
"tanggal": "2023-12-06 19:18:57",
|
||||
"kode_tr": "TRDKN6988",
|
||||
"pembeli": "gggamink",
|
||||
"no_telepon_pembeli": "083172671",
|
||||
"model_pembayaran": "cash",
|
||||
"no_meja": 1,
|
||||
"kantin": 1,
|
||||
"pesanan": "Es Jeruk",
|
||||
"harga_satuan": 3000,
|
||||
"jumlah": 1,
|
||||
"diskon": null,
|
||||
"status": "proses",
|
||||
"status_detail": "menunggu"
|
||||
},
|
||||
{
|
||||
"foto": "menu/lJu3UQn5Urh4f6yIvB1isfLjfuah1GaFGXRQHR8R.png",
|
||||
"id_menu": 15,
|
||||
"id_detail": "TRDKN6988",
|
||||
"tanggal": "2023-12-06 19:18:57",
|
||||
"kode_tr": "TRDKN6988",
|
||||
"pembeli": "gggamink",
|
||||
"no_telepon_pembeli": "083172671",
|
||||
"model_pembayaran": "cash",
|
||||
"no_meja": 1,
|
||||
"kantin": 1,
|
||||
"pesanan": "Nasi Goreng",
|
||||
"harga_satuan": 8000,
|
||||
"jumlah": 1,
|
||||
"diskon": null,
|
||||
"status": "proses",
|
||||
"status_detail": "menunggu"
|
||||
},
|
||||
{
|
||||
"foto": "menu/rjwJkLd1Zo5RvWutZWqFuiEKF8MjklFkX1M0gZCC.png",
|
||||
"id_menu": 13,
|
||||
"id_detail": "TRDKN6988",
|
||||
"tanggal": "2023-12-06 19:18:57",
|
||||
"kode_tr": "TRDKN6988",
|
||||
"pembeli": "gggamink",
|
||||
"no_telepon_pembeli": "083172671",
|
||||
"model_pembayaran": "cash",
|
||||
"no_meja": 1,
|
||||
"kantin": 1,
|
||||
"pesanan": "Aqua",
|
||||
"harga_satuan": 3000,
|
||||
"jumlah": 1,
|
||||
"diskon": null,
|
||||
"status": "proses",
|
||||
"status_detail": "menunggu"
|
||||
}
|
||||
],
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,181 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"status": "proses",
|
||||
"transaksi": {
|
||||
"kode_tr": "TRDKN2708",
|
||||
"status_konfirm": "1",
|
||||
"status_pesanan": "3",
|
||||
"tanggal": "2023-11-26 13:40:50",
|
||||
"id_customer": "CUST98273",
|
||||
"id_kurir": "3219",
|
||||
"id_kasir": null,
|
||||
"total_bayar": 11000,
|
||||
"total_harga": 11000,
|
||||
"kembalian": 0,
|
||||
"status_pengiriman": "proses",
|
||||
"bukti_pengiriman": null,
|
||||
"no_meja": 0,
|
||||
"model_pembayaran": "cash",
|
||||
"expired_at": "2023-11-26 13:41:50",
|
||||
"created_at": "2023-12-03T09:57:10.000000Z",
|
||||
"updated_at": "2023-12-03T11:37:33.000000Z",
|
||||
"nama": "fathur",
|
||||
"no_telepon": "32e233dw3",
|
||||
"email_verified": 1,
|
||||
"kode_verified": null,
|
||||
"token": "BdSdZGIkyHZKNKeFXrxQIsOBOu52rcdroMpTW8E70DbSAu3VjkidwxZ1fdn6DtlY0QwxsgoTcVIpLHzzaHTuzx3OQUplWHxl7GlGyE9g9Y3h3Sj5lNeKHG1kwqmfPjfS7XYhhDkr128h7ZwRntfl6YW9BVIiZiOvuQjGGyz4z6ZCHfuENGse3dFByq3E1AqOSLU4HhZb",
|
||||
"token_fcm": null,
|
||||
"alamat": "Jl.Cempaka No.7 Gebang, Jember Rw.4 Rt.2",
|
||||
"email": "fathurrahman.dk@gmail.com",
|
||||
"password": "$2y$10$h8ElOD1nOK6SO1/ZBITM2./T.YnvCXVzogmSd1R0GhSMyMMrlwGLC",
|
||||
"foto": null,
|
||||
"google_id": null,
|
||||
"detail_transaksi": [
|
||||
{
|
||||
"kode_tr": "TRDKN2708",
|
||||
"QTY": 4,
|
||||
"subtotal_bayar": 40000,
|
||||
"kode_menu": 20,
|
||||
"status_konfirm": "menunggu",
|
||||
"created_at": "2023-11-09T22:17:55.000000Z",
|
||||
"updated_at": "2023-11-10T05:46:28.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 20,
|
||||
"nama": "Ayam Geprek",
|
||||
"harga": 10000,
|
||||
"foto": "menu/jSU3bn6yUBulPNfClPWfA0HFZNU0NheKTfyMdjiS.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 2,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-18 23:58:10",
|
||||
"updated_at": "2023-05-09 09:53:23"
|
||||
}
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN2708",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 3000,
|
||||
"kode_menu": 13,
|
||||
"status_konfirm": "menunggu",
|
||||
"created_at": "2023-11-26T06:40:50.000000Z",
|
||||
"updated_at": "2023-11-26T10:04:43.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 13,
|
||||
"nama": "Aqua",
|
||||
"harga": 3000,
|
||||
"foto": "menu/rjwJkLd1Zo5RvWutZWqFuiEKF8MjklFkX1M0gZCC.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "minuman",
|
||||
"id_kantin": 1,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 09:40:19",
|
||||
"updated_at": "2023-05-08 14:29:57"
|
||||
}
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN2708",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 8000,
|
||||
"kode_menu": 15,
|
||||
"status_konfirm": "menunggu",
|
||||
"created_at": "2023-11-26T06:40:50.000000Z",
|
||||
"updated_at": "2023-11-26T10:04:43.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 15,
|
||||
"nama": "Nasi Goreng",
|
||||
"harga": 8000,
|
||||
"foto": "menu/lJu3UQn5Urh4f6yIvB1isfLjfuah1GaFGXRQHR8R.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 1,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 09:55:36",
|
||||
"updated_at": "2023-05-08 14:30:06"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"status": "proses",
|
||||
"transaksi": {
|
||||
"kode_tr": "TRDKN5138",
|
||||
"status_konfirm": "1",
|
||||
"status_pesanan": "3",
|
||||
"tanggal": "2023-11-26 13:49:41",
|
||||
"id_customer": "CUST98273",
|
||||
"id_kurir": "3219",
|
||||
"id_kasir": null,
|
||||
"total_bayar": 8000,
|
||||
"total_harga": 8000,
|
||||
"kembalian": 0,
|
||||
"status_pengiriman": "proses",
|
||||
"bukti_pengiriman": null,
|
||||
"no_meja": 0,
|
||||
"model_pembayaran": "cash",
|
||||
"expired_at": "2023-11-26 13:50:41",
|
||||
"created_at": "2023-12-03T09:57:10.000000Z",
|
||||
"updated_at": "2023-12-03T11:37:33.000000Z",
|
||||
"nama": "fathur",
|
||||
"no_telepon": "32e233dw3",
|
||||
"email_verified": 1,
|
||||
"kode_verified": null,
|
||||
"token": "BdSdZGIkyHZKNKeFXrxQIsOBOu52rcdroMpTW8E70DbSAu3VjkidwxZ1fdn6DtlY0QwxsgoTcVIpLHzzaHTuzx3OQUplWHxl7GlGyE9g9Y3h3Sj5lNeKHG1kwqmfPjfS7XYhhDkr128h7ZwRntfl6YW9BVIiZiOvuQjGGyz4z6ZCHfuENGse3dFByq3E1AqOSLU4HhZb",
|
||||
"token_fcm": null,
|
||||
"alamat": "Jl.Cempaka No.7 Gebang, Jember Rw.4 Rt.2",
|
||||
"email": "fathurrahman.dk@gmail.com",
|
||||
"password": "$2y$10$h8ElOD1nOK6SO1/ZBITM2./T.YnvCXVzogmSd1R0GhSMyMMrlwGLC",
|
||||
"foto": null,
|
||||
"google_id": null,
|
||||
"detail_transaksi": [
|
||||
{
|
||||
"kode_tr": "TRDKN5138",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 5000,
|
||||
"kode_menu": 10,
|
||||
"status_konfirm": "menunggu",
|
||||
"created_at": "2023-11-26T06:49:41.000000Z",
|
||||
"updated_at": "2023-11-26T10:04:43.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 10,
|
||||
"nama": "Gado-gado",
|
||||
"harga": 5000,
|
||||
"foto": "menu/MU1qcs3g6pNoNfhZmhspeOQEylRXU4Nl3Ki8DNJu.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 3,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 08:45:50",
|
||||
"updated_at": "2023-05-02 13:32:03"
|
||||
}
|
||||
},
|
||||
{
|
||||
"kode_tr": "TRDKN5138",
|
||||
"QTY": 1,
|
||||
"subtotal_bayar": 3000,
|
||||
"kode_menu": 11,
|
||||
"status_konfirm": "menunggu",
|
||||
"created_at": "2023-11-26T06:49:41.000000Z",
|
||||
"updated_at": "2023-11-26T10:04:43.000000Z",
|
||||
"menu": {
|
||||
"id_menu": 11,
|
||||
"nama": "Es Teh",
|
||||
"harga": 3000,
|
||||
"foto": "menu/A6x5TjzFfKJ39oOyDJOeCTuvffL56HD0KmWn4ipd.png",
|
||||
"status_stok": "ada",
|
||||
"kategori": "minuman",
|
||||
"id_kantin": 4,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 09:39:20",
|
||||
"updated_at": "2023-05-03 11:12:04"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"data": "TRDKN7116",
|
||||
"code": 200,
|
||||
"status":true
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"id_menu": 16,
|
||||
"nama": "Ayam Bakar",
|
||||
"harga": 12000,
|
||||
"total_qty": "1",
|
||||
"total_pendapatan": "12000"
|
||||
},
|
||||
{
|
||||
"id_menu": 15,
|
||||
"nama": "Nasi Goreng",
|
||||
"harga": 8000,
|
||||
"total_qty": "4",
|
||||
"total_pendapatan": "32000"
|
||||
},
|
||||
{
|
||||
"id_menu": 13,
|
||||
"nama": "Aqua",
|
||||
"harga": 3000,
|
||||
"total_qty": "4",
|
||||
"total_pendapatan": "12000"
|
||||
}
|
||||
],
|
||||
"data2": 56000,
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"id_menu": 11,
|
||||
"nama": "Sate Madura",
|
||||
"harga": 3000,
|
||||
"foto": "menu/sate.jpg",
|
||||
"status_stok": "ada",
|
||||
"kategori": "makanan",
|
||||
"id_kantin": 4,
|
||||
"diskon": null,
|
||||
"created_at": "2023-04-14 09:39:20",
|
||||
"updated_at": "2023-05-03 11:12:04"
|
||||
}
|
||||
],
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"data": "0",
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"data": {
|
||||
"penjualanBulanIni": "8000",
|
||||
"penjualanHariIni": "8000"
|
||||
},
|
||||
"code": 200,
|
||||
"status": true
|
||||
}
|
|
@ -0,0 +1,334 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"id_gedung": 1,
|
||||
"nama_gedung": "Perpustakaan POLIJE",
|
||||
"lattitude": "-8.160116",
|
||||
"longtitude": "113.723578",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 2,
|
||||
"nama_gedung": "Ruang Kuliah Bersama Polije",
|
||||
"lattitude": "-8.160195",
|
||||
"longtitude": "113.723856",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 3,
|
||||
"nama_gedung": "Laboratorium Ekonomi Polije",
|
||||
"lattitude": "-8.160017",
|
||||
"longtitude": "113.723785",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 4,
|
||||
"nama_gedung": "Gedung Lab. Tanah POLIJE",
|
||||
"lattitude": "-8.159784",
|
||||
"longtitude": "113.724064",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 5,
|
||||
"nama_gedung": "Lab PHTP",
|
||||
"lattitude": "-8.159392",
|
||||
"longtitude": "113.724349",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 6,
|
||||
"nama_gedung": "Laboratorium Logam dan kayu( jurusan TP)",
|
||||
"lattitude": "-8.156659",
|
||||
"longtitude": "113.725220",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 7,
|
||||
"nama_gedung": "Gedung Teknologi Pertanian Polije",
|
||||
"lattitude": "-8.156042",
|
||||
"longtitude": "113.725064",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 8,
|
||||
"nama_gedung": "TEFA BAKERY SIP",
|
||||
"lattitude": "-8.155023577439197",
|
||||
"longtitude": "113.72706008530149",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 9,
|
||||
"nama_gedung": "Unit Pengalengan Ikan Politeknik Negeri Jember",
|
||||
"lattitude": "-8.155768",
|
||||
"longtitude": "113.727034",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 10,
|
||||
"nama_gedung": "Rotogravure Printing Converting POLIJE",
|
||||
"lattitude": "-8.156123",
|
||||
"longtitude": "113.726214",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 11,
|
||||
"nama_gedung": "Unit Produksi Benih Polije",
|
||||
"lattitude": "-8.156016",
|
||||
"longtitude": "113.725743",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 12,
|
||||
"nama_gedung": "GEDUNG PASCA SARJANA",
|
||||
"lattitude": "-8.156897",
|
||||
"longtitude": "113.722931",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 13,
|
||||
"nama_gedung": "Gedung Jurusan Peternakan Politeknik Negeri Jember",
|
||||
"lattitude": "-8.157400",
|
||||
"longtitude": "113.723630",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 14,
|
||||
"nama_gedung": "Gedung Robotika Polije",
|
||||
"lattitude": "-8.160470",
|
||||
"longtitude": "113.723901",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 15,
|
||||
"nama_gedung": "Jurusan Manajemen Agribisnis POLIJE",
|
||||
"lattitude": "-8.160376",
|
||||
"longtitude": "113.723970",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 16,
|
||||
"nama_gedung": "GEDUNG MNA",
|
||||
"lattitude": "-8.160191",
|
||||
"longtitude": "113.724192",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 17,
|
||||
"nama_gedung": "GEDUNG PETERNAKAN",
|
||||
"lattitude": "-8.157521",
|
||||
"longtitude": "113.723948",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 18,
|
||||
"nama_gedung": "Gedung Jurusan Produksi Pertanian",
|
||||
"lattitude": "-8.158176",
|
||||
"longtitude": "113.724364",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 19,
|
||||
"nama_gedung": "GEDUNG TEKNIK",
|
||||
"lattitude": "-8.157958304719116",
|
||||
"longtitude": "113.72347923942567",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 20,
|
||||
"nama_gedung": "Gedung Teknologi Produksi Benih",
|
||||
"lattitude": "-8.158555",
|
||||
"longtitude": "113.724020",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 21,
|
||||
"nama_gedung": "Gedung Prodi Destinasi Pariwisata",
|
||||
"lattitude": "-8.158584539376337",
|
||||
"longtitude": "113.72363975463105",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 22,
|
||||
"nama_gedung": "Gedung Peralatan dan Mesin Pertanian POLIJE",
|
||||
"lattitude": "-8.158806",
|
||||
"longtitude": "113.723297",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 23,
|
||||
"nama_gedung": "Laboratorium Pusat Biosain",
|
||||
"lattitude": "-8.159041",
|
||||
"longtitude": "113.723152",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 24,
|
||||
"nama_gedung": "Unit Layanan Pengadaan (ULP)",
|
||||
"lattitude": "-8.158331644587081",
|
||||
"longtitude": "113.722820339777",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 25,
|
||||
"nama_gedung": "Gedung HMJTI",
|
||||
"lattitude": "-8.159404",
|
||||
"longtitude": "113.722580",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 26,
|
||||
"nama_gedung": "Laboratorium Analisis Jurusan Teknologi Pertanian",
|
||||
"lattitude": "-8.159424",
|
||||
"longtitude": "113.722989",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 27,
|
||||
"nama_gedung": "LSP POLIJE",
|
||||
"lattitude": "-8.159706",
|
||||
"longtitude": "113.722871",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 28,
|
||||
"nama_gedung": "Tax Center Politeknik Negeri Jember",
|
||||
"lattitude": "-8.160078",
|
||||
"longtitude": "113.722752",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 29,
|
||||
"nama_gedung": "Gedung Serbaguna Soetrisno Widjaja",
|
||||
"lattitude": "-8.159988",
|
||||
"longtitude": "113.722392",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 30,
|
||||
"nama_gedung": "GEDUNG KESEHATAN",
|
||||
"lattitude": "-8.158454319901814",
|
||||
"longtitude": "113.72201755357489",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 31,
|
||||
"nama_gedung": "Gudang Pendingin",
|
||||
"lattitude": "-8.159339",
|
||||
"longtitude": "113.722447",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 32,
|
||||
"nama_gedung": "Asrama Mahasiswa Join Degree",
|
||||
"lattitude": "-8.157570",
|
||||
"longtitude": "113.722280",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 33,
|
||||
"nama_gedung": "Gedung Jurusan TI Politeknik Negeri Jember",
|
||||
"lattitude": "-8.157738",
|
||||
"longtitude": "113.722858",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 34,
|
||||
"nama_gedung": "Konsultasi Gizi , Konseling Gizi, Nutrition Care Center (NCC)",
|
||||
"lattitude": "-8.159234",
|
||||
"longtitude": "113.721543",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 35,
|
||||
"nama_gedung": "Lapangan Tenis POLIJE",
|
||||
"lattitude": "-8.159159",
|
||||
"longtitude": "113.721223",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 36,
|
||||
"nama_gedung": "Laboratorium Bengkel Logam dan Kayu",
|
||||
"lattitude": "-8.160249260136785",
|
||||
"longtitude": "113.72092267689897",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 37,
|
||||
"nama_gedung": "GEDUNG AAA",
|
||||
"lattitude": "-8.159934997007085",
|
||||
"longtitude": "113.72308059611083",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 38,
|
||||
"nama_gedung": "GEDUNG POLIKLINIK",
|
||||
"lattitude": "-8.160524418469752",
|
||||
"longtitude": "113.72156682439805",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 39,
|
||||
"nama_gedung": "GEDUNG GOR 45",
|
||||
"lattitude": "-8.160034995681048",
|
||||
"longtitude": "113.72055705142753",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 40,
|
||||
"nama_gedung": "GEDUNG TEFA",
|
||||
"lattitude": "-8.155321814766864",
|
||||
"longtitude": "113.72701170869829",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
},
|
||||
{
|
||||
"id_gedung": 41,
|
||||
"nama_gedung": "Sekretariat UKM KSR PMI Unit Politeknik Negeri Jember",
|
||||
"lattitude": "-8.160523",
|
||||
"longtitude": "113.722032",
|
||||
"created_at": "2024-01-17T02:32:27.000000Z",
|
||||
"updated_at": "2024-01-17T02:32:27.000000Z"
|
||||
}
|
||||
],
|
||||
"status": true,
|
||||
"message": "success fetch data"
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
{"data":{"id":1,"version_number":1},"code":200,"status":true}
|
After Width: | Height: | Size: 148 KiB |
After Width: | Height: | Size: 402 B |
After Width: | Height: | Size: 124 KiB |
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"modules": [],
|
||||
"module_directory_name": "module",
|
||||
"experimental_mode": false,
|
||||
"learning_mode": false,
|
||||
"unfreezed": true,
|
||||
"use_cubit": false,
|
||||
"ignore_core_generator_for_directories": [
|
||||
"lib/model",
|
||||
"lib/models"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,34 @@
|
|||
**/dgph
|
||||
*.mode1v3
|
||||
*.mode2v3
|
||||
*.moved-aside
|
||||
*.pbxuser
|
||||
*.perspectivev3
|
||||
**/*sync/
|
||||
.sconsign.dblite
|
||||
.tags*
|
||||
**/.vagrant/
|
||||
**/DerivedData/
|
||||
Icon?
|
||||
**/Pods/
|
||||
**/.symlinks/
|
||||
profile
|
||||
xcuserdata
|
||||
**/.generated/
|
||||
Flutter/App.framework
|
||||
Flutter/Flutter.framework
|
||||
Flutter/Flutter.podspec
|
||||
Flutter/Generated.xcconfig
|
||||
Flutter/ephemeral/
|
||||
Flutter/app.flx
|
||||
Flutter/app.zip
|
||||
Flutter/flutter_assets/
|
||||
Flutter/flutter_export_environment.sh
|
||||
ServiceDefinitions.json
|
||||
Runner/GeneratedPluginRegistrant.*
|
||||
|
||||
# Exceptions to above rules.
|
||||
!default.mode1v3
|
||||
!default.mode2v3
|
||||
!default.pbxuser
|
||||
!default.perspectivev3
|
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>App</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>io.flutter.flutter.app</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>App</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0</string>
|
||||
<key>MinimumOSVersion</key>
|
||||
<string>11.0</string>
|
||||
</dict>
|
||||
</plist>
|
|
@ -0,0 +1 @@
|
|||
#include "Generated.xcconfig"
|
|
@ -0,0 +1 @@
|
|||
#include "Generated.xcconfig"
|
|
@ -0,0 +1,614 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 54;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
|
||||
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
|
||||
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
|
||||
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
|
||||
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
|
||||
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
|
||||
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 97C146E61CF9000F007C117D /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 97C146ED1CF9000F007C117D;
|
||||
remoteInfo = Runner;
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXCopyFilesBuildPhase section */
|
||||
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
|
||||
isa = PBXCopyFilesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
dstPath = "";
|
||||
dstSubfolderSpec = 10;
|
||||
files = (
|
||||
);
|
||||
name = "Embed Frameworks";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
|
||||
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
|
||||
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
|
||||
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
|
||||
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
||||
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
|
||||
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
|
||||
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
|
||||
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
||||
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
||||
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
||||
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
|
||||
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
97C146EB1CF9000F007C117D /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
9740EEB11CF90186004384FC /* Flutter */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
|
||||
9740EEB21CF90195004384FC /* Debug.xcconfig */,
|
||||
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
|
||||
9740EEB31CF90195004384FC /* Generated.xcconfig */,
|
||||
);
|
||||
name = Flutter;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
331C8082294A63A400263BE5 /* RunnerTests */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
331C807B294A618700263BE5 /* RunnerTests.swift */,
|
||||
);
|
||||
path = RunnerTests;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
97C146E51CF9000F007C117D = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
9740EEB11CF90186004384FC /* Flutter */,
|
||||
97C146F01CF9000F007C117D /* Runner */,
|
||||
97C146EF1CF9000F007C117D /* Products */,
|
||||
331C8082294A63A400263BE5 /* RunnerTests */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
97C146EF1CF9000F007C117D /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
97C146EE1CF9000F007C117D /* Runner.app */,
|
||||
331C8081294A63A400263BE5 /* RunnerTests.xctest */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
97C146F01CF9000F007C117D /* Runner */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
97C146FA1CF9000F007C117D /* Main.storyboard */,
|
||||
97C146FD1CF9000F007C117D /* Assets.xcassets */,
|
||||
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
|
||||
97C147021CF9000F007C117D /* Info.plist */,
|
||||
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
|
||||
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
|
||||
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
|
||||
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
|
||||
);
|
||||
path = Runner;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
331C8080294A63A400263BE5 /* RunnerTests */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
|
||||
buildPhases = (
|
||||
331C807D294A63A400263BE5 /* Sources */,
|
||||
331C807E294A63A400263BE5 /* Frameworks */,
|
||||
331C807F294A63A400263BE5 /* Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
331C8086294A63A400263BE5 /* PBXTargetDependency */,
|
||||
);
|
||||
name = RunnerTests;
|
||||
productName = RunnerTests;
|
||||
productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
|
||||
productType = "com.apple.product-type.bundle.unit-test";
|
||||
};
|
||||
97C146ED1CF9000F007C117D /* Runner */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
|
||||
buildPhases = (
|
||||
9740EEB61CF901F6004384FC /* Run Script */,
|
||||
97C146EA1CF9000F007C117D /* Sources */,
|
||||
97C146EB1CF9000F007C117D /* Frameworks */,
|
||||
97C146EC1CF9000F007C117D /* Resources */,
|
||||
9705A1C41CF9048500538489 /* Embed Frameworks */,
|
||||
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = Runner;
|
||||
productName = Runner;
|
||||
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
97C146E61CF9000F007C117D /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
BuildIndependentTargetsInParallel = YES;
|
||||
LastUpgradeCheck = 1430;
|
||||
ORGANIZATIONNAME = "";
|
||||
TargetAttributes = {
|
||||
331C8080294A63A400263BE5 = {
|
||||
CreatedOnToolsVersion = 14.0;
|
||||
TestTargetID = 97C146ED1CF9000F007C117D;
|
||||
};
|
||||
97C146ED1CF9000F007C117D = {
|
||||
CreatedOnToolsVersion = 7.3.1;
|
||||
LastSwiftMigration = 1100;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
|
||||
compatibilityVersion = "Xcode 9.3";
|
||||
developmentRegion = en;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
Base,
|
||||
);
|
||||
mainGroup = 97C146E51CF9000F007C117D;
|
||||
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
97C146ED1CF9000F007C117D /* Runner */,
|
||||
331C8080294A63A400263BE5 /* RunnerTests */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
331C807F294A63A400263BE5 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
97C146EC1CF9000F007C117D /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
|
||||
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
|
||||
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
|
||||
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
alwaysOutOfDate = 1;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
|
||||
);
|
||||
name = "Thin Binary";
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
|
||||
};
|
||||
9740EEB61CF901F6004384FC /* Run Script */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
alwaysOutOfDate = 1;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = "Run Script";
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
331C807D294A63A400263BE5 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
97C146EA1CF9000F007C117D /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
|
||||
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = 97C146ED1CF9000F007C117D /* Runner */;
|
||||
targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
97C146FB1CF9000F007C117D /* Base */,
|
||||
);
|
||||
name = Main.storyboard;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
97C147001CF9000F007C117D /* Base */,
|
||||
);
|
||||
name = LaunchScreen.storyboard;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
249021D3217E4FDB00AE95B9 /* Profile */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
SDKROOT = iphoneos;
|
||||
SUPPORTED_PLATFORMS = iphoneos;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
name = Profile;
|
||||
};
|
||||
249021D4217E4FDB00AE95B9 /* Profile */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||
ENABLE_BITCODE = NO;
|
||||
INFOPLIST_FILE = Runner/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tefa.dikatin;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||
SWIFT_VERSION = 5.0;
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
};
|
||||
name = Profile;
|
||||
};
|
||||
331C8088294A63A400263BE5 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = AE0B7B92F70575B8D7E0D07E /* Pods-RunnerTests.debug.xcconfig */;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tefa.dikatin.RunnerTests;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||
SWIFT_VERSION = 5.0;
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
331C8089294A63A400263BE5 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 89B67EB44CE7B6631473024E /* Pods-RunnerTests.release.xcconfig */;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tefa.dikatin.RunnerTests;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SWIFT_VERSION = 5.0;
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
331C808A294A63A400263BE5 /* Profile */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 640959BDD8F10B91D80A66BE /* Pods-RunnerTests.profile.xcconfig */;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tefa.dikatin.RunnerTests;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SWIFT_VERSION = 5.0;
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
||||
};
|
||||
name = Profile;
|
||||
};
|
||||
97C147031CF9000F007C117D /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
||||
MTL_ENABLE_DEBUG_INFO = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = iphoneos;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
97C147041CF9000F007C117D /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
SDKROOT = iphoneos;
|
||||
SUPPORTED_PLATFORMS = iphoneos;
|
||||
SWIFT_COMPILATION_MODE = wholemodule;
|
||||
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
97C147061CF9000F007C117D /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||
ENABLE_BITCODE = NO;
|
||||
INFOPLIST_FILE = Runner/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tefa.dikatin;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||
SWIFT_VERSION = 5.0;
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
97C147071CF9000F007C117D /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||
ENABLE_BITCODE = NO;
|
||||
INFOPLIST_FILE = Runner/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tefa.dikatin;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||
SWIFT_VERSION = 5.0;
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
331C8088294A63A400263BE5 /* Debug */,
|
||||
331C8089294A63A400263BE5 /* Release */,
|
||||
331C808A294A63A400263BE5 /* Profile */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
97C147031CF9000F007C117D /* Debug */,
|
||||
97C147041CF9000F007C117D /* Release */,
|
||||
249021D3217E4FDB00AE95B9 /* Profile */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
97C147061CF9000F007C117D /* Debug */,
|
||||
97C147071CF9000F007C117D /* Release */,
|
||||
249021D4217E4FDB00AE95B9 /* Profile */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 97C146E61CF9000F007C117D /* Project object */;
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:">
|
||||
</FileRef>
|
||||
</Workspace>
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>IDEDidComputeMac32BitWarning</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>PreviewsEnabled</key>
|
||||
<false/>
|
||||
</dict>
|
||||
</plist>
|
|
@ -0,0 +1,98 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1430"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
buildImplicitDependencies = "YES">
|
||||
<BuildActionEntries>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
||||
BuildableName = "Runner.app"
|
||||
BlueprintName = "Runner"
|
||||
ReferencedContainer = "container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
</BuildAction>
|
||||
<TestAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
||||
BuildableName = "Runner.app"
|
||||
BlueprintName = "Runner"
|
||||
ReferencedContainer = "container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
<Testables>
|
||||
<TestableReference
|
||||
skipped = "NO"
|
||||
parallelizable = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "331C8080294A63A400263BE5"
|
||||
BuildableName = "RunnerTests.xctest"
|
||||
BlueprintName = "RunnerTests"
|
||||
ReferencedContainer = "container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</TestableReference>
|
||||
</Testables>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
launchStyle = "0"
|
||||
useCustomWorkingDirectory = "NO"
|
||||
ignoresPersistentStateOnLaunch = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
debugServiceExtension = "internal"
|
||||
allowLocationSimulation = "YES">
|
||||
<BuildableProductRunnable
|
||||
runnableDebuggingMode = "0">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
||||
BuildableName = "Runner.app"
|
||||
BlueprintName = "Runner"
|
||||
ReferencedContainer = "container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildableProductRunnable>
|
||||
</LaunchAction>
|
||||
<ProfileAction
|
||||
buildConfiguration = "Profile"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
debugDocumentVersioning = "YES">
|
||||
<BuildableProductRunnable
|
||||
runnableDebuggingMode = "0">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
||||
BuildableName = "Runner.app"
|
||||
BlueprintName = "Runner"
|
||||
ReferencedContainer = "container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildableProductRunnable>
|
||||
</ProfileAction>
|
||||
<AnalyzeAction
|
||||
buildConfiguration = "Debug">
|
||||
</AnalyzeAction>
|
||||
<ArchiveAction
|
||||
buildConfiguration = "Release"
|
||||
revealArchiveInOrganizer = "YES">
|
||||
</ArchiveAction>
|
||||
</Scheme>
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "group:Runner.xcodeproj">
|
||||
</FileRef>
|
||||
</Workspace>
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>IDEDidComputeMac32BitWarning</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>PreviewsEnabled</key>
|
||||
<false/>
|
||||
</dict>
|
||||
</plist>
|
|
@ -0,0 +1,13 @@
|
|||
import UIKit
|
||||
import Flutter
|
||||
|
||||
@UIApplicationMain
|
||||
@objc class AppDelegate: FlutterAppDelegate {
|
||||
override func application(
|
||||
_ application: UIApplication,
|
||||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
||||
) -> Bool {
|
||||
GeneratedPluginRegistrant.register(with: self)
|
||||
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
||||
}
|
||||
}
|
|
@ -0,0 +1,122 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"size" : "20x20",
|
||||
"idiom" : "iphone",
|
||||
"filename" : "Icon-App-20x20@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"size" : "20x20",
|
||||
"idiom" : "iphone",
|
||||
"filename" : "Icon-App-20x20@3x.png",
|
||||
"scale" : "3x"
|
||||
},
|
||||
{
|
||||
"size" : "29x29",
|
||||
"idiom" : "iphone",
|
||||
"filename" : "Icon-App-29x29@1x.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"size" : "29x29",
|
||||
"idiom" : "iphone",
|
||||
"filename" : "Icon-App-29x29@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"size" : "29x29",
|
||||
"idiom" : "iphone",
|
||||
"filename" : "Icon-App-29x29@3x.png",
|
||||
"scale" : "3x"
|
||||
},
|
||||
{
|
||||
"size" : "40x40",
|
||||
"idiom" : "iphone",
|
||||
"filename" : "Icon-App-40x40@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"size" : "40x40",
|
||||
"idiom" : "iphone",
|
||||
"filename" : "Icon-App-40x40@3x.png",
|
||||
"scale" : "3x"
|
||||
},
|
||||
{
|
||||
"size" : "60x60",
|
||||
"idiom" : "iphone",
|
||||
"filename" : "Icon-App-60x60@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"size" : "60x60",
|
||||
"idiom" : "iphone",
|
||||
"filename" : "Icon-App-60x60@3x.png",
|
||||
"scale" : "3x"
|
||||
},
|
||||
{
|
||||
"size" : "20x20",
|
||||
"idiom" : "ipad",
|
||||
"filename" : "Icon-App-20x20@1x.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"size" : "20x20",
|
||||
"idiom" : "ipad",
|
||||
"filename" : "Icon-App-20x20@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"size" : "29x29",
|
||||
"idiom" : "ipad",
|
||||
"filename" : "Icon-App-29x29@1x.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"size" : "29x29",
|
||||
"idiom" : "ipad",
|
||||
"filename" : "Icon-App-29x29@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"size" : "40x40",
|
||||
"idiom" : "ipad",
|
||||
"filename" : "Icon-App-40x40@1x.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"size" : "40x40",
|
||||
"idiom" : "ipad",
|
||||
"filename" : "Icon-App-40x40@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"size" : "76x76",
|
||||
"idiom" : "ipad",
|
||||
"filename" : "Icon-App-76x76@1x.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"size" : "76x76",
|
||||
"idiom" : "ipad",
|
||||
"filename" : "Icon-App-76x76@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"size" : "83.5x83.5",
|
||||
"idiom" : "ipad",
|
||||
"filename" : "Icon-App-83.5x83.5@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"size" : "1024x1024",
|
||||
"idiom" : "ios-marketing",
|
||||
"filename" : "Icon-App-1024x1024@1x.png",
|
||||
"scale" : "1x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 264 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 6.7 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 9.1 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 16 KiB |