commit b24ab04d9949b5f119e989d8e4531a8e3a9b7339 Author: zhuce <821293938@qq.com> Date: Sun Feb 18 22:12:08 2024 +0800 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..29a3a50 --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +# 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 +.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 diff --git a/.metadata b/.metadata new file mode 100644 index 0000000..727374d --- /dev/null +++ b/.metadata @@ -0,0 +1,33 @@ +# 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: "41456452f29d64e8deb623a3c927524bcf9f111b" + channel: "stable" + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b + base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b + - platform: android + create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b + base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b + - platform: ios + create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b + base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b + + # 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' diff --git a/README.md b/README.md new file mode 100644 index 0000000..ca0852e --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# autosos_flutter + +A new Flutter project. + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) + +For help getting started with Flutter development, view the +[online documentation](https://docs.flutter.dev/), which offers tutorials, +samples, guidance on mobile development, and a full API reference. diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100644 index 0000000..0d29021 --- /dev/null +++ b/analysis_options.yaml @@ -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 diff --git a/android/.gitignore b/android/.gitignore new file mode 100644 index 0000000..6f56801 --- /dev/null +++ b/android/.gitignore @@ -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 diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 0000000..05fc1d6 --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,67 @@ +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 = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +android { + namespace "com.example.autosos_flutter" + 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.example.autosos_flutter" + // 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 + targetSdkVersion flutter.targetSdkVersion + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig signingConfigs.debug + } + } +} + +flutter { + source '../..' +} + +dependencies {} diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..9f1113c --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + diff --git a/android/app/src/main/kotlin/com/example/autosos_flutter/MainActivity.kt b/android/app/src/main/kotlin/com/example/autosos_flutter/MainActivity.kt new file mode 100644 index 0000000..7542245 --- /dev/null +++ b/android/app/src/main/kotlin/com/example/autosos_flutter/MainActivity.kt @@ -0,0 +1,6 @@ +package com.example.autosos_flutter + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..db77bb4 Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..17987b7 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..09d4391 Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..d5f1c8d Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..4d6372e Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000..06952be --- /dev/null +++ b/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..cb1ef88 --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/build.gradle b/android/build.gradle new file mode 100644 index 0000000..e83fb5d --- /dev/null +++ b/android/build.gradle @@ -0,0 +1,30 @@ +buildscript { + ext.kotlin_version = '1.7.10' + repositories { + google() + mavenCentral() + } + + dependencies { + 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 +} diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..598d13f --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx4G +android.useAndroidX=true +android.enableJetifier=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..3c472b9 --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -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 diff --git a/android/settings.gradle b/android/settings.gradle new file mode 100644 index 0000000..7cd7128 --- /dev/null +++ b/android/settings.gradle @@ -0,0 +1,29 @@ +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") + + repositories { + google() + mavenCentral() + gradlePluginPortal() + } + + plugins { + id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false + } +} + +plugins { + id "dev.flutter.flutter-plugin-loader" version "1.0.0" + id "com.android.application" version "7.3.0" apply false +} + +include ":app" diff --git a/images/1.5x/ic_launcher.png b/images/1.5x/ic_launcher.png new file mode 100644 index 0000000..28dd949 Binary files /dev/null and b/images/1.5x/ic_launcher.png differ diff --git a/images/1.5x/ic_launcher_round.png b/images/1.5x/ic_launcher_round.png new file mode 100644 index 0000000..6e086aa Binary files /dev/null and b/images/1.5x/ic_launcher_round.png differ diff --git a/images/2.0x/chejiahao_zhaopian.jpg b/images/2.0x/chejiahao_zhaopian.jpg new file mode 100644 index 0000000..e144042 Binary files /dev/null and b/images/2.0x/chejiahao_zhaopian.jpg differ diff --git a/images/2.0x/flash_close.png b/images/2.0x/flash_close.png new file mode 100644 index 0000000..f90badd Binary files /dev/null and b/images/2.0x/flash_close.png differ diff --git a/images/2.0x/flash_open.png b/images/2.0x/flash_open.png new file mode 100644 index 0000000..f280ec3 Binary files /dev/null and b/images/2.0x/flash_open.png differ diff --git a/images/2.0x/gongdan_zhaopian.jpg b/images/2.0x/gongdan_zhaopian.jpg new file mode 100644 index 0000000..a5bdc07 Binary files /dev/null and b/images/2.0x/gongdan_zhaopian.jpg differ diff --git a/images/2.0x/ic_launcher.png b/images/2.0x/ic_launcher.png new file mode 100644 index 0000000..2110899 Binary files /dev/null and b/images/2.0x/ic_launcher.png differ diff --git a/images/2.0x/ic_launcher_round.png b/images/2.0x/ic_launcher_round.png new file mode 100644 index 0000000..6ab13f7 Binary files /dev/null and b/images/2.0x/ic_launcher_round.png differ diff --git a/images/2.0x/push.png b/images/2.0x/push.png new file mode 100644 index 0000000..2110899 Binary files /dev/null and b/images/2.0x/push.png differ diff --git a/images/2.0x/push_small.png b/images/2.0x/push_small.png new file mode 100644 index 0000000..2110899 Binary files /dev/null and b/images/2.0x/push_small.png differ diff --git a/images/2.0x/renche_zhaopian.png b/images/2.0x/renche_zhaopian.png new file mode 100644 index 0000000..84cd849 Binary files /dev/null and b/images/2.0x/renche_zhaopian.png differ diff --git a/images/2.0x/xingshizheng_zhaopian.jpg b/images/2.0x/xingshizheng_zhaopian.jpg new file mode 100644 index 0000000..1d25e26 Binary files /dev/null and b/images/2.0x/xingshizheng_zhaopian.jpg differ diff --git a/images/2.0x/zuoye_zhaopian.jpg b/images/2.0x/zuoye_zhaopian.jpg new file mode 100644 index 0000000..38e1e46 Binary files /dev/null and b/images/2.0x/zuoye_zhaopian.jpg differ diff --git a/images/2.0x/zuoye_zhaopian_wancheng.jpg b/images/2.0x/zuoye_zhaopian_wancheng.jpg new file mode 100644 index 0000000..44497ed Binary files /dev/null and b/images/2.0x/zuoye_zhaopian_wancheng.jpg differ diff --git a/images/3.0x/add_ic.png b/images/3.0x/add_ic.png new file mode 100644 index 0000000..030aa2d Binary files /dev/null and b/images/3.0x/add_ic.png differ diff --git a/images/3.0x/add_ser_n.png b/images/3.0x/add_ser_n.png new file mode 100644 index 0000000..3ec1c43 Binary files /dev/null and b/images/3.0x/add_ser_n.png differ diff --git a/images/3.0x/add_service.png b/images/3.0x/add_service.png new file mode 100644 index 0000000..47f3486 Binary files /dev/null and b/images/3.0x/add_service.png differ diff --git a/images/3.0x/addto.png b/images/3.0x/addto.png new file mode 100644 index 0000000..2ee0023 Binary files /dev/null and b/images/3.0x/addto.png differ diff --git a/images/3.0x/amap_car.png b/images/3.0x/amap_car.png new file mode 100644 index 0000000..b12b10c Binary files /dev/null and b/images/3.0x/amap_car.png differ diff --git a/images/3.0x/amap_through.png b/images/3.0x/amap_through.png new file mode 100644 index 0000000..e636b44 Binary files /dev/null and b/images/3.0x/amap_through.png differ diff --git a/images/3.0x/banben_ic.png b/images/3.0x/banben_ic.png new file mode 100644 index 0000000..43b0aa9 Binary files /dev/null and b/images/3.0x/banben_ic.png differ diff --git a/images/3.0x/bank_ic.png b/images/3.0x/bank_ic.png new file mode 100644 index 0000000..966b17d Binary files /dev/null and b/images/3.0x/bank_ic.png differ diff --git a/images/3.0x/baohu_ic.png b/images/3.0x/baohu_ic.png new file mode 100644 index 0000000..4a8716b Binary files /dev/null and b/images/3.0x/baohu_ic.png differ diff --git a/images/3.0x/beiche_zhaopian.png b/images/3.0x/beiche_zhaopian.png new file mode 100644 index 0000000..1a876b9 Binary files /dev/null and b/images/3.0x/beiche_zhaopian.png differ diff --git a/images/3.0x/beiche_zhaopian2.jpg b/images/3.0x/beiche_zhaopian2.jpg new file mode 100644 index 0000000..3a876cb Binary files /dev/null and b/images/3.0x/beiche_zhaopian2.jpg differ diff --git a/images/3.0x/bind_wx_bg.png b/images/3.0x/bind_wx_bg.png new file mode 100644 index 0000000..ac884d5 Binary files /dev/null and b/images/3.0x/bind_wx_bg.png differ diff --git a/images/3.0x/butai_w_ic.png b/images/3.0x/butai_w_ic.png new file mode 100644 index 0000000..c5d98a8 Binary files /dev/null and b/images/3.0x/butai_w_ic.png differ diff --git a/images/3.0x/ca_failed_ic.png b/images/3.0x/ca_failed_ic.png new file mode 100644 index 0000000..ada5adf Binary files /dev/null and b/images/3.0x/ca_failed_ic.png differ diff --git a/images/3.0x/ca_success_ic.png b/images/3.0x/ca_success_ic.png new file mode 100644 index 0000000..d65b08c Binary files /dev/null and b/images/3.0x/ca_success_ic.png differ diff --git a/images/3.0x/cancel_n_ic.png b/images/3.0x/cancel_n_ic.png new file mode 100644 index 0000000..fa0c71c Binary files /dev/null and b/images/3.0x/cancel_n_ic.png differ diff --git a/images/3.0x/car_err_ic.png b/images/3.0x/car_err_ic.png new file mode 100644 index 0000000..f891238 Binary files /dev/null and b/images/3.0x/car_err_ic.png differ diff --git a/images/3.0x/car_ic.png b/images/3.0x/car_ic.png new file mode 100644 index 0000000..69ac4b7 Binary files /dev/null and b/images/3.0x/car_ic.png differ diff --git a/images/3.0x/cha_ic.png b/images/3.0x/cha_ic.png new file mode 100644 index 0000000..d4bfafb Binary files /dev/null and b/images/3.0x/cha_ic.png differ diff --git a/images/3.0x/chayan_w_ic.png b/images/3.0x/chayan_w_ic.png new file mode 100644 index 0000000..c6696dc Binary files /dev/null and b/images/3.0x/chayan_w_ic.png differ diff --git a/images/3.0x/che_ic.png b/images/3.0x/che_ic.png new file mode 100644 index 0000000..903a82c Binary files /dev/null and b/images/3.0x/che_ic.png differ diff --git a/images/3.0x/check.jpg b/images/3.0x/check.jpg new file mode 100644 index 0000000..d52af36 Binary files /dev/null and b/images/3.0x/check.jpg differ diff --git a/images/3.0x/check_add.png b/images/3.0x/check_add.png new file mode 100644 index 0000000..5f57a85 Binary files /dev/null and b/images/3.0x/check_add.png differ diff --git a/images/3.0x/check_close.png b/images/3.0x/check_close.png new file mode 100644 index 0000000..30b2467 Binary files /dev/null and b/images/3.0x/check_close.png differ diff --git a/images/3.0x/check_empty.png b/images/3.0x/check_empty.png new file mode 100644 index 0000000..8370e11 Binary files /dev/null and b/images/3.0x/check_empty.png differ diff --git a/images/3.0x/chejiahao_zhaopian2.jpg b/images/3.0x/chejiahao_zhaopian2.jpg new file mode 100644 index 0000000..8fbe420 Binary files /dev/null and b/images/3.0x/chejiahao_zhaopian2.jpg differ diff --git a/images/3.0x/chezhu_icon.jpg b/images/3.0x/chezhu_icon.jpg new file mode 100644 index 0000000..a5ada89 Binary files /dev/null and b/images/3.0x/chezhu_icon.jpg differ diff --git a/images/3.0x/chongzhi_ic.png b/images/3.0x/chongzhi_ic.png new file mode 100644 index 0000000..c98e7d1 Binary files /dev/null and b/images/3.0x/chongzhi_ic.png differ diff --git a/images/3.0x/current_location.png b/images/3.0x/current_location.png new file mode 100644 index 0000000..2ed964d Binary files /dev/null and b/images/3.0x/current_location.png differ diff --git a/images/3.0x/dadian_ww_ic.png b/images/3.0x/dadian_ww_ic.png new file mode 100644 index 0000000..2a70e7a Binary files /dev/null and b/images/3.0x/dadian_ww_ic.png differ diff --git a/images/3.0x/dadian_zhaopian.png b/images/3.0x/dadian_zhaopian.png new file mode 100644 index 0000000..96c7afb Binary files /dev/null and b/images/3.0x/dadian_zhaopian.png differ diff --git a/images/3.0x/dadian_zhaopian12.jpg b/images/3.0x/dadian_zhaopian12.jpg new file mode 100644 index 0000000..97d114b Binary files /dev/null and b/images/3.0x/dadian_zhaopian12.jpg differ diff --git a/images/3.0x/dadian_zhaopian2.jpg b/images/3.0x/dadian_zhaopian2.jpg new file mode 100644 index 0000000..8e6ec1a Binary files /dev/null and b/images/3.0x/dadian_zhaopian2.jpg differ diff --git a/images/3.0x/dadian_zhaopian22.jpg b/images/3.0x/dadian_zhaopian22.jpg new file mode 100644 index 0000000..75b1533 Binary files /dev/null and b/images/3.0x/dadian_zhaopian22.jpg differ diff --git a/images/3.0x/dadian_zhaopian23.jpg b/images/3.0x/dadian_zhaopian23.jpg new file mode 100644 index 0000000..f78370b Binary files /dev/null and b/images/3.0x/dadian_zhaopian23.jpg differ diff --git a/images/3.0x/daijia_w_ic.png b/images/3.0x/daijia_w_ic.png new file mode 100644 index 0000000..b30a271 Binary files /dev/null and b/images/3.0x/daijia_w_ic.png differ diff --git a/images/3.0x/daishou_ic.png b/images/3.0x/daishou_ic.png new file mode 100644 index 0000000..1072ff2 Binary files /dev/null and b/images/3.0x/daishou_ic.png differ diff --git a/images/3.0x/daohang_btn_bg.png b/images/3.0x/daohang_btn_bg.png new file mode 100644 index 0000000..7b127fd Binary files /dev/null and b/images/3.0x/daohang_btn_bg.png differ diff --git a/images/3.0x/daohang_ic.png b/images/3.0x/daohang_ic.png new file mode 100644 index 0000000..e3303f6 Binary files /dev/null and b/images/3.0x/daohang_ic.png differ diff --git a/images/3.0x/ddd_ic.png b/images/3.0x/ddd_ic.png new file mode 100644 index 0000000..c8c130b Binary files /dev/null and b/images/3.0x/ddd_ic.png differ diff --git a/images/3.0x/delete.png b/images/3.0x/delete.png new file mode 100644 index 0000000..67823a0 Binary files /dev/null and b/images/3.0x/delete.png differ diff --git a/images/3.0x/dianhua_ic.png b/images/3.0x/dianhua_ic.png new file mode 100644 index 0000000..cdd0e8f Binary files /dev/null and b/images/3.0x/dianhua_ic.png differ diff --git a/images/3.0x/dianhua_icon.jpg b/images/3.0x/dianhua_icon.jpg new file mode 100644 index 0000000..4520f5d Binary files /dev/null and b/images/3.0x/dianhua_icon.jpg differ diff --git a/images/3.0x/diaoche_w_ic.png b/images/3.0x/diaoche_w_ic.png new file mode 100644 index 0000000..3573ff7 Binary files /dev/null and b/images/3.0x/diaoche_w_ic.png differ diff --git a/images/3.0x/diku2_zhaopian.jpg b/images/3.0x/diku2_zhaopian.jpg new file mode 100644 index 0000000..290807b Binary files /dev/null and b/images/3.0x/diku2_zhaopian.jpg differ diff --git a/images/3.0x/diku2_zhaopian2.jpg b/images/3.0x/diku2_zhaopian2.jpg new file mode 100644 index 0000000..f0b7a00 Binary files /dev/null and b/images/3.0x/diku2_zhaopian2.jpg differ diff --git a/images/3.0x/diku_zhaopian.jpg b/images/3.0x/diku_zhaopian.jpg new file mode 100644 index 0000000..932d1b6 Binary files /dev/null and b/images/3.0x/diku_zhaopian.jpg differ diff --git a/images/3.0x/diku_zhaopian2.jpg b/images/3.0x/diku_zhaopian2.jpg new file mode 100644 index 0000000..c128bdc Binary files /dev/null and b/images/3.0x/diku_zhaopian2.jpg differ diff --git a/images/3.0x/dikuqianyin_zhaopian.jpg b/images/3.0x/dikuqianyin_zhaopian.jpg new file mode 100644 index 0000000..92316d2 Binary files /dev/null and b/images/3.0x/dikuqianyin_zhaopian.jpg differ diff --git a/images/3.0x/dingdan_ic.png b/images/3.0x/dingdan_ic.png new file mode 100644 index 0000000..f1296a2 Binary files /dev/null and b/images/3.0x/dingdan_ic.png differ diff --git a/images/3.0x/dingdan_icon.jpg b/images/3.0x/dingdan_icon.jpg new file mode 100644 index 0000000..0efc920 Binary files /dev/null and b/images/3.0x/dingdan_icon.jpg differ diff --git a/images/3.0x/dixia_w_ic.png b/images/3.0x/dixia_w_ic.png new file mode 100644 index 0000000..a5218cd Binary files /dev/null and b/images/3.0x/dixia_w_ic.png differ diff --git a/images/3.0x/drivers_license_ic.png b/images/3.0x/drivers_license_ic.png new file mode 100644 index 0000000..3aefd6c Binary files /dev/null and b/images/3.0x/drivers_license_ic.png differ diff --git a/images/3.0x/electric_detector_ic.png b/images/3.0x/electric_detector_ic.png new file mode 100644 index 0000000..9b3814c Binary files /dev/null and b/images/3.0x/electric_detector_ic.png differ diff --git a/images/3.0x/empty_ic.png b/images/3.0x/empty_ic.png new file mode 100644 index 0000000..4ef55cb Binary files /dev/null and b/images/3.0x/empty_ic.png differ diff --git a/images/3.0x/err.png b/images/3.0x/err.png new file mode 100644 index 0000000..1e97262 Binary files /dev/null and b/images/3.0x/err.png differ diff --git a/images/3.0x/fwindow_bg1.png b/images/3.0x/fwindow_bg1.png new file mode 100644 index 0000000..5ba87b7 Binary files /dev/null and b/images/3.0x/fwindow_bg1.png differ diff --git a/images/3.0x/fwindow_bg2.png b/images/3.0x/fwindow_bg2.png new file mode 100644 index 0000000..179e6e4 Binary files /dev/null and b/images/3.0x/fwindow_bg2.png differ diff --git a/images/3.0x/fwindow_icon.png b/images/3.0x/fwindow_icon.png new file mode 100644 index 0000000..85086c1 Binary files /dev/null and b/images/3.0x/fwindow_icon.png differ diff --git a/images/3.0x/gerenzhongxin_ic.png b/images/3.0x/gerenzhongxin_ic.png new file mode 100644 index 0000000..15bb338 Binary files /dev/null and b/images/3.0x/gerenzhongxin_ic.png differ diff --git a/images/3.0x/gongdan_zhaopian2.jpg b/images/3.0x/gongdan_zhaopian2.jpg new file mode 100644 index 0000000..fb003b1 Binary files /dev/null and b/images/3.0x/gongdan_zhaopian2.jpg differ diff --git a/images/3.0x/guanyu_ic.png b/images/3.0x/guanyu_ic.png new file mode 100644 index 0000000..c946c08 Binary files /dev/null and b/images/3.0x/guanyu_ic.png differ diff --git a/images/3.0x/home_message.png b/images/3.0x/home_message.png new file mode 100644 index 0000000..ac50f32 Binary files /dev/null and b/images/3.0x/home_message.png differ diff --git a/images/3.0x/huantai_w_ic.png b/images/3.0x/huantai_w_ic.png new file mode 100644 index 0000000..31b9d66 Binary files /dev/null and b/images/3.0x/huantai_w_ic.png differ diff --git a/images/3.0x/huantai_zhaopian1.png b/images/3.0x/huantai_zhaopian1.png new file mode 100644 index 0000000..8bd187b Binary files /dev/null and b/images/3.0x/huantai_zhaopian1.png differ diff --git a/images/3.0x/huantai_zhaopian12.jpg b/images/3.0x/huantai_zhaopian12.jpg new file mode 100644 index 0000000..9cf3ffd Binary files /dev/null and b/images/3.0x/huantai_zhaopian12.jpg differ diff --git a/images/3.0x/huantai_zhaopian2.png b/images/3.0x/huantai_zhaopian2.png new file mode 100644 index 0000000..bd9603b Binary files /dev/null and b/images/3.0x/huantai_zhaopian2.png differ diff --git a/images/3.0x/huantai_zhaopian22.jpg b/images/3.0x/huantai_zhaopian22.jpg new file mode 100644 index 0000000..79f97a1 Binary files /dev/null and b/images/3.0x/huantai_zhaopian22.jpg differ diff --git a/images/3.0x/huantai_zhaopian32.jpg b/images/3.0x/huantai_zhaopian32.jpg new file mode 100644 index 0000000..632c0ec Binary files /dev/null and b/images/3.0x/huantai_zhaopian32.jpg differ diff --git a/images/3.0x/hw_tip1.jpg b/images/3.0x/hw_tip1.jpg new file mode 100644 index 0000000..f44fcc2 Binary files /dev/null and b/images/3.0x/hw_tip1.jpg differ diff --git a/images/3.0x/hw_tip2.jpg b/images/3.0x/hw_tip2.jpg new file mode 100644 index 0000000..1a250ce Binary files /dev/null and b/images/3.0x/hw_tip2.jpg differ diff --git a/images/3.0x/hw_tip3.jpg b/images/3.0x/hw_tip3.jpg new file mode 100644 index 0000000..13554dc Binary files /dev/null and b/images/3.0x/hw_tip3.jpg differ diff --git a/images/3.0x/ic_close.png b/images/3.0x/ic_close.png new file mode 100644 index 0000000..2cb9050 Binary files /dev/null and b/images/3.0x/ic_close.png differ diff --git a/images/3.0x/ic_launcher.png b/images/3.0x/ic_launcher.png new file mode 100644 index 0000000..cbaf6e1 Binary files /dev/null and b/images/3.0x/ic_launcher.png differ diff --git a/images/3.0x/ic_launcher_round.png b/images/3.0x/ic_launcher_round.png new file mode 100644 index 0000000..8e615f6 Binary files /dev/null and b/images/3.0x/ic_launcher_round.png differ diff --git a/images/3.0x/icon_loaction_start.png b/images/3.0x/icon_loaction_start.png new file mode 100644 index 0000000..3284a23 Binary files /dev/null and b/images/3.0x/icon_loaction_start.png differ diff --git a/images/3.0x/id_just2_ic.png b/images/3.0x/id_just2_ic.png new file mode 100644 index 0000000..0215a2e Binary files /dev/null and b/images/3.0x/id_just2_ic.png differ diff --git a/images/3.0x/id_just_ic.png b/images/3.0x/id_just_ic.png new file mode 100644 index 0000000..bbcde70 Binary files /dev/null and b/images/3.0x/id_just_ic.png differ diff --git a/images/3.0x/insurancee_policy_ic.png b/images/3.0x/insurancee_policy_ic.png new file mode 100644 index 0000000..d6c5c2d Binary files /dev/null and b/images/3.0x/insurancee_policy_ic.png differ diff --git a/images/3.0x/invoice_er_ic.png b/images/3.0x/invoice_er_ic.png new file mode 100644 index 0000000..b327dbf Binary files /dev/null and b/images/3.0x/invoice_er_ic.png differ diff --git a/images/3.0x/invoice_suc_ic.png b/images/3.0x/invoice_suc_ic.png new file mode 100644 index 0000000..b5745f6 Binary files /dev/null and b/images/3.0x/invoice_suc_ic.png differ diff --git a/images/3.0x/jiace_w_ic.png b/images/3.0x/jiace_w_ic.png new file mode 100644 index 0000000..36d3b50 Binary files /dev/null and b/images/3.0x/jiace_w_ic.png differ diff --git a/images/3.0x/jiuyuan_w_ic.png b/images/3.0x/jiuyuan_w_ic.png new file mode 100644 index 0000000..cdb9a61 Binary files /dev/null and b/images/3.0x/jiuyuan_w_ic.png differ diff --git a/images/3.0x/jj_car_ic.png b/images/3.0x/jj_car_ic.png new file mode 100644 index 0000000..1cf29fa Binary files /dev/null and b/images/3.0x/jj_car_ic.png differ diff --git a/images/3.0x/jubutexie_zhaopian1.jpg b/images/3.0x/jubutexie_zhaopian1.jpg new file mode 100644 index 0000000..208c1e8 Binary files /dev/null and b/images/3.0x/jubutexie_zhaopian1.jpg differ diff --git a/images/3.0x/jubutexie_zhaopian2.jpg b/images/3.0x/jubutexie_zhaopian2.jpg new file mode 100644 index 0000000..11128fc Binary files /dev/null and b/images/3.0x/jubutexie_zhaopian2.jpg differ diff --git a/images/3.0x/kaihuhang_ic.jpg b/images/3.0x/kaihuhang_ic.jpg new file mode 100644 index 0000000..fd64365 Binary files /dev/null and b/images/3.0x/kaihuhang_ic.jpg differ diff --git a/images/3.0x/kefu_ic.png b/images/3.0x/kefu_ic.png new file mode 100644 index 0000000..9fe5e06 Binary files /dev/null and b/images/3.0x/kefu_ic.png differ diff --git a/images/3.0x/kongshi_ic.png b/images/3.0x/kongshi_ic.png new file mode 100644 index 0000000..6e1fb22 Binary files /dev/null and b/images/3.0x/kongshi_ic.png differ diff --git a/images/3.0x/kongshi_one_zhaopian.jpg b/images/3.0x/kongshi_one_zhaopian.jpg new file mode 100644 index 0000000..61cc30e Binary files /dev/null and b/images/3.0x/kongshi_one_zhaopian.jpg differ diff --git a/images/3.0x/kongshi_one_zhaopian2.jpg b/images/3.0x/kongshi_one_zhaopian2.jpg new file mode 100644 index 0000000..cd26a4d Binary files /dev/null and b/images/3.0x/kongshi_one_zhaopian2.jpg differ diff --git a/images/3.0x/kongshi_two_zhaopian.jpg b/images/3.0x/kongshi_two_zhaopian.jpg new file mode 100644 index 0000000..27d9084 Binary files /dev/null and b/images/3.0x/kongshi_two_zhaopian.jpg differ diff --git a/images/3.0x/left_close.png b/images/3.0x/left_close.png new file mode 100644 index 0000000..a0d5b7e Binary files /dev/null and b/images/3.0x/left_close.png differ diff --git a/images/3.0x/lianxi_ic.png b/images/3.0x/lianxi_ic.png new file mode 100644 index 0000000..27df7e8 Binary files /dev/null and b/images/3.0x/lianxi_ic.png differ diff --git a/images/3.0x/loginbg_red.png b/images/3.0x/loginbg_red.png new file mode 100644 index 0000000..abd898d Binary files /dev/null and b/images/3.0x/loginbg_red.png differ diff --git a/images/3.0x/me_bottom_white.png b/images/3.0x/me_bottom_white.png new file mode 100644 index 0000000..10947a0 Binary files /dev/null and b/images/3.0x/me_bottom_white.png differ diff --git a/images/3.0x/mentou_zhaopian.jpg b/images/3.0x/mentou_zhaopian.jpg new file mode 100644 index 0000000..95b1ca0 Binary files /dev/null and b/images/3.0x/mentou_zhaopian.jpg differ diff --git a/images/3.0x/new_order.png b/images/3.0x/new_order.png new file mode 100644 index 0000000..dc4a374 Binary files /dev/null and b/images/3.0x/new_order.png differ diff --git a/images/3.0x/nianjian_w_ic.png b/images/3.0x/nianjian_w_ic.png new file mode 100644 index 0000000..5308672 Binary files /dev/null and b/images/3.0x/nianjian_w_ic.png differ diff --git a/images/3.0x/op_tip1.jpg b/images/3.0x/op_tip1.jpg new file mode 100644 index 0000000..3bc08ae Binary files /dev/null and b/images/3.0x/op_tip1.jpg differ diff --git a/images/3.0x/op_tip2.jpg b/images/3.0x/op_tip2.jpg new file mode 100644 index 0000000..7b5a44b Binary files /dev/null and b/images/3.0x/op_tip2.jpg differ diff --git a/images/3.0x/op_tip3.jpg b/images/3.0x/op_tip3.jpg new file mode 100644 index 0000000..8b82dff Binary files /dev/null and b/images/3.0x/op_tip3.jpg differ diff --git a/images/3.0x/order_conduct_icon_end.jpeg b/images/3.0x/order_conduct_icon_end.jpeg new file mode 100644 index 0000000..89110ee Binary files /dev/null and b/images/3.0x/order_conduct_icon_end.jpeg differ diff --git a/images/3.0x/order_conduct_icon_star.jpeg b/images/3.0x/order_conduct_icon_star.jpeg new file mode 100644 index 0000000..99f6a87 Binary files /dev/null and b/images/3.0x/order_conduct_icon_star.jpeg differ diff --git a/images/3.0x/order_receiving_end.png b/images/3.0x/order_receiving_end.png new file mode 100644 index 0000000..507636c Binary files /dev/null and b/images/3.0x/order_receiving_end.png differ diff --git a/images/3.0x/order_receiving_star.png b/images/3.0x/order_receiving_star.png new file mode 100644 index 0000000..73efa58 Binary files /dev/null and b/images/3.0x/order_receiving_star.png differ diff --git a/images/3.0x/paizhao2_ic.png b/images/3.0x/paizhao2_ic.png new file mode 100644 index 0000000..9f44ec2 Binary files /dev/null and b/images/3.0x/paizhao2_ic.png differ diff --git a/images/3.0x/paizhao_ic.png b/images/3.0x/paizhao_ic.png new file mode 100644 index 0000000..b4d22ae Binary files /dev/null and b/images/3.0x/paizhao_ic.png differ diff --git a/images/3.0x/photo_button1.jpg b/images/3.0x/photo_button1.jpg new file mode 100644 index 0000000..206cc97 Binary files /dev/null and b/images/3.0x/photo_button1.jpg differ diff --git a/images/3.0x/photo_button2.jpg b/images/3.0x/photo_button2.jpg new file mode 100644 index 0000000..42342b2 Binary files /dev/null and b/images/3.0x/photo_button2.jpg differ diff --git a/images/3.0x/push.png b/images/3.0x/push.png new file mode 100644 index 0000000..2110899 Binary files /dev/null and b/images/3.0x/push.png differ diff --git a/images/3.0x/push_small.png b/images/3.0x/push_small.png new file mode 100644 index 0000000..cbaf6e1 Binary files /dev/null and b/images/3.0x/push_small.png differ diff --git a/images/3.0x/qiangdan_bg.png b/images/3.0x/qiangdan_bg.png new file mode 100644 index 0000000..04e0bb3 Binary files /dev/null and b/images/3.0x/qiangdan_bg.png differ diff --git a/images/3.0x/quanche_zhaopian.png b/images/3.0x/quanche_zhaopian.png new file mode 100644 index 0000000..c692389 Binary files /dev/null and b/images/3.0x/quanche_zhaopian.png differ diff --git a/images/3.0x/quanche_zhaopian2.jpg b/images/3.0x/quanche_zhaopian2.jpg new file mode 100644 index 0000000..51d0bd9 Binary files /dev/null and b/images/3.0x/quanche_zhaopian2.jpg differ diff --git a/images/3.0x/radio_white.png b/images/3.0x/radio_white.png new file mode 100644 index 0000000..75091ec Binary files /dev/null and b/images/3.0x/radio_white.png differ diff --git a/images/3.0x/renche_zhaopian2.jpg b/images/3.0x/renche_zhaopian2.jpg new file mode 100644 index 0000000..16cd0c4 Binary files /dev/null and b/images/3.0x/renche_zhaopian2.jpg differ diff --git a/images/3.0x/renche_zhaopian3.jpg b/images/3.0x/renche_zhaopian3.jpg new file mode 100644 index 0000000..357a377 Binary files /dev/null and b/images/3.0x/renche_zhaopian3.jpg differ diff --git a/images/3.0x/roundclose.png b/images/3.0x/roundclose.png new file mode 100644 index 0000000..d71eef4 Binary files /dev/null and b/images/3.0x/roundclose.png differ diff --git a/images/3.0x/sanjiao_iic.png b/images/3.0x/sanjiao_iic.png new file mode 100644 index 0000000..fdcb934 Binary files /dev/null and b/images/3.0x/sanjiao_iic.png differ diff --git a/images/3.0x/saoma_ic.png b/images/3.0x/saoma_ic.png new file mode 100644 index 0000000..d19c8be Binary files /dev/null and b/images/3.0x/saoma_ic.png differ diff --git a/images/3.0x/selfie_ic.png b/images/3.0x/selfie_ic.png new file mode 100644 index 0000000..bb35cfb Binary files /dev/null and b/images/3.0x/selfie_ic.png differ diff --git a/images/3.0x/shangban_zhaopian.jpg b/images/3.0x/shangban_zhaopian.jpg new file mode 100644 index 0000000..ec0636e Binary files /dev/null and b/images/3.0x/shangban_zhaopian.jpg differ diff --git a/images/3.0x/shangban_zhaopian2.jpg b/images/3.0x/shangban_zhaopian2.jpg new file mode 100644 index 0000000..0867e36 Binary files /dev/null and b/images/3.0x/shangban_zhaopian2.jpg differ diff --git a/images/3.0x/shangbao_icon.jpg b/images/3.0x/shangbao_icon.jpg new file mode 100644 index 0000000..11c63d4 Binary files /dev/null and b/images/3.0x/shangbao_icon.jpg differ diff --git a/images/3.0x/shezhi_ic.png b/images/3.0x/shezhi_ic.png new file mode 100644 index 0000000..0b76af1 Binary files /dev/null and b/images/3.0x/shezhi_ic.png differ diff --git a/images/3.0x/shuaxin_ic.png b/images/3.0x/shuaxin_ic.png new file mode 100644 index 0000000..694f6c8 Binary files /dev/null and b/images/3.0x/shuaxin_ic.png differ diff --git a/images/3.0x/shui_w_ic.png b/images/3.0x/shui_w_ic.png new file mode 100644 index 0000000..1a0621a Binary files /dev/null and b/images/3.0x/shui_w_ic.png differ diff --git a/images/3.0x/sign_tablet_bg.jpg b/images/3.0x/sign_tablet_bg.jpg new file mode 100644 index 0000000..21d4733 Binary files /dev/null and b/images/3.0x/sign_tablet_bg.jpg differ diff --git a/images/3.0x/sign_tablet_jcr_bg.jpeg b/images/3.0x/sign_tablet_jcr_bg.jpeg new file mode 100644 index 0000000..b0d9fa5 Binary files /dev/null and b/images/3.0x/sign_tablet_jcr_bg.jpeg differ diff --git a/images/3.0x/sign_tablet_jysj_bg.jpg b/images/3.0x/sign_tablet_jysj_bg.jpg new file mode 100644 index 0000000..369a8d8 Binary files /dev/null and b/images/3.0x/sign_tablet_jysj_bg.jpg differ diff --git a/images/3.0x/sign_tablet_sj_bg.jpg b/images/3.0x/sign_tablet_sj_bg.jpg new file mode 100644 index 0000000..c03bf9b Binary files /dev/null and b/images/3.0x/sign_tablet_sj_bg.jpg differ diff --git a/images/3.0x/siji_ziliao_1.png b/images/3.0x/siji_ziliao_1.png new file mode 100644 index 0000000..bd229fc Binary files /dev/null and b/images/3.0x/siji_ziliao_1.png differ diff --git a/images/3.0x/siji_ziliao_2.png b/images/3.0x/siji_ziliao_2.png new file mode 100644 index 0000000..df3ab76 Binary files /dev/null and b/images/3.0x/siji_ziliao_2.png differ diff --git a/images/3.0x/songshui_zhaopian.jpg b/images/3.0x/songshui_zhaopian.jpg new file mode 100644 index 0000000..baae377 Binary files /dev/null and b/images/3.0x/songshui_zhaopian.jpg differ diff --git a/images/3.0x/special_remind.jpg b/images/3.0x/special_remind.jpg new file mode 100644 index 0000000..673546a Binary files /dev/null and b/images/3.0x/special_remind.jpg differ diff --git a/images/3.0x/starting_point.png b/images/3.0x/starting_point.png new file mode 100644 index 0000000..a15aeed Binary files /dev/null and b/images/3.0x/starting_point.png differ diff --git a/images/3.0x/succ.png b/images/3.0x/succ.png new file mode 100644 index 0000000..93d484d Binary files /dev/null and b/images/3.0x/succ.png differ diff --git a/images/3.0x/succ_ic.png b/images/3.0x/succ_ic.png new file mode 100644 index 0000000..e42f0fd Binary files /dev/null and b/images/3.0x/succ_ic.png differ diff --git a/images/3.0x/succ_icon.png b/images/3.0x/succ_icon.png new file mode 100644 index 0000000..08ccf6e Binary files /dev/null and b/images/3.0x/succ_icon.png differ diff --git a/images/3.0x/terminal_point.png b/images/3.0x/terminal_point.png new file mode 100644 index 0000000..693dd49 Binary files /dev/null and b/images/3.0x/terminal_point.png differ diff --git a/images/3.0x/test.jpeg b/images/3.0x/test.jpeg new file mode 100644 index 0000000..47a5aec Binary files /dev/null and b/images/3.0x/test.jpeg differ diff --git a/images/3.0x/time_ic.png b/images/3.0x/time_ic.png new file mode 100644 index 0000000..0b7a2bf Binary files /dev/null and b/images/3.0x/time_ic.png differ diff --git a/images/3.0x/tip1.jpg b/images/3.0x/tip1.jpg new file mode 100644 index 0000000..be0892e Binary files /dev/null and b/images/3.0x/tip1.jpg differ diff --git a/images/3.0x/tip2.jpg b/images/3.0x/tip2.jpg new file mode 100644 index 0000000..4817584 Binary files /dev/null and b/images/3.0x/tip2.jpg differ diff --git a/images/3.0x/tip3.jpg b/images/3.0x/tip3.jpg new file mode 100644 index 0000000..9de1b45 Binary files /dev/null and b/images/3.0x/tip3.jpg differ diff --git a/images/3.0x/tixian_botton_bg.png b/images/3.0x/tixian_botton_bg.png new file mode 100644 index 0000000..8ffa4f3 Binary files /dev/null and b/images/3.0x/tixian_botton_bg.png differ diff --git a/images/3.0x/tixian_ic.png b/images/3.0x/tixian_ic.png new file mode 100644 index 0000000..06b40af Binary files /dev/null and b/images/3.0x/tixian_ic.png differ diff --git a/images/3.0x/tuoche_w_ic.png b/images/3.0x/tuoche_w_ic.png new file mode 100644 index 0000000..34e98da Binary files /dev/null and b/images/3.0x/tuoche_w_ic.png differ diff --git a/images/3.0x/tuokun_zhaopian.jpg b/images/3.0x/tuokun_zhaopian.jpg new file mode 100644 index 0000000..badd600 Binary files /dev/null and b/images/3.0x/tuokun_zhaopian.jpg differ diff --git a/images/3.0x/tuokun_zhaopian2.jpg b/images/3.0x/tuokun_zhaopian2.jpg new file mode 100644 index 0000000..3a69ee1 Binary files /dev/null and b/images/3.0x/tuokun_zhaopian2.jpg differ diff --git a/images/3.0x/tuokun_zhaopian3.jpg b/images/3.0x/tuokun_zhaopian3.jpg new file mode 100644 index 0000000..448b00b Binary files /dev/null and b/images/3.0x/tuokun_zhaopian3.jpg differ diff --git a/images/3.0x/welcome_1ic.png b/images/3.0x/welcome_1ic.png new file mode 100644 index 0000000..92b652f Binary files /dev/null and b/images/3.0x/welcome_1ic.png differ diff --git a/images/3.0x/welcome_2ic.png b/images/3.0x/welcome_2ic.png new file mode 100644 index 0000000..d5e3bff Binary files /dev/null and b/images/3.0x/welcome_2ic.png differ diff --git a/images/3.0x/welcome_3ic.png b/images/3.0x/welcome_3ic.png new file mode 100644 index 0000000..5b0b94d Binary files /dev/null and b/images/3.0x/welcome_3ic.png differ diff --git a/images/3.0x/wx_pay_ic.png b/images/3.0x/wx_pay_ic.png new file mode 100644 index 0000000..d5eed20 Binary files /dev/null and b/images/3.0x/wx_pay_ic.png differ diff --git a/images/3.0x/wxlogo.png b/images/3.0x/wxlogo.png new file mode 100644 index 0000000..dba2c17 Binary files /dev/null and b/images/3.0x/wxlogo.png differ diff --git a/images/3.0x/xiaban_zhaopian.jpg b/images/3.0x/xiaban_zhaopian.jpg new file mode 100644 index 0000000..ab9a9d3 Binary files /dev/null and b/images/3.0x/xiaban_zhaopian.jpg differ diff --git a/images/3.0x/xiaban_zhaopian2.jpg b/images/3.0x/xiaban_zhaopian2.jpg new file mode 100644 index 0000000..46d239f Binary files /dev/null and b/images/3.0x/xiaban_zhaopian2.jpg differ diff --git a/images/3.0x/xiaolun2_zhaopian.jpg b/images/3.0x/xiaolun2_zhaopian.jpg new file mode 100644 index 0000000..ce142e1 Binary files /dev/null and b/images/3.0x/xiaolun2_zhaopian.jpg differ diff --git a/images/3.0x/xiaolun2_zhaopian2.jpg b/images/3.0x/xiaolun2_zhaopian2.jpg new file mode 100644 index 0000000..41f0ded Binary files /dev/null and b/images/3.0x/xiaolun2_zhaopian2.jpg differ diff --git a/images/3.0x/xiaolun_zhaopian.jpg b/images/3.0x/xiaolun_zhaopian.jpg new file mode 100644 index 0000000..94a9598 Binary files /dev/null and b/images/3.0x/xiaolun_zhaopian.jpg differ diff --git a/images/3.0x/xiaolun_zhaopian2.jpg b/images/3.0x/xiaolun_zhaopian2.jpg new file mode 100644 index 0000000..a940383 Binary files /dev/null and b/images/3.0x/xiaolun_zhaopian2.jpg differ diff --git a/images/3.0x/xiaoxi_icon.jpg b/images/3.0x/xiaoxi_icon.jpg new file mode 100644 index 0000000..e37f2c9 Binary files /dev/null and b/images/3.0x/xiaoxi_icon.jpg differ diff --git a/images/3.0x/xing_ic.png b/images/3.0x/xing_ic.png new file mode 100644 index 0000000..708b6a4 Binary files /dev/null and b/images/3.0x/xing_ic.png differ diff --git a/images/3.0x/xingshizheng_zhaopian2.jpg b/images/3.0x/xingshizheng_zhaopian2.jpg new file mode 100644 index 0000000..b952518 Binary files /dev/null and b/images/3.0x/xingshizheng_zhaopian2.jpg differ diff --git a/images/3.0x/xm_tip1.jpg b/images/3.0x/xm_tip1.jpg new file mode 100644 index 0000000..337283f Binary files /dev/null and b/images/3.0x/xm_tip1.jpg differ diff --git a/images/3.0x/xm_tip2.jpg b/images/3.0x/xm_tip2.jpg new file mode 100644 index 0000000..95dd5c8 Binary files /dev/null and b/images/3.0x/xm_tip2.jpg differ diff --git a/images/3.0x/xm_tip3.jpg b/images/3.0x/xm_tip3.jpg new file mode 100644 index 0000000..5cf2b76 Binary files /dev/null and b/images/3.0x/xm_tip3.jpg differ diff --git a/images/3.0x/yibiaopan_zhaopian.jpg b/images/3.0x/yibiaopan_zhaopian.jpg new file mode 100644 index 0000000..f515f1f Binary files /dev/null and b/images/3.0x/yibiaopan_zhaopian.jpg differ diff --git a/images/3.0x/yibiaopan_zhaopian2.jpg b/images/3.0x/yibiaopan_zhaopian2.jpg new file mode 100644 index 0000000..2a83dd8 Binary files /dev/null and b/images/3.0x/yibiaopan_zhaopian2.jpg differ diff --git a/images/3.0x/yiguanbi.png b/images/3.0x/yiguanbi.png new file mode 100644 index 0000000..d1f2c04 Binary files /dev/null and b/images/3.0x/yiguanbi.png differ diff --git a/images/3.0x/yijian_ic.png b/images/3.0x/yijian_ic.png new file mode 100644 index 0000000..c6aa57d Binary files /dev/null and b/images/3.0x/yijian_ic.png differ diff --git a/images/3.0x/yingyezhizhao_ic.jpg b/images/3.0x/yingyezhizhao_ic.jpg new file mode 100644 index 0000000..95b4a15 Binary files /dev/null and b/images/3.0x/yingyezhizhao_ic.jpg differ diff --git a/images/3.0x/you_jiantou.png b/images/3.0x/you_jiantou.png new file mode 100644 index 0000000..5c0a665 Binary files /dev/null and b/images/3.0x/you_jiantou.png differ diff --git a/images/3.0x/zan_ic.png b/images/3.0x/zan_ic.png new file mode 100644 index 0000000..42ec671 Binary files /dev/null and b/images/3.0x/zan_ic.png differ diff --git a/images/3.0x/zhong_point.png b/images/3.0x/zhong_point.png new file mode 100644 index 0000000..73a13ae Binary files /dev/null and b/images/3.0x/zhong_point.png differ diff --git a/images/3.0x/zhongdian_zhaopian.png b/images/3.0x/zhongdian_zhaopian.png new file mode 100644 index 0000000..43d5619 Binary files /dev/null and b/images/3.0x/zhongdian_zhaopian.png differ diff --git a/images/3.0x/zhongdian_zhaopian2.jpg b/images/3.0x/zhongdian_zhaopian2.jpg new file mode 100644 index 0000000..10c5a23 Binary files /dev/null and b/images/3.0x/zhongdian_zhaopian2.jpg differ diff --git a/images/4.0x/home_top_bg.png b/images/4.0x/home_top_bg.png new file mode 100644 index 0000000..ee9ff7a Binary files /dev/null and b/images/4.0x/home_top_bg.png differ diff --git a/images/4.0x/ic_launcher.png b/images/4.0x/ic_launcher.png new file mode 100644 index 0000000..1cc5061 Binary files /dev/null and b/images/4.0x/ic_launcher.png differ diff --git a/images/4.0x/ic_launcher_round.png b/images/4.0x/ic_launcher_round.png new file mode 100644 index 0000000..7d876a6 Binary files /dev/null and b/images/4.0x/ic_launcher_round.png differ diff --git a/images/chakan_zhaopian.png b/images/chakan_zhaopian.png new file mode 100644 index 0000000..484d4eb Binary files /dev/null and b/images/chakan_zhaopian.png differ diff --git a/images/ic_launcher.png b/images/ic_launcher.png new file mode 100644 index 0000000..25e8f63 Binary files /dev/null and b/images/ic_launcher.png differ diff --git a/images/ic_launcher_round.png b/images/ic_launcher_round.png new file mode 100644 index 0000000..b78a9e1 Binary files /dev/null and b/images/ic_launcher_round.png differ diff --git a/ios/.gitignore b/ios/.gitignore new file mode 100644 index 0000000..7a7f987 --- /dev/null +++ b/ios/.gitignore @@ -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 diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..7c56964 --- /dev/null +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 12.0 + + diff --git a/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..ec97fc6 --- /dev/null +++ b/ios/Flutter/Debug.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "Generated.xcconfig" diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..c4855bf --- /dev/null +++ b/ios/Flutter/Release.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "Generated.xcconfig" diff --git a/ios/Podfile b/ios/Podfile new file mode 100644 index 0000000..d97f17e --- /dev/null +++ b/ios/Podfile @@ -0,0 +1,44 @@ +# Uncomment this line to define a global platform for your project +# platform :ios, '12.0' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_ios_podfile_setup + +target 'Runner' do + use_frameworks! + use_modular_headers! + + flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) + target 'RunnerTests' do + inherit! :search_paths + end +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_ios_build_settings(target) + end +end diff --git a/ios/Podfile.lock b/ios/Podfile.lock new file mode 100644 index 0000000..d12bfb1 --- /dev/null +++ b/ios/Podfile.lock @@ -0,0 +1,44 @@ +PODS: + - AMap3DMap (9.7.0): + - AMapFoundation (>= 1.8.0) + - amap_flutter_location (0.0.1): + - AMapLocation + - Flutter + - amap_flutter_map (0.0.1): + - AMap3DMap + - Flutter + - AMapFoundation (1.8.2) + - AMapLocation (2.10.0): + - AMapFoundation (>= 1.8.0) + - Flutter (1.0.0) + +DEPENDENCIES: + - amap_flutter_location (from `.symlinks/plugins/amap_flutter_location/ios`) + - amap_flutter_map (from `.symlinks/plugins/amap_flutter_map/ios`) + - Flutter (from `Flutter`) + +SPEC REPOS: + trunk: + - AMap3DMap + - AMapFoundation + - AMapLocation + +EXTERNAL SOURCES: + amap_flutter_location: + :path: ".symlinks/plugins/amap_flutter_location/ios" + amap_flutter_map: + :path: ".symlinks/plugins/amap_flutter_map/ios" + Flutter: + :path: Flutter + +SPEC CHECKSUMS: + AMap3DMap: dce25dd3e51e6b92109caa7d0c97fc6055830fb3 + amap_flutter_location: 44ff5beb64f42e0bf5feb402fe299dac0013af6f + amap_flutter_map: 979e54d227cedac6c7504a2151bfbf3bcf96760a + AMapFoundation: 9885c48fc3a78fdfb84a0299a2293e56ea3c9fec + AMapLocation: 5248aec2455ebb5d104b367813c946430a2ee033 + Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 + +PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796 + +COCOAPODS: 1.15.2 diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..6c38f62 --- /dev/null +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,722 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 6B869617F1231F0634015902 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 09ADF94E6B6548221B3E25BD /* Pods_RunnerTests.framework */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 7A710E759677967A207188B4 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6856C1C6B9625FF1D0115F78 /* Pods_Runner.framework */; }; + 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 */; }; +/* 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 */ + 09ADF94E6B6548221B3E25BD /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 6856C1C6B9625FF1D0115F78 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 74EC6693A0D90253C1EB11C6 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 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 = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + A646EE1E69D780262EBE82E6 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; + C76AB8D98990ED765705BB68 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; + E6EC7C331C64B0C782C0F450 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; }; + F1CD99C046CBA4023E4BDE91 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; + F71CB638C8651D72D3F3F2E8 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 29747EB586126C25D41F83E1 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 6B869617F1231F0634015902 /* Pods_RunnerTests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 7A710E759677967A207188B4 /* Pods_Runner.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 1C2F270F921E3E365F0A8792 /* Pods */ = { + isa = PBXGroup; + children = ( + C76AB8D98990ED765705BB68 /* Pods-Runner.debug.xcconfig */, + A646EE1E69D780262EBE82E6 /* Pods-Runner.release.xcconfig */, + F1CD99C046CBA4023E4BDE91 /* Pods-Runner.profile.xcconfig */, + E6EC7C331C64B0C782C0F450 /* Pods-RunnerTests.debug.xcconfig */, + F71CB638C8651D72D3F3F2E8 /* Pods-RunnerTests.release.xcconfig */, + 74EC6693A0D90253C1EB11C6 /* Pods-RunnerTests.profile.xcconfig */, + ); + name = Pods; + path = Pods; + sourceTree = ""; + }; + 331C8082294A63A400263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C807B294A618700263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 6A5BE919A43CD0BAEC047CAA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 6856C1C6B9625FF1D0115F78 /* Pods_Runner.framework */, + 09ADF94E6B6548221B3E25BD /* Pods_RunnerTests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 331C8082294A63A400263BE5 /* RunnerTests */, + 1C2F270F921E3E365F0A8792 /* Pods */, + 6A5BE919A43CD0BAEC047CAA /* Frameworks */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 331C8081294A63A400263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 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 = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C8080294A63A400263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + AFD723CBD5C5EAB85535EEC4 /* [CP] Check Pods Manifest.lock */, + 331C807D294A63A400263BE5 /* Sources */, + 331C807F294A63A400263BE5 /* Resources */, + 29747EB586126C25D41F83E1 /* Frameworks */, + ); + 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 = ( + 64BA441EF890D01DDAE9B0BC /* [CP] Check Pods Manifest.lock */, + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + 89E1D2AC08093F01356506F3 /* [CP] Copy Pods Resources */, + ); + 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"; + }; + 64BA441EF890D01DDAE9B0BC /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + 89E1D2AC08093F01356506F3 /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Copy Pods Resources"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 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"; + }; + AFD723CBD5C5EAB85535EEC4 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; +/* 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 = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* 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 = 12.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.example.autososFlutter; + 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 = E6EC7C331C64B0C782C0F450 /* 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.example.autososFlutter.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 = F71CB638C8651D72D3F3F2E8 /* 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.example.autososFlutter.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 = 74EC6693A0D90253C1EB11C6 /* 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.example.autososFlutter.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 = 12.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 = 12.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.example.autososFlutter; + 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.example.autososFlutter; + 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 */; +} diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..87131a0 --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..21a3cc1 --- /dev/null +++ b/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..70693e4 --- /dev/null +++ b/ios/Runner/AppDelegate.swift @@ -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) + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -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" + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000..dc9ada4 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000..7353c41 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000..6ed2d93 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000..4cd7b00 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000..fe73094 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000..321773c Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000..502f463 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000..e9f5fea Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000..84ac32a Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000..8953cba Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000..0467bf1 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist new file mode 100644 index 0000000..32bcbab --- /dev/null +++ b/ios/Runner/Info.plist @@ -0,0 +1,49 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Autosos Flutter + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + autosos_flutter + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + CADisableMinimumFrameDurationOnPhone + + UIApplicationSupportsIndirectInputEvents + + + diff --git a/ios/Runner/Runner-Bridging-Header.h b/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/ios/RunnerTests/RunnerTests.swift b/ios/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..86a7c3b --- /dev/null +++ b/ios/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Flutter +import UIKit +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/lib/const_config.dart b/lib/const_config.dart new file mode 100644 index 0000000..3eaf32a --- /dev/null +++ b/lib/const_config.dart @@ -0,0 +1,22 @@ +import 'package:amap_flutter_base/amap_flutter_base.dart'; +import 'package:amap_flutter_map/amap_flutter_map.dart'; + +class ConstConfig { + ///配置您申请的apikey,在此处配置之后,可以在初始化[AMapWidget]时,通过`apiKey`属性设置 + /// + ///注意:使用[AMapWidget]的`apiKey`属性设置的key的优先级高于通过Native配置key的优先级, + ///使用[AMapWidget]的`apiKey`属性配置后Native配置的key将失效,请根据实际情况选择使用 + static const AMapApiKey amapApiKeys = AMapApiKey( + androidKey: 'c715f41c63e5bd7faef2b53de7438709', + iosKey: '8c545f5186ddd9d2c585693f72b4790a'); + + ///高德隐私合规声明,这里只是示例,实际使用中请按照实际参数设置[AMapPrivacyStatement]的'hasContains''hasShow''hasAgree'这三个参数 + /// + /// 注意:[AMapPrivacyStatement]的'hasContains''hasShow''hasAgree'这三个参数中有一个为false,高德SDK均不会工作,会造成地图白屏等现象 + /// + /// 高德开发者合规指南请参考:https://lbs.amap.com/agreement/compliance + /// + /// 高德SDK合规使用方案请参考:https://lbs.amap.com/news/sdkhgsy + static const AMapPrivacyStatement amapPrivacyStatement = + AMapPrivacyStatement(hasContains: true, hasShow: true, hasAgree: true); +} diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..b2f9783 --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,22 @@ +import 'package:autosos_flutter/pages/home_page.dart'; +import 'package:flutter/material.dart'; + +void main() { + runApp(const MyApp()); +} + +class MyApp extends StatelessWidget { + const MyApp({super.key}); + + // This widget is the root of your application. + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'Flutter Demo', + theme: ThemeData( + colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), + useMaterial3: true, + ), + home: const HomePage()); + } +} diff --git a/lib/pages/home_page.dart b/lib/pages/home_page.dart new file mode 100644 index 0000000..a3b9c44 --- /dev/null +++ b/lib/pages/home_page.dart @@ -0,0 +1,28 @@ +import 'package:amap_flutter_map/amap_flutter_map.dart'; +import 'package:autosos_flutter/const_config.dart'; +import 'package:flutter/material.dart'; + +class HomePage extends StatefulWidget { + const HomePage({super.key}); + + @override + State createState() => _HomePageState(); +} + +class _HomePageState extends State { + @override + Widget build(BuildContext context) { + const AMapWidget map = AMapWidget( + ///必须正确设置的合规隐私声明,否则SDK不会工作,会造成地图白屏等问题。 + privacyStatement: ConstConfig.amapPrivacyStatement, + apiKey: ConstConfig.amapApiKeys, + ); + return Scaffold( + body: Column( + children: [ + + ], + ), + ); + } +} diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..7d65171 --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,237 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + amap_flutter_base: + dependency: transitive + description: + name: amap_flutter_base + sha256: "9ef2439b8de7100cdd1b4357701b8ca8c059c0f2d9d0257b81750bbf0c6f53bb" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + amap_flutter_location: + dependency: "direct main" + description: + name: amap_flutter_location + sha256: f35ff00e196d579608e0bc28ccbc1f6f53787644702f947de941f775769cc701 + url: "https://pub.dev" + source: hosted + version: "3.0.0" + amap_flutter_map: + dependency: "direct main" + description: + name: amap_flutter_map + sha256: "9cebb0b2f5fc7d3ae0427e99c41edc883e8f5459f6a28bc850f0f9e16918cf2f" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + collection: + dependency: transitive + description: + name: collection + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" + source: hosted + version: "1.18.0" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d + url: "https://pub.dev" + source: hosted + version: "1.0.6" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04 + url: "https://pub.dev" + source: hosted + version: "2.0.3" + flutter_plugin_android_lifecycle: + dependency: transitive + description: + name: flutter_plugin_android_lifecycle + sha256: b068ffc46f82a55844acfa4fdbb61fad72fa2aef0905548419d97f0f95c456da + url: "https://pub.dev" + source: hosted + version: "2.0.17" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + lints: + dependency: transitive + description: + name: lints + sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + matcher: + dependency: transitive + description: + name: matcher + sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" + url: "https://pub.dev" + source: hosted + version: "0.12.16" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" + url: "https://pub.dev" + source: hosted + version: "0.5.0" + meta: + dependency: transitive + description: + name: meta + sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e + url: "https://pub.dev" + source: hosted + version: "1.10.0" + path: + dependency: transitive + description: + name: path + sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + url: "https://pub.dev" + source: hosted + version: "1.8.3" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" + source: hosted + version: "1.11.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" + source: hosted + version: "2.1.2" + stream_transform: + dependency: transitive + description: + name: stream_transform + sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test_api: + dependency: transitive + description: + name: test_api + sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + url: "https://pub.dev" + source: hosted + version: "0.6.1" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + web: + dependency: transitive + description: + name: web + sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152 + url: "https://pub.dev" + source: hosted + version: "0.3.0" +sdks: + dart: ">=3.2.6 <4.0.0" + flutter: ">=3.7.0" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..2e9fb2c --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,91 @@ +name: autosos_flutter +description: "A new Flutter project." +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +# In Windows, build-name is used as the major, minor, and patch parts +# of the product and file versions while build-number is used as the build suffix. +version: 1.0.0+1 + +environment: + sdk: '>=3.2.6 <4.0.0' + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + + amap_flutter_location: ^3.0.0 + amap_flutter_map: ^3.0.0 + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.2 + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^2.0.0 + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter packages. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + assets: + - images/ + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/assets-and-images/#resolution-aware + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/assets-and-images/#from-packages + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/custom-fonts/#from-packages diff --git a/test/widget_test.dart b/test/widget_test.dart new file mode 100644 index 0000000..e40b85b --- /dev/null +++ b/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility in the flutter_test package. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:autosos_flutter/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +}