Commit 01b2c8d3 authored by 林生雨's avatar 林生雨

commit

parent 34109a02
package io.flutter.facade;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.arch.lifecycle.Lifecycle;
import android.arch.lifecycle.LifecycleObserver;
import android.arch.lifecycle.OnLifecycleEvent;
import android.support.annotation.NonNull;
import io.flutter.plugin.common.BasicMessageChannel;
import io.flutter.plugin.common.StringCodec;
import io.flutter.plugins.GeneratedPluginRegistrant;
import io.flutter.view.FlutterMain;
import io.flutter.view.FlutterNativeView;
import io.flutter.view.FlutterRunArguments;
import io.flutter.view.FlutterView;
/**
* Main entry point for using Flutter in Android applications.
*
* <p><strong>Warning:</strong> This file is auto-generated by Flutter tooling.
* DO NOT EDIT.</p>
*/
public final class Flutter {
private Flutter() {
// to prevent instantiation
}
/**
* Initiates the Dart VM. Calling this method at an early point may help decreasing time to first
* frame for a subsequently created {@link FlutterView}.
*
* @param applicationContext the application's {@link Context}
*/
public static void startInitialization(@NonNull Context applicationContext) {
FlutterMain.startInitialization(applicationContext);
}
/**
* Creates a {@link FlutterFragment} managing a {@link FlutterView}. The optional
* initial route string will be made available to the Dart code
* (via {@code window.defaultRouteName}) and may be used to determine which widget
* should be displayed in the view. The default initialRoute is "/".
*
* @param initialRoute an initial route {@link String}, or null
* @return a {@link FlutterFragment}
*/
@NonNull
public static FlutterFragment createFragment(String initialRoute) {
final FlutterFragment fragment = new FlutterFragment();
final Bundle args = new Bundle();
args.putString(FlutterFragment.ARG_ROUTE, initialRoute);
fragment.setArguments(args);
return fragment;
}
/**
* Creates a {@link FlutterView} linked to the specified {@link Activity} and {@link Lifecycle}.
* The optional initial route string will be made available to the Dart code (via
* {@code window.defaultRouteName}) and may be used to determine which widget should be displayed
* in the view. The default initialRoute is "/".
*
* @param activity an {@link Activity}
* @param lifecycle a {@link Lifecycle}
* @param initialRoute an initial route {@link String}, or null
* @return a {@link FlutterView}
*/
@NonNull
public static FlutterView createView(@NonNull final Activity activity, @NonNull final Lifecycle lifecycle, final String initialRoute) {
FlutterMain.startInitialization(activity.getApplicationContext());
FlutterMain.ensureInitializationComplete(activity.getApplicationContext(), null);
final FlutterNativeView nativeView = new FlutterNativeView(activity);
final FlutterView flutterView = new FlutterView(activity, null, nativeView) {
private final BasicMessageChannel<String> lifecycleMessages = new BasicMessageChannel<>(this, "flutter/lifecycle", StringCodec.INSTANCE);
@Override
public void onFirstFrame() {
super.onFirstFrame();
setAlpha(1.0f);
}
@Override
public void onPostResume() {
// Overriding default behavior to avoid dictating system UI via PlatformPlugin.
lifecycleMessages.send("AppLifecycleState.resumed");
}
};
if (initialRoute != null) {
flutterView.setInitialRoute(initialRoute);
}
lifecycle.addObserver(new LifecycleObserver() {
@OnLifecycleEvent(Lifecycle.Event.ON_CREATE)
public void onCreate() {
final FlutterRunArguments arguments = new FlutterRunArguments();
arguments.bundlePath = FlutterMain.findAppBundlePath(activity.getApplicationContext());
arguments.entrypoint = "main";
flutterView.runFromBundle(arguments);
GeneratedPluginRegistrant.registerWith(flutterView.getPluginRegistry());
}
@OnLifecycleEvent(Lifecycle.Event.ON_START)
public void onStart() {
flutterView.onStart();
}
@OnLifecycleEvent(Lifecycle.Event.ON_RESUME)
public void onResume() {
flutterView.onPostResume();
}
@OnLifecycleEvent(Lifecycle.Event.ON_PAUSE)
public void onPause() {
flutterView.onPause();
}
@OnLifecycleEvent(Lifecycle.Event.ON_STOP)
public void onStop() {
flutterView.onStop();
}
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void onDestroy() {
flutterView.destroy();
}
});
flutterView.setAlpha(0.0f);
return flutterView;
}
}
package io.flutter.facade;
import android.content.Context;
import android.os.Bundle;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.ViewGroup;
import android.support.annotation.NonNull;
import android.support.v4.app.Fragment;
import io.flutter.view.FlutterView;
/**
* A {@link Fragment} managing a {@link FlutterView}.
*
* <p><strong>Warning:</strong> This file is auto-generated by Flutter tooling.
* DO NOT EDIT.</p>
*/
public class FlutterFragment extends Fragment {
public static final String ARG_ROUTE = "route";
private String mRoute = "/";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mRoute = getArguments().getString(ARG_ROUTE);
}
}
@Override
public void onInflate(Context context, AttributeSet attrs, Bundle savedInstanceState) {
super.onInflate(context, attrs, savedInstanceState);
}
@Override
public FlutterView onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return Flutter.createView(getActivity(), getLifecycle(), mRoute);
}
}
def flutterPluginVersion = 'managed'
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
defaultConfig {
applicationId "com.example.gmalpha_flutter.host"
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
profile {
initWith debug
}
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
}
}
}
buildDir = new File(rootProject.projectDir, "../build/host")
dependencies {
implementation project(':flutter')
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:28.0.0'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
testImplementation 'junit:junit:4.12'
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.gmalpha_flutter.host">
<!-- The INTERNET permission is required for development. Specifically,
flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<application
android:name="io.flutter.app.FlutterApplication"
android:label="gmalpha_flutter"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- This keeps the window background of the activity showing
until Flutter renders its first frame. It can be removed if
there is no splash screen (such as the default splash screen
defined in @style/LaunchTheme). -->
<meta-data
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
android:value="true" />
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
package com.example.gmalpha_flutter.host;
import android.os.Bundle;
import io.flutter.app.FlutterActivity;
import io.flutter.plugins.GeneratedPluginRegistrant;
public class MainActivity extends FlutterActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
GeneratedPluginRegistrant.registerWith(this);
}
}
// Generated file. Do not edit.
def scriptFile = getClass().protectionDomain.codeSource.location.toURI()
def flutterProjectRoot = new File(scriptFile).parentFile.parentFile
gradle.include ':flutter'
gradle.project(':flutter').projectDir = new File(flutterProjectRoot, '.android/Flutter')
def plugins = new Properties()
def pluginsFile = new File(flutterProjectRoot, '.flutter-plugins')
if (pluginsFile.exists()) {
pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) }
}
plugins.each { name, path ->
def pluginDirectory = flutterProjectRoot.toPath().resolve(path).resolve('android').toFile()
gradle.include ":$name"
gradle.project(":$name").projectDir = pluginDirectory
}
gradle.getGradle().projectsLoaded { g ->
g.rootProject.beforeEvaluate { p ->
_mainModuleName = binding.variables['mainModuleName']
if (_mainModuleName != null && !_mainModuleName.empty) {
p.ext.mainModuleName = _mainModuleName
}
}
g.rootProject.afterEvaluate { p ->
p.subprojects { sp ->
if (sp.name != 'flutter') {
sp.evaluationDependsOn(':flutter')
}
}
}
}
// Generated file. Do not edit.
include ':app'
rootProject.name = 'android_generated'
setBinding(new Binding([gradle: this]))
evaluate(new File(settingsDir, 'include_flutter.groovy'))
#include "Flutter.xcconfig"
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "../Flutter/Generated.xcconfig"
ENABLE_BITCODE=NO
#include "Flutter.xcconfig"
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
FLUTTER_BUILD_MODE=release
//
// Generated file. Do not edit.
//
#import "GeneratedPluginRegistrant.h"
#import <flutter_boost/FlutterBoostPlugin.h>
#import <gengmei_flutter_plugin/GengmeiFlutterPlugin.h>
#import <package_info/PackageInfoPlugin.h>
#import <path_provider/PathProviderPlugin.h>
#import <shared_preferences/SharedPreferencesPlugin.h>
#import <sqflite/SqflitePlugin.h>
#import <xservice_kit/XserviceKitPlugin.h>
@implementation GeneratedPluginRegistrant
+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry {
[FlutterBoostPlugin registerWithRegistrar:[registry registrarForPlugin:@"FlutterBoostPlugin"]];
[GengmeiFlutterPlugin registerWithRegistrar:[registry registrarForPlugin:@"GengmeiFlutterPlugin"]];
[FLTPackageInfoPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTPackageInfoPlugin"]];
[FLTPathProviderPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTPathProviderPlugin"]];
[FLTSharedPreferencesPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTSharedPreferencesPlugin"]];
[SqflitePlugin registerWithRegistrar:[registry registrarForPlugin:@"SqflitePlugin"]];
[XserviceKitPlugin registerWithRegistrar:[registry registrarForPlugin:@"XserviceKitPlugin"]];
}
@end
#
# Generated file, do not edit.
#
Pod::Spec.new do |s|
s.name = 'FlutterPluginRegistrant'
s.version = '0.0.1'
s.summary = 'Registers plugins with your flutter app'
s.description = <<-DESC
Depends on all your plugins, and provides a function to register them.
DESC
s.homepage = 'https://flutter.dev'
s.license = { :type => 'BSD' }
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
s.ios.deployment_target = '8.0'
s.source_files = "Classes", "Classes/**/*.{h,m}"
s.source = { :path => '.' }
s.public_header_files = './Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'flutter_boost'
s.dependency 'gengmei_flutter_plugin'
s.dependency 'package_info'
s.dependency 'path_provider'
s.dependency 'shared_preferences'
s.dependency 'sqflite'
s.dependency 'xservice_kit'
end
This directory contains support code for embedding the Flutter project in an iOS app.
It should not be edited or checked in.
def parse_KV_file(file, separator='=')
file_abs_path = File.expand_path(file)
if !File.exists? file_abs_path
return [];
end
pods_array = []
skip_line_start_symbols = ["#", "/"]
File.foreach(file_abs_path) { |line|
next if skip_line_start_symbols.any? { |symbol| line =~ /^\s*#{symbol}/ }
plugin = line.split(pattern=separator)
if plugin.length == 2
podname = plugin[0].strip()
path = plugin[1].strip()
podpath = File.expand_path("#{path}", file_abs_path)
pods_array.push({:name => podname, :path => podpath});
else
puts "Invalid plugin specification: #{line}"
end
}
return pods_array
end
def flutter_root(f)
generated_xcode_build_settings = parse_KV_file(File.join(f, File.join('.ios', 'Flutter', 'Generated.xcconfig')))
if generated_xcode_build_settings.empty?
puts "Generated.xcconfig must exist. Make sure `flutter pub get` is executed in #{f}."
exit
end
generated_xcode_build_settings.map { |p|
if p[:name] == 'FLUTTER_ROOT'
return p[:path]
end
}
end
# If this wasn't specified, assume it's two levels up from the directory of this script.
flutter_application_path ||= File.join(__dir__, '..', '..')
framework_dir = File.join(flutter_application_path, '.ios', 'Flutter')
engine_dir = File.join(framework_dir, 'engine')
if !File.exist?(engine_dir)
# Copy the debug engine to have something to link against if the xcode backend script has not run yet.
debug_framework_dir = File.join(flutter_root(flutter_application_path), 'bin', 'cache', 'artifacts', 'engine', 'ios')
FileUtils.mkdir_p(engine_dir)
FileUtils.cp_r(File.join(debug_framework_dir, 'Flutter.framework'), engine_dir)
FileUtils.cp(File.join(debug_framework_dir, 'Flutter.podspec'), engine_dir)
end
pod 'Flutter', :path => engine_dir
pod 'FlutterPluginRegistrant', :path => File.join(framework_dir, 'FlutterPluginRegistrant')
symlinks_dir = File.join(framework_dir, '.symlinks')
FileUtils.mkdir_p(symlinks_dir)
plugin_pods = parse_KV_file(File.join(flutter_application_path, '.flutter-plugins'))
plugin_pods.map { |r|
symlink = File.join(symlinks_dir, r[:name])
FileUtils.rm_f(symlink)
File.symlink(r[:path], symlink)
pod r[:name], :path => File.join(symlink, 'ios')
}
# Ensure that ENABLE_BITCODE is set to NO, add a #include to Generated.xcconfig, and
# add a run script to the Build Phases.
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
next if config.base_configuration_reference == nil
xcconfig_path = config.base_configuration_reference.real_path
File.open(xcconfig_path, 'a+') do |file|
file.puts "#include \"#{File.realpath(File.join(framework_dir, 'Generated.xcconfig'))}\""
end
end
end
end
platform :ios, '8.0'
target 'Runner' do
flutter_application_path = '../'
eval(File.read(File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')), binding)
end
#import <Flutter/Flutter.h>
#import <UIKit/UIKit.h>
@interface AppDelegate : FlutterAppDelegate
@end
#include "AppDelegate.h"
#import "FlutterPluginRegistrant/GeneratedPluginRegistrant.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[GeneratedPluginRegistrant registerWithRegistry:self];
return [super application:application didFinishLaunchingWithOptions:launchOptions];
}
@end
#import <Flutter/Flutter.h>
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char* argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
{
"java.configuration.updateBuildConfiguration": "automatic"
}
\ No newline at end of file
#Fri Sep 20 11:04:32 CST 2019
gradle.version=5.6.2
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="android" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="java-gradle" name="Java-Gradle">
<configuration>
<option name="BUILD_FOLDER_PATH" value="$MODULE_DIR$/../build" />
<option name="BUILDABLE" value="false" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
</content>
<orderEntry type="jdk" jdkName="1.8" jdkType="JavaSDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id=":app" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="android-gradle" name="Android-Gradle">
<configuration>
<option name="GRADLE_PROJECT_PATH" value=":app" />
<option name="LAST_SUCCESSFUL_SYNC_AGP_VERSION" value="3.5.0" />
<option name="LAST_KNOWN_AGP_VERSION" value="3.5.0" />
</configuration>
</facet>
<facet type="android" name="Android">
<configuration>
<option name="SELECTED_BUILD_VARIANT" value="debug" />
<option name="ASSEMBLE_TASK_NAME" value="assembleDebug" />
<option name="COMPILE_JAVA_TASK_NAME" value="compileDebugSources" />
<afterSyncTasks>
<task>generateDebugSources</task>
</afterSyncTasks>
<option name="ALLOW_USER_CONFIGURATION" value="false" />
<option name="MANIFEST_FILE_RELATIVE_PATH" value="/src/main/AndroidManifest.xml" />
<option name="RES_FOLDER_RELATIVE_PATH" value="/src/main/res" />
<option name="RES_FOLDERS_RELATIVE_PATH" value="file://$MODULE_DIR$/src/main/res;file://$MODULE_DIR$/../../build/app/generated/res/resValues/debug" />
<option name="TEST_RES_FOLDERS_RELATIVE_PATH" value="" />
<option name="ASSETS_FOLDER_RELATIVE_PATH" value="/src/main/assets" />
</configuration>
</facet>
<facet type="kotlin-language" name="Kotlin">
<configuration version="3" platform="JVM 1.6" useProjectSettings="false">
<compilerSettings>
<option name="additionalArguments" value="-Xallow-no-source-files" />
</compilerSettings>
<compilerArguments>
<option name="destination" value="$MODULE_DIR$/../../build/app/tmp/kotlin-classes/debug" />
<option name="classpath" value="$MODULE_DIR$/../../build/app/intermediates/flutter/debug/libs.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/io.flutter/flutter_embedding_debug/1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec/ec0e1abb02d3b306e8ef462b41cdc3aeaba15eff/flutter_embedding_debug-1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/io.flutter/armeabi_v7a_debug/1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec/b517a4eadab1047392a7dab0123841cdcbb9ed72/armeabi_v7a_debug-1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/io.flutter/arm64_v8a_debug/1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec/1b010dce3e3f1fa8f1fd2a90315d7a5a959384aa/arm64_v8a_debug-1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/io.flutter/x86_debug/1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec/f11460e25f8ebcd33ad54305e409d1dc5574fe9d/x86_debug-1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/io.flutter/x86_64_debug/1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec/f420282ebfb3a12571f4361d873ad9090b0e39a9/x86_64_debug-1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/android.arch.lifecycle/common-java8/1.1.1/795d68cd761d093ccb235d1d91b8fd17c2ae25ff/common-java8-1.1.1.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/011702268de36daaebef734b1533488d/support-fragment-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/9783120fb7da18c4633ac4b4b7c79a4c/support-core-ui-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/90cf10881535238ff2b0fb4a772b72d1/support-core-utils-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/776609a66680510f5e03d1863242814d/loader-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/49d4091b6820254e4ee16ccea4a247cc/viewpager-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/4d7a6d89bb3060d92783b2dcb8e5f276/coordinatorlayout-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/9535455102c7414658f5a875d20e7522/drawerlayout-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/e069b3f6ba3f8a5db63416a653f970fd/slidingpanelayout-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/4e78ce54322ea4ebd98e275dea9b3cad/customview-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/cb4a1940c060ba04ae8a1b3e1007c3ba/swiperefreshlayout-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/1d0cde412777cfeab8d8a658cf0839c8/asynclayoutinflater-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/eac699f134901d0d2fa5c1a81ade99d0/support-compat-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/851f466e09eb319bef19f10b2b192c69/runtime-1.1.1/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/a3d890500fced2755b1cbff1c33d1479/livedata-1.1.1/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/1d83c5aa4df5ba55f134b157b5555514/livedata-core-1.1.1/jars/classes.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/android.arch.lifecycle/common/1.1.1/207a6efae6a3555e326de41f76bdadd9a239cbce/common-1.1.1.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/67ddbb23dfb82844d0fc26e8589e9219/runtime-1.1.1/jars/classes.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/android.arch.core/common/1.1.1/e55b70d1f5620db124b3e85a7f4bdc7bd48d9f95/common-1.1.1.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/fcfb2575a08f3e5da3e0bc64bcf81c06/viewmodel-1.1.1/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/ef3869b9326446c8510016ab8eb5af7f/versionedparcelable-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/com.android.support/collections/28.0.0/c1bcdade4d3cc2836130424a3f3e4182c666a745/collections-28.0.0.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/31cdd8b7f0cf9564cc6118b1d5077477/interpolator-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/d6dad9a7f1035aecfb51a57a17a26fc4/cursoradapter-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/4eb274c19c2cbfec9ecc13ed1bfc2300/documentfile-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/48b0e9940cc9ba446b564f87e1e057d1/localbroadcastmanager-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/transforms-2/files-2.1/9759487dd7ad5621892c5df4c76761d6/print-28.0.0/jars/classes.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/com.android.support/support-annotations/28.0.0/ed73f5337a002d1fd24339d5fb08c2c9d9ca60d8/support-annotations-28.0.0.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.3.50/50ad05ea1c2595fb31b800e76db464d08d599af3/kotlin-stdlib-jdk7-1.3.50.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.3.50/b529d1738c7e98bbfa36a4134039528f2ce78ebf/kotlin-stdlib-1.3.50.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-common/1.3.50/3d9cd3e1bc7b92e95f43d45be3bfbcf38e36ab87/kotlin-stdlib-common-1.3.50.jar:/Users/apple/.gradle/caches/modules-2/files-2.1/org.jetbrains/annotations/13.0/919f0dfe192fb4e063e7dacadee7f8bb9a2672a9/annotations-13.0.jar:/Users/apple/lsy/gmalpha_flutter/build/flutter_boost/intermediates/compile_library_classes/debug/classes.jar:/Users/apple/lsy/gmalpha_flutter/build/xservice_kit/intermediates/compile_library_classes/debug/classes.jar:/Users/apple/lsy/gmalpha_flutter/build/sqflite/intermediates/compile_library_classes/debug/classes.jar:/Users/apple/lsy/gmalpha_flutter/build/path_provider/intermediates/compile_library_classes/debug/classes.jar:/Users/apple/lsy/gmalpha_flutter/build/gengmei_flutter_plugin/intermediates/compile_library_classes/debug/classes.jar:/Users/apple/Library/Android/sdk/platforms/android-28/android.jar:/Users/apple/Library/Android/sdk/build-tools/28.0.3/core-lambda-stubs.jar" />
<option name="noStdlib" value="true" />
<option name="noReflect" value="true" />
<option name="moduleName" value="app_debug" />
<option name="languageVersion" value="1.3" />
<option name="apiVersion" value="1.3" />
<option name="pluginOptions">
<array />
</option>
<option name="pluginClasspaths">
<array />
</option>
<option name="errors">
<ArgumentParseErrors />
</option>
</compilerArguments>
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
<output url="file://$MODULE_DIR$/../../build/app/intermediates/javac/debug/classes" />
<output-test url="file://$MODULE_DIR$/../../build/app/intermediates/javac/debugUnitTest/classes" />
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/debug/res" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/resources" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/assets" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/aidl" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/rs" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/shaders" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/res" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/resources" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/assets" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/aidl" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/rs" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/shaders" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/res" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/resources" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/assets" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/aidl" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/rs" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/shaders" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/main/res" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/main/assets" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/main/aidl" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/kotlin" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/rs" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/shaders" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/res" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/resources" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/assets" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/aidl" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/rs" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/shaders" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/test/res" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/test/assets" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/test/aidl" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/test/rs" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/test/shaders" isTestSource="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/aidl_source_output_dir/debug/compileDebugAidl/out">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/aidl_source_output_dir/debug/compileDebugAidl/out" isTestSource="false" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/aidl_source_output_dir/debugAndroidTest/compileDebugAndroidTestAidl/out">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/aidl_source_output_dir/debugAndroidTest/compileDebugAndroidTestAidl/out" isTestSource="true" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/ap_generated_sources/debug/out">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/ap_generated_sources/debug/out" isTestSource="false" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/ap_generated_sources/debugAndroidTest/out">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/ap_generated_sources/debugAndroidTest/out" isTestSource="true" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/ap_generated_sources/debugUnitTest/out">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/ap_generated_sources/debugUnitTest/out" isTestSource="true" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/renderscript_source_output_dir/debug/compileDebugRenderscript/out">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/renderscript_source_output_dir/debug/compileDebugRenderscript/out" isTestSource="false" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/renderscript_source_output_dir/debugAndroidTest/compileDebugAndroidTestRenderscript/out">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/renderscript_source_output_dir/debugAndroidTest/compileDebugAndroidTestRenderscript/out" isTestSource="true" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/res/resValues/androidTest/debug">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/res/resValues/androidTest/debug" type="java-test-resource" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/res/resValues/debug">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/res/resValues/debug" type="java-resource" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/res/rs/androidTest/debug">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/res/rs/androidTest/debug" type="java-test-resource" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/res/rs/debug">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/res/rs/debug" type="java-resource" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/source/buildConfig/androidTest/debug">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/source/buildConfig/androidTest/debug" isTestSource="true" generated="true" />
</content>
<content url="file://$MODULE_DIR$/../../build/app/generated/source/buildConfig/debug">
<sourceFolder url="file://$MODULE_DIR$/../../build/app/generated/source/buildConfig/debug" isTestSource="false" generated="true" />
</content>
<orderEntry type="jdk" jdkName="Android API 28 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" scope="TEST" name="Gradle: junit:junit:4.12@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: org.hamcrest:hamcrest-integration:1.3@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: org.hamcrest:hamcrest-library:1.3@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: org.hamcrest:hamcrest-core:1.3@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: net.sf.kxml:kxml2:2.3.0@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.squareup:javawriter:2.1.1@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: javax.inject:javax.inject:1@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.google.code.findbugs:jsr305:2.0.1@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.android.support.test.espresso:espresso-core:3.0.2@aar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.android.support.test:runner:1.0.2@aar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.android.support.test:monitor:1.0.2@aar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.android.support.test.espresso:espresso-idling-resource:3.0.2@aar" level="project" />
<orderEntry type="library" name="Gradle: __local_aars__:/Users/apple/lsy/gmalpha_flutter/build/app/intermediates/flutter/debug/libs.jar:unspecified@jar" level="project" />
<orderEntry type="library" name="Gradle: io.flutter:flutter_embedding_debug:1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec@jar" level="project" />
<orderEntry type="library" name="Gradle: io.flutter:armeabi_v7a_debug:1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec@jar" level="project" />
<orderEntry type="library" name="Gradle: io.flutter:arm64_v8a_debug:1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec@jar" level="project" />
<orderEntry type="library" name="Gradle: io.flutter:x86_debug:1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec@jar" level="project" />
<orderEntry type="library" name="Gradle: io.flutter:x86_64_debug:1.0.0-99092a0436a2dd3f1228ffe8818055fbf72b3eec@jar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.lifecycle:common-java8:1.1.1@jar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.lifecycle:common:1.1.1@jar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.core:common:1.1.1@jar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:collections:28.0.0@jar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:support-annotations:28.0.0@jar" level="project" />
<orderEntry type="library" name="Gradle: org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50@jar" level="project" />
<orderEntry type="library" name="Gradle: org.jetbrains.kotlin:kotlin-stdlib:1.3.50@jar" level="project" />
<orderEntry type="library" name="Gradle: org.jetbrains.kotlin:kotlin-stdlib-common:1.3.50@jar" level="project" />
<orderEntry type="library" name="Gradle: org.jetbrains:annotations:13.0@jar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:support-fragment:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:support-core-ui:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:support-core-utils:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:loader:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:viewpager:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:coordinatorlayout:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:drawerlayout:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:slidingpanelayout:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:customview:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:swiperefreshlayout:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:asynclayoutinflater:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:support-compat:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.lifecycle:runtime:1.1.1@aar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.lifecycle:livedata:1.1.1@aar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.lifecycle:livedata-core:1.1.1@aar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.core:runtime:1.1.1@aar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.lifecycle:viewmodel:1.1.1@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:versionedparcelable:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:interpolator:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:cursoradapter:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:documentfile:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:localbroadcastmanager:28.0.0@aar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:print:28.0.0@aar" level="project" />
<orderEntry type="module" module-name="android-flutter_boost" />
<orderEntry type="module" module-name="android-xservice_kit" />
<orderEntry type="module" module-name="android-sqflite" />
<orderEntry type="module" module-name="android-path_provider" />
<orderEntry type="module" module-name="android-gengmei_flutter_plugin" />
</component>
</module>
\ No newline at end of file
// Generated file. Do not edit.
def localProperties = new Properties()
def localPropertiesFile = new File(buildscript.sourceFile.parentFile.parentFile, 'local.properties')
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
......@@ -23,19 +21,40 @@ if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
//apply plugin: 'com.android.application'
apply plugin: 'com.android.library'
apply plugin: 'maven'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 28
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
// applicationId "com.example.gmalpha_flutter"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
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 {
......@@ -43,7 +62,35 @@ flutter {
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:support-v13:27.1.1'
implementation 'com.android.support:support-annotations:27.1.1'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
ext {
GITHUB_REPO_PATH = "/Users/apple/lsy/flutter_aar" //这里指定的就是刚刚新建项目后clone下来的在本地的路径
PUBLISH_GROUP_ID = 'com.gengmei'
PUBLISH_ARTIFACT_ID = 'flutter'
PUBLISH_VERSION = '1.0.1-SNAPSHOT'
}
uploadArchives {
repositories.mavenDeployer {
def deployPath = file(project.GITHUB_REPO_PATH)
repository(url: "file://${deployPath.absolutePath}")
pom.project {
groupId project.PUBLISH_GROUP_ID
artifactId project.PUBLISH_ARTIFACT_ID
version project.PUBLISH_VERSION
}
}
}
task androidSourcesJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.java.sourceFiles
}
artifacts {
archives androidSourcesJar
}
<!-- Generated file. Do not edit. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.gmalpha_flutter">
<uses-permission android:name="android.permission.INTERNET"/>
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.gmalpha_flutter">
<!-- <application-->
<!-- android:name="io.flutter.app.FlutterApplication"-->
<!-- android:icon="@mipmap/ic_launcher"-->
<!-- android:label="gmalpha_flutter"-->
<!-- android:theme="@style/LaunchTheme">-->
<!-- <activity-->
<!-- android:name=".MainActivity"-->
<!-- android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"-->
<!-- android:hardwareAccelerated="true"-->
<!-- android:launchMode="singleTop"-->
<!-- android:windowSoftInputMode="adjustResize">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
<!-- <category android:name="android.intent.category.LAUNCHER" />-->
<!-- </intent-filter>-->
<!-- <meta-data-->
<!-- android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"-->
<!-- android:value="true" />-->
<!-- </activity>-->
<!-- </application>-->
</manifest>
......@@ -3,9 +3,7 @@ package io.flutter.plugins;
import io.flutter.plugin.common.PluginRegistry;
import com.taobao.idlefish.flutterboost.FlutterBoostPlugin;
import com.example.gengmei_flutter_plugin.GengmeiFlutterPlugin;
import io.flutter.plugins.packageinfo.PackageInfoPlugin;
import io.flutter.plugins.pathprovider.PathProviderPlugin;
import io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin;
import com.tekartik.sqflite.SqflitePlugin;
import fleamarket.taobao.com.xservicekit.XserviceKitPlugin;
......@@ -19,9 +17,7 @@ public final class GeneratedPluginRegistrant {
}
FlutterBoostPlugin.registerWith(registry.registrarFor("com.taobao.idlefish.flutterboost.FlutterBoostPlugin"));
GengmeiFlutterPlugin.registerWith(registry.registrarFor("com.example.gengmei_flutter_plugin.GengmeiFlutterPlugin"));
PackageInfoPlugin.registerWith(registry.registrarFor("io.flutter.plugins.packageinfo.PackageInfoPlugin"));
PathProviderPlugin.registerWith(registry.registrarFor("io.flutter.plugins.pathprovider.PathProviderPlugin"));
SharedPreferencesPlugin.registerWith(registry.registrarFor("io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin"));
SqflitePlugin.registerWith(registry.registrarFor("com.tekartik.sqflite.SqflitePlugin"));
XserviceKitPlugin.registerWith(registry.registrarFor("fleamarket.taobao.com.xservicekit.XserviceKitPlugin"));
}
......
package com.example.gmalpha_flutter
import android.os.Bundle
import io.flutter.app.FlutterActivity
import io.flutter.plugins.GeneratedPluginRegistrant
class MainActivity: FlutterActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
GeneratedPluginRegistrant.registerWith(this)
}
}
// Generated file. Do not edit.
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
jcenter()
maven {url 'https://dl.google.com/dl/android/maven2'}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.android.tools.build:gradle:3.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
maven {url 'https://dl.google.com/dl/android/maven2'}
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="android" name="Android">
<configuration>
<option name="ALLOW_USER_CONFIGURATION" value="false" />
<option name="GEN_FOLDER_RELATIVE_PATH_APT" value="/gen" />
<option name="GEN_FOLDER_RELATIVE_PATH_AIDL" value="/gen" />
<option name="MANIFEST_FILE_RELATIVE_PATH" value="/app/src/main/AndroidManifest.xml" />
<option name="RES_FOLDER_RELATIVE_PATH" value="/app/src/main/res" />
<option name="ASSETS_FOLDER_RELATIVE_PATH" value="/app/src/main/assets" />
<option name="LIBS_FOLDER_RELATIVE_PATH" value="/app/src/main/libs" />
<option name="PROGUARD_LOGS_FOLDER_RELATIVE_PATH" value="/app/src/main/proguard_logs" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/app/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/app/src/main/kotlin" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" generated="true" />
</content>
<orderEntry type="jdk" jdkName="Android API 25 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Flutter for Android" level="project" />
<orderEntry type="library" name="KotlinJavaRuntime" level="project" />
</component>
</module>
#Fri Jun 23 08:50:38 CEST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip
{"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"],"images/arrow_right.png":["images/arrow_right.png"],"images/message_att.png":["images/message_att.png"],"images/message_like.png":["images/message_like.png"],"images/message_noti.png":["images/message_noti.png"],"images/nav_back.png":["images/nav_back.png"]}
\ No newline at end of file
[{"fonts":[{"asset":"fonts/MaterialIcons-Regular.ttf"}],"family":"MaterialIcons"},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]},{"fonts":[{"asset":"fonts/MaterialIcons-Regular.ttf"}],"family":"MaterialIcons"}]
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
frontend_server.d: /Users/apple/Downloads/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot
gen_snapshot.d: /Users/apple/Downloads/flutter/bin/cache/artifacts/engine/android-arm-release/darwin-x64/gen_snapshot
build/flutteroutput/aot/app.dill: /Users/apple/lsy/gmalpha_flutter/lib/main.dart /Users/apple/Downloads/flutter/packages/flutter/lib/material.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/flutter_boost.dart /Users/apple/lsy/gmalpha_flutter/lib/Annotations/RouterCenterRestore.mark.dart /Users/apple/lsy/gmalpha_flutter/lib/commonModel/app_module.dart /Users/apple/lsy/gmalpha_flutter/lib/commonModel/ui/ALColors.dart /Users/apple/lsy/gmalpha_flutter/lib/commonModel/net/DioUtil.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/dio.dart /Users/apple/lsy/gmalpha_flutter/lib/messageModel/home/message_home.dart /Users/apple/lsy/gmalpha_flutter/lib/comment_suggest.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/about.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/app.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/app_bar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/app_bar_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/arc.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/back_button.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/banner.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/banner_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/bottom_app_bar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/bottom_app_bar_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/bottom_navigation_bar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/bottom_sheet.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/bottom_sheet_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/button.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/button_bar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/button_bar_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/button_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/card.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/card_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/checkbox.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/checkbox_list_tile.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/chip.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/chip_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/circle_avatar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/color_scheme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/colors.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/constants.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/data_table.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/data_table_source.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/date_picker.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/debug.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/dialog.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/dialog_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/divider.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/divider_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/drawer.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/drawer_header.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/dropdown.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/expand_icon.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/expansion_panel.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/expansion_tile.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/feedback.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/flat_button.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/flexible_space_bar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/floating_action_button.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/floating_action_button_location.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/floating_action_button_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/flutter_logo.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/grid_tile.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/grid_tile_bar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/icon_button.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/icons.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/ink_decoration.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/ink_highlight.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/ink_ripple.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/ink_splash.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/ink_well.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/input_border.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/input_decorator.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/list_tile.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/material.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/material_button.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/material_localizations.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/material_state.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/mergeable_material.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/outline_button.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/page.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/page_transitions_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/paginated_data_table.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/popup_menu.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/popup_menu_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/progress_indicator.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/radio.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/radio_list_tile.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/raised_button.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/range_slider.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/refresh_indicator.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/reorderable_list.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/scaffold.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/scrollbar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/search.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/selectable_text.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/shadows.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/slider.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/slider_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/snack_bar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/snack_bar_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/stepper.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/switch.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/switch_list_tile.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/tab_bar_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/tab_controller.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/tab_indicator.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/tabs.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/text_field.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/text_form_field.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/text_selection.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/text_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/theme_data.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/time.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/time_picker.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/toggle_buttons.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/toggle_buttons_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/toggleable.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/tooltip.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/tooltip_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/typography.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/user_accounts_drawer_header.dart /Users/apple/Downloads/flutter/packages/flutter/lib/widgets.dart /Users/apple/Downloads/flutter/packages/flutter/lib/services.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/AIOService/NavigationService/service/NavigationService.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/container/boost_container.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/container/container_manager.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/messaging/page_result_mediator.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/router/router.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/AIOService/loader/ServiceLoader.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/container/container_coordinator.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/observers_holders.dart /Users/apple/lsy/gmalpha_flutter/lib/PrestigeModel/PrestigeImpl.dart /Users/apple/lsy/gmalpha_flutter/lib/PrestigeModel/PrestigeRouter.dart /Users/apple/lsy/gmalpha_flutter/lib/AlbumModel/AlbumRouterImpl.dart /Users/apple/lsy/gmalpha_flutter/lib/AlbumModel/AlbumRouter.dart /Users/apple/lsy/gmalpha_flutter/lib/messageModel/MessageRouterImpl.dart /Users/apple/lsy/gmalpha_flutter/lib/messageModel/MessageRouter.dart /Users/apple/lsy/gmalpha_flutter/lib/userModel/UserRouterImpl.dart /Users/apple/lsy/gmalpha_flutter/lib/userModel/UserRouter.dart /Users/apple/lsy/gmalpha_flutter/lib/Annotations/RouterCenterRestore.dart /Users/apple/lsy/gmalpha_flutter/lib/Annotations/RouterBaser.dart /Users/apple/lsy/gmalpha_flutter/lib/commonModel/mmkv/MmkvUtil.dart /Users/apple/Downloads/flutter/packages/flutter/lib/painting.dart /Users/apple/lsy/gmalpha_flutter/lib/commonModel/net/Api.dart /Users/apple/lsy/gmalpha_flutter/lib/commonModel/toast/toast.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/dio.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/form_data.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/dio_error.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/transformer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/interceptor.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/options.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/response.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/cancel_token.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/upload_file_info.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/interceptors/log.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/interceptors/cookie_mgr.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/adapter.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/dio-2.2.2/lib/src/dio_http_headers.dart /Users/apple/lsy/gmalpha_flutter/lib/messageModel/home/message_notification_item.dart /Users/apple/lsy/gmalpha_flutter/lib/messageModel/model/message/message.dart /Users/apple/lsy/gmalpha_flutter/lib/messageModel/home/message_item.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/pull_to_refresh.dart /Users/apple/lsy/gmalpha_flutter/lib/commonModel/list_item.dart /Users/apple/lsy/gmalpha_flutter/lib/commonModel/ui/ALDevice.dart /Users/apple/Downloads/flutter/packages/flutter/lib/foundation.dart /Users/apple/Downloads/flutter/packages/flutter/lib/scheduler.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons_data.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/add_event.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/arrow_menu.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/close_menu.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/ellipsis_search.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/event_add.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/home_menu.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/list_view.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_arrow.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_close.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_home.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/pause_play.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/play_pause.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/search_ellipsis.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/material/animated_icons/data/view_list.g.dart /Users/apple/Downloads/flutter/packages/flutter/lib/cupertino.dart /Users/apple/Downloads/flutter/packages/flutter/lib/rendering.dart /Users/apple/Downloads/flutter/packages/flutter/lib/animation.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/vector_math_64.dart /Users/apple/Downloads/flutter/packages/flutter/lib/gestures.dart /Users/apple/Downloads/flutter/packages/flutter/lib/semantics.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/actions.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/animated_cross_fade.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/animated_list.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/animated_size.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/animated_switcher.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/annotated_region.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/app.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/async.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/automatic_keep_alive.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/banner.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/basic.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/binding.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/bottom_navigation_bar_item.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/color_filter.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/container.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/debug.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/dismissible.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/drag_target.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/draggable_scrollable_sheet.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/editable_text.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/fade_in_image.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/focus_manager.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/focus_scope.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/focus_traversal.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/form.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/framework.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/gesture_detector.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/grid_paper.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/heroes.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/icon.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/icon_data.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/icon_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/icon_theme_data.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/image.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/image_icon.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/implicit_animations.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/inherited_model.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/inherited_notifier.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/inherited_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/layout_builder.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/list_wheel_scroll_view.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/localizations.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/media_query.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/modal_barrier.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/navigation_toolbar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/navigator.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/nested_scroll_view.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/notification_listener.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/orientation_builder.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/overlay.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/overscroll_indicator.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/page_storage.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/page_view.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/pages.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/performance_overlay.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/placeholder.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/platform_view.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/preferred_size.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/primary_scroll_controller.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/raw_keyboard_listener.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/routes.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/safe_area.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scroll_activity.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scroll_configuration.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scroll_context.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scroll_controller.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scroll_metrics.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scroll_notification.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scroll_physics.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scroll_position.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scroll_position_with_single_context.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scroll_simulation.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scroll_view.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scrollable.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/scrollbar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/semantics_debugger.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/shortcuts.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/single_child_scroll_view.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/size_changed_layout_notifier.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/sliver.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/sliver_layout_builder.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/sliver_persistent_header.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/sliver_prototype_extent_list.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/spacer.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/status_transitions.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/table.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/text.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/text_selection.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/texture.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/ticker_provider.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/title.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/transitions.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/tween_animation_builder.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/unique_widget.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/value_listenable_builder.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/viewport.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/visibility.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/widget_inspector.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/widget_span.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/will_pop_scope.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/asset_bundle.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/binary_messenger.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/binding.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/clipboard.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/font_loader.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/haptic_feedback.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/keyboard_key.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/message_codec.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/message_codecs.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/platform_channel.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/platform_messages.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/platform_views.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/raw_keyboard.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/raw_keyboard_android.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/raw_keyboard_fuchsia.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/raw_keyboard_linux.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/raw_keyboard_macos.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/system_channels.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/system_chrome.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/system_navigator.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/system_sound.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/text_editing.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/text_formatter.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/text_input.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/xservice_kit-0.0.29/lib/foundation_ext/foundation_ext.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/xservice_kit-0.0.29/lib/ServiceTemplate.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/xservice_kit-0.0.29/lib/ServiceGateway.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/router/boost_page_route.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/support/logger.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/container/navigator_observer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/messaging/message_proxy.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/AIOService/NavigationService/service/NavigationServiceRegister.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/messaging/native_page_container_event_handler.dart /Users/apple/lsy/gmalpha_flutter/lib/PrestigeModel/page/reputation/ReputationsPage.dart /Users/apple/lsy/gmalpha_flutter/lib/Annotations/anno/Router.dart /Users/apple/lsy/gmalpha_flutter/lib/AlbumModel/page/album/AlbumPage.dart /Users/apple/lsy/gmalpha_flutter/lib/userModel/page/user/UserPage.dart /Users/apple/lsy/gmalpha_flutter/lib/Annotations/anno/RouterCenter.dart /Users/apple/lsy/gmalpha_flutter/lib/Annotations/base/RouterBuildItem.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/alignment.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/basic_types.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/beveled_rectangle_border.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/binding.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/border_radius.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/borders.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/box_border.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/box_decoration.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/box_fit.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/box_shadow.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/circle_border.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/clip.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/colors.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/continuous_rectangle_border.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/debug.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/decoration.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/decoration_image.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/edge_insets.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/flutter_logo.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/fractional_offset.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/geometry.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/gradient.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/image_cache.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/image_decoder.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/image_provider.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/image_resolution.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/image_stream.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/inline_span.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/matrix_utils.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/notched_shapes.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/paint_utilities.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/placeholder_span.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/rounded_rectangle_border.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/shader_warm_up.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/shape_decoration.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/stadium_border.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/strut_style.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/text_painter.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/text_span.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/text_style.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/cookie_jar-1.0.1/lib/cookie_jar.dart /Users/apple/lsy/gmalpha_flutter/lib/messageModel/model/message/replied_content.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/smart_refresher.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/indicator/classic_indicator.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/indicator/waterdrop_header.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/indicator/custom_indicator.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/internals/refresh_physics.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/internals/indicator_wrap.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/indicator/link_indicator.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/indicator/material_indicator.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/indicator/bezier_indicator.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/indicator/twolevel_indicator.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/internals/refresh_localizations.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/meta-1.1.7/lib/meta.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/annotations.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/assertions.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/basic_types.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/binding.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/bitfield.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/change_notifier.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/collections.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/consolidate_response.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/constants.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/debug.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/diagnostics.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/isolates.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/key.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/licenses.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/node.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/observer_list.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/platform.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/print.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/profile.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/serialization.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/synchronous_future.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/unicode.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/scheduler/binding.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/scheduler/debug.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/scheduler/priority.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/scheduler/ticker.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/action_sheet.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/activity_indicator.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/app.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/bottom_tab_bar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/button.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/colors.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/date_picker.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/dialog.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/icons.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/interface_level.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/localizations.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/nav_bar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/page_scaffold.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/picker.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/refresh.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/route.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/scrollbar.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/segmented_control.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/slider.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/switch.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/tab_scaffold.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/tab_view.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/text_field.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/text_selection.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/text_theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/theme.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/thumb_painter.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/animated_size.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/binding.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/box.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/custom_layout.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/custom_paint.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/debug.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/debug_overflow_indicator.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/editable.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/error.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/flex.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/flow.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/image.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/layer.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/list_body.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/list_wheel_viewport.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/object.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/paragraph.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/performance_overlay.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/platform_view.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/proxy_box.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/rotated_box.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/shifted_box.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/sliver.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/sliver_fill.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/sliver_fixed_extent_list.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/sliver_grid.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/sliver_list.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/sliver_multi_box_adaptor.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/sliver_padding.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/sliver_persistent_header.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/stack.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/table.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/table_border.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/texture.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/tweens.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/view.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/viewport.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/viewport_offset.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/rendering/wrap.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/animation/animation.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/animation/animation_controller.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/animation/animations.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/animation/curves.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/animation/listener_helpers.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/animation/tween.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/animation/tween_sequence.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/hash.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/utilities.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/aabb2.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/aabb3.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/colors.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/constants.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/error_helpers.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/frustum.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/intersection_result.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/matrix2.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/matrix3.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/matrix4.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/obb3.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/opengl.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/plane.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/quad.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/quaternion.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/ray.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/sphere.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/third_party/noise.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/triangle.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/vector.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/vector2.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/vector3.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/vector4.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/arena.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/binding.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/constants.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/converter.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/debug.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/drag.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/drag_details.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/eager.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/events.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/force_press.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/hit_test.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/long_press.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/lsq_solver.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/monodrag.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/mouse_tracking.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/multidrag.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/multitap.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/pointer_router.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/recognizer.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/scale.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/tap.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/team.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/gestures/velocity_tracker.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/semantics/binding.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/semantics/debug.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/semantics/semantics.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/semantics/semantics_service.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/constants.dart /Users/apple/Downloads/flutter/packages/flutter/lib/physics.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/widgets/route_notification_messages.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/collection.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/services/keyboard_maps.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/xservice_kit-0.0.29/lib/foundation_ext/type_converter.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/xservice_kit-0.0.29/lib/ServiceCallHandler.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/AIOService/NavigationService/handlers/NavigationService_onNativePageResult.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/AIOService/NavigationService/handlers/NavigationService_didShowPageContainer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/AIOService/NavigationService/handlers/NavigationService_willShowPageContainer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/AIOService/NavigationService/handlers/NavigationService_willDisappearPageContainer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/AIOService/NavigationService/handlers/NavigationService_didDisappearPageContainer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/AIOService/NavigationService/handlers/NavigationService_didInitPageContainer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/AIOService/NavigationService/handlers/NavigationService_willDeallocPageContainer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_boost-0.0.420/lib/AIOService/NavigationService/handlers/NavigationService_canPop.dart /Users/apple/lsy/gmalpha_flutter/lib/PrestigeModel/page/reputation/ReputationsModel.dart /Users/apple/lsy/gmalpha_flutter/lib/PrestigeModel/service/remote/entity/PrestigeEntity.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/cached_network_image-1.1.1/lib/cached_network_image.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/gengmei_flutter_plugin-0.0.727/lib/ScanImagePlugn.dart /Users/apple/lsy/gmalpha_flutter/lib/AlbumModel/bean/DirBean.dart /Users/apple/lsy/gmalpha_flutter/lib/AlbumModel/page/album/AlbumModel.dart /Users/apple/lsy/gmalpha_flutter/lib/commonModel/net/Responce/SimpleResponce.dart /Users/apple/lsy/gmalpha_flutter/lib/userModel/page/user/UserPageModel.dart /Users/apple/lsy/gmalpha_flutter/lib/userModel/service/remote/entity/TestUserEntity.dart /Users/apple/lsy/gmalpha_flutter/lib/userModel/service/remote/entity/UserEntity.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/painting/_network_image_io.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/cookie_jar-1.0.1/lib/src/cookie_jar.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/cookie_jar-1.0.1/lib/src/default_cookie_jar.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/cookie_jar-1.0.1/lib/src/persist_cookie_jar.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/cookie_jar-1.0.1/lib/src/serializable_cookie.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.6/lib/src/internals/slivers.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/_bitfield_io.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/_isolates_io.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/foundation/_platform_io.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/typed_data-1.1.6/lib/typed_buffers.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/cupertino/constants.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/semantics/semantics_event.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/physics/clamped_simulation.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/physics/friction_simulation.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/physics/gravity_simulation.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/physics/simulation.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/physics/spring_simulation.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/physics/tolerance.dart /Users/apple/Downloads/flutter/packages/flutter/lib/src/physics/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/algorithms.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/canonicalized_map.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/combined_wrappers/combined_iterable.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/combined_wrappers/combined_list.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/combined_wrappers/combined_map.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/comparators.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/equality.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/equality_map.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/equality_set.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/functions.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/iterable_zip.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/priority_queue.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/queue_list.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/union_set.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/union_set_controller.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/unmodifiable_wrappers.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/wrappers.dart /Users/apple/lsy/gmalpha_flutter/lib/PrestigeModel/service/PrestigeRepository.dart /Users/apple/lsy/gmalpha_flutter/lib/commonModel/live/BaseModel.dart /Users/apple/lsy/gmalpha_flutter/lib/commonModel/live/LiveData.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/cached_network_image-1.1.1/lib/src/cached_image_widget.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/cached_network_image-1.1.1/lib/src/cached_network_image_provider.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/gengmei_flutter_plugin-0.0.727/lib/gengmei_flutter_plugin.dart /Users/apple/lsy/gmalpha_flutter/lib/AlbumModel/repository/AlbumRepository.dart /Users/apple/lsy/gmalpha_flutter/lib/userModel/service/UserRepository.dart /Users/apple/lsy/gmalpha_flutter/lib/Annotations/anno/User.dart /Users/apple/lsy/gmalpha_flutter/lib/Annotations/anno/UserCenter.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/json_annotation-2.3.0/lib/json_annotation.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/empty_unmodifiable_set.dart /Users/apple/lsy/gmalpha_flutter/lib/PrestigeModel/service/local/PresitigeLocal.dart /Users/apple/lsy/gmalpha_flutter/lib/PrestigeModel/service/remote/PrestigeRemote.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/rxdart.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_cache_manager-1.1.1/lib/flutter_cache_manager.dart /Users/apple/lsy/gmalpha_flutter/lib/userModel/service/local/UserLocal.dart /Users/apple/lsy/gmalpha_flutter/lib/userModel/service/remote/UserRemote.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/json_annotation-2.3.0/lib/src/allowed_keys_helpers.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/json_annotation-2.3.0/lib/src/checked_helpers.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/json_annotation-2.3.0/lib/src/json_converter.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/json_annotation-2.3.0/lib/src/json_key.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/json_annotation-2.3.0/lib/src/json_literal.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/json_annotation-2.3.0/lib/src/json_serializable.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/json_annotation-2.3.0/lib/src/json_value.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/json_annotation-2.3.0/lib/src/wrapper_helpers.dart /Users/apple/lsy/gmalpha_flutter/lib/PrestigeModel/service/remote/api/PrestigeApi.serv.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/futures.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/observables/connectable_observable.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/observables/observable.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/observables/replay_observable.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/observables/value_observable.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/streams.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/subjects.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/transformers.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/utils/composite_subscription.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_cache_manager-1.1.1/lib/src/cache_manager.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_cache_manager-1.1.1/lib/src/file_fetcher.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_cache_manager-1.1.1/lib/src/file_info.dart /Users/apple/lsy/gmalpha_flutter/lib/userModel/service/remote/api/UserLoginApi.serv.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/json_annotation-2.3.0/lib/src/json_serializable.g.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/futures/as_observable_future.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/futures/stream_max_future.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/futures/stream_min_future.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/futures/wrapped_future.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/combine_latest.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/concat.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/concat_eager.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/defer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/error.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/fork_join.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/merge.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/never.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/race.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/range.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/repeat.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/retry.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/retry_when.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/sequence_equal.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/switch_latest.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/timer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/streams/zip.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/subjects/subject.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/subjects/behavior_subject.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/subjects/publish_subject.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/subjects/replay_subject.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/default_if_empty.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/delay.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/dematerialize.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/distinct_unique.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/do.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/exhaust_map.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/flat_map.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/group_by.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/ignore_elements.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/interval.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/map_to.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/materialize.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/of_type.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/on_error_resume.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/scan.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/skip_until.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/start_with.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/start_with_many.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/switch_if_empty.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/switch_map.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/take_until.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/time_interval.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/timestamp.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/where_type.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/with_latest_from.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/utils/notification.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/utils/type_token.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/backpressure/buffer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/backpressure/debounce.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/backpressure/pairwise.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/backpressure/sample.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/backpressure/throttle.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/backpressure/window.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_cache_manager-1.1.1/lib/src/cache_object.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_cache_manager-1.1.1/lib/src/cache_store.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/flutter_cache_manager-1.1.1/lib/src/web_helper.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/path.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path_provider-1.3.0/lib/path_provider.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/uuid-2.0.2/lib/uuid.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/http.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/rxdart-0.22.2/lib/src/transformers/backpressure/backpressure.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/sqflite.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/context.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/style.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/path_exception.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/path_map.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/path_set.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/platform-2.2.1/lib/platform.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/uuid-2.0.2/lib/uuid_util.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/crypto.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/convert.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/client.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/response.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/base_client.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/base_request.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/base_response.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/byte_stream.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/exception.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/multipart_file.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/multipart_request.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/request.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/streamed_request.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/streamed_response.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/compat.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/constant.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/factory_impl.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/sqflite_impl.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/utils/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/sqlite_api.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/sql.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/characters.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/internal_style.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/parsed_path.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/style/posix.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/style/url.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/style/windows.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/platform-2.2.1/lib/src/interface/local_platform.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/platform-2.2.1/lib/src/interface/platform.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/platform-2.2.1/lib/src/testing/fake_platform.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/digest.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/hash.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/hmac.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/md5.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/sha1.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/sha256.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/sha512.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/accumulator_sink.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/byte_accumulator_sink.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/hex.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/identity_codec.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/percent.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/string_accumulator_sink.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/io_client.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http_parser-3.1.3/lib/http_parser.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/multipart_file_io.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http-0.12.0+2/lib/src/boundary_characters.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/factory_mixin.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/exception_impl.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/factory.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/open_options.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/services_impl.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/collection_utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/exception.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/sql_builder.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/path-1.6.4/lib/src/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/digest_sink.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/hash_sink.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/sha512_fastsinks.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/typed_data-1.1.6/lib/typed_data.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/hex/encoder.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/hex/decoder.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/percent/encoder.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/percent/decoder.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/async.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http_parser-3.1.3/lib/src/authentication_challenge.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http_parser-3.1.3/lib/src/case_insensitive_map.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http_parser-3.1.3/lib/src/chunked_coding.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http_parser-3.1.3/lib/src/http_date.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http_parser-3.1.3/lib/src/media_type.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/database.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/database_mixin.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/synchronized-2.1.0+1/lib/synchronized.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/charcode-1.1.2/lib/ascii.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/async_cache.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/async_memoizer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/byte_collector.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/cancelable_operation.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/delegate/event_sink.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/delegate/future.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/delegate/sink.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/delegate/stream.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/delegate/stream_consumer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/delegate/stream_sink.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/delegate/stream_subscription.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/future_group.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/lazy_stream.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/null_stream_sink.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/restartable_timer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/result/result.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/result/error.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/result/future.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/result/value.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/single_subscription_transformer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/stream_completer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/stream_group.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/stream_queue.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/stream_sink_completer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/stream_sink_transformer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/stream_splitter.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/stream_subscription_transformer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/stream_zip.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/subscription_stream.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/typed_stream_transformer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/string_scanner-1.0.5/lib/string_scanner.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http_parser-3.1.3/lib/src/scan.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http_parser-3.1.3/lib/src/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http_parser-3.1.3/lib/src/chunked_coding/encoder.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/http_parser-3.1.3/lib/src/chunked_coding/decoder.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/batch.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/sqflite-1.1.6+5/lib/src/transaction.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/synchronized-2.1.0+1/lib/src/basic_lock.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/synchronized-2.1.0+1/lib/src/reentrant_lock.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/typed/stream_subscription.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/result/capture_sink.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/result/capture_transformer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/result/release_sink.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/result/release_transformer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/stream_sink_transformer/handler_transformer.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/stream_sink_transformer/stream_transformer_wrapper.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/src/stream_sink_transformer/typed.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/string_scanner-1.0.5/lib/src/exception.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/string_scanner-1.0.5/lib/src/line_scanner.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/string_scanner-1.0.5/lib/src/span_scanner.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/string_scanner-1.0.5/lib/src/string_scanner.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.5.5/lib/source_span.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/synchronized-2.1.0+1/lib/src/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/string_scanner-1.0.5/lib/src/eager_span_scanner.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/string_scanner-1.0.5/lib/src/relative_span_scanner.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/string_scanner-1.0.5/lib/src/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/charcode-1.1.2/lib/charcode.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.5.5/lib/src/file.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.5.5/lib/src/location.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.5.5/lib/src/location_mixin.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.5.5/lib/src/span.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.5.5/lib/src/span_exception.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.5.5/lib/src/span_mixin.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.5.5/lib/src/span_with_context.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/charcode-1.1.2/lib/html_entity.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/term_glyph-1.1.0/lib/term_glyph.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.5.5/lib/src/highlighter.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.5.5/lib/src/utils.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/term_glyph-1.1.0/lib/src/generated/glyph_set.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/term_glyph-1.1.0/lib/src/generated/top_level.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/term_glyph-1.1.0/lib/src/generated/ascii_glyph_set.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/term_glyph-1.1.0/lib/src/generated/unicode_glyph_set.dart /Users/apple/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.5.5/lib/src/colors.dart
include ':app'
def flutterProjectRoot = rootProject.projectDir.parentFile.toPath()
def plugins = new Properties()
def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins')
if (pluginsFile.exists()) {
pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) }
}
plugins.each { name, path ->
def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile()
include ":$name"
project(":$name").projectDir = pluginDirectory
}
#!/bin/bash
# This is flutter build
projectDir=`pwd`
rootFlutter=`which flutter`
rootDir=${rootFlutter%/*}
#${rootFlutter} build apk
# ======old=====
#cd ${rootDir}/cache/artifacts/engine/android-arm-release
#rm -rf lib
#rm -rf io
#unzip flutter.jar
#mkdir ${projectDir}/android/app/src/main/assets
#rm -rf ${projectDir}/android/app/src/main/assets/io
rm -rf ${projectDir}/android/app/src/main/assets/lib
#mv ${pwd}io/* ${projectDir}/android/app/src/main/assets/io/
#mv ${pwd}lib/* ${projectDir}/android/app/src/main/assets/lib/
#cp ${pwd}darwin-x64/gen_snapshot ${projectDir}/android/app/src/main/assets/gen_snapshot
#cd ..
#cd darwin-x64/
#cp ${pwd}icudtl.dat ${projectDir}/android/app/src/main/assets/
cd ${projectDir}
export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
${rootFlutter} packages get
${rootFlutter} clean
${rootFlutter} build aot --release --output-dir=build/flutteroutput/aot
${rootFlutter} build bundle --precompiled --asset-dir=build/flutteroutput/flutter_assets
rm -f -r android/packflutter/flutter/
echo 'Copy flutter jar'
mkdir -p android/packflutter/flutter/flutter/android-arm-release && cp ${rootDir}/cache/artifacts/engine/android-arm-release/flutter.jar "$_"
echo 'Copy flutter asset'
mkdir -p android/packflutter/flutter/assets/release && cp -r build/flutteroutput/aot/* "$_"
mkdir -p android/packflutter/flutter/assets/release/flutter_assets && cp -r build/flutteroutput/flutter_assets/* "$_"
echo 'Build and publish idlefish flutter to aar'
cd android
#if [ -n "$1" ]
#then
# ./gradlew :packflutter:clean :packflutter:publish -PAAR_VERSION=$1
#else
# ./gradlew :packflutter:clean :packflutter:publish
#fi
#cd ../
#cd android/
#./gradlew assembleRelease
#./gradlew assembleDebug
#cd ..
./gradlew uploadArchives
cd /Users/sylin/Downloads/flutter_aar
git add .
git commit -m "commit "
git push
#test
#cd ${PWD}/build/app/outputs/aar/
#open .
#cp ${PWD}/build/app/outputs/aar/app-release.aar /Users/sylin/lsy/PLVideo/app/libs/
#cp ${PWD}/build/app/outputs/aar/app-debug.aar /Users/sylin/lsy/PLVideo/app/libs/
exit
\ No newline at end of file
#include "Generated.xcconfig"
// This is a generated file; do not edit or check into version control.
FLUTTER_ROOT=/Users/apple/Downloads/flutter
FLUTTER_APPLICATION_PATH=/Users/apple/lsy/gmalpha_flutter
FLUTTER_APPLICATION_PATH=/Users/apple/Downloads/wwq/gmalpha_flutter
FLUTTER_TARGET=lib/main.dart
FLUTTER_BUILD_DIR=build
SYMROOT=${SOURCE_ROOT}/../build/ios
FLUTTER_FRAMEWORK_DIR=/Users/apple/Downloads/flutter/bin/cache/artifacts/engine/ios
FLUTTER_BUILD_NAME=1.0.0
FLUTTER_BUILD_NUMBER=1
#include "Generated.xcconfig"
#!/bin/sh
# This is a generated file; do not edit or check into version control.
export "FLUTTER_ROOT=/Users/apple/Downloads/flutter"
export "FLUTTER_APPLICATION_PATH=/Users/apple/Downloads/wwq/gmalpha_flutter"
export "FLUTTER_TARGET=lib/main.dart"
export "FLUTTER_BUILD_DIR=build"
export "SYMROOT=${SOURCE_ROOT}/../build/ios"
export "FLUTTER_FRAMEWORK_DIR=/Users/apple/Downloads/flutter/bin/cache/artifacts/engine/ios"
export "FLUTTER_BUILD_NAME=1.0.0"
export "FLUTTER_BUILD_NUMBER=1"
......@@ -7,27 +7,27 @@
objects = {
/* Begin PBXBuildFile section */
741F496221355F47001E2961 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 741F495E21355F27001E2961 /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
741F496821356857001E2961 /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 741F496521356807001E2961 /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
74974048213559DB008C567A /* Release.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 74974046213559DB008C567A /* Release.xcconfig */; };
74974049213559DB008C567A /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 74974047213559DB008C567A /* Debug.xcconfig */; };
7497404B213559E7008C567A /* Flutter.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 7497404A213559E7008C567A /* Flutter.xcconfig */; };
978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; };
97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; };
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; };
3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; };
9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
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 PBXCopyFilesBuildPhase section */
741F496321355F47001E2961 /* Embed Frameworks */ = {
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
741F496821356857001E2961 /* App.framework in Embed Frameworks */,
741F496221355F47001E2961 /* Flutter.framework in Embed Frameworks */,
3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */,
9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */,
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
......@@ -35,16 +35,17 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
741F495E21355F27001E2961 /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = ../.ios/Flutter/engine/Flutter.framework; sourceTree = "<group>"; };
741F496521356807001E2961 /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = ../.ios/Flutter/App.framework; sourceTree = "<group>"; };
74974046213559DB008C567A /* Release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
74974047213559DB008C567A /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
7497404A213559E7008C567A /* Flutter.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Flutter.xcconfig; sourceTree = "<group>"; };
7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = ../.ios/Flutter/Generated.xcconfig; sourceTree = "<group>"; };
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = "<group>"; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = "<group>"; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
......@@ -56,27 +57,22 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */,
3B80C3941E831B6300D905FE /* App.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
741F49642135620F001E2961 /* Config */ = {
isa = PBXGroup;
children = (
74974047213559DB008C567A /* Debug.xcconfig */,
74974046213559DB008C567A /* Release.xcconfig */,
7497404A213559E7008C567A /* Flutter.xcconfig */,
);
path = Config;
sourceTree = "<group>";
};
9740EEB11CF90186004384FC /* Flutter */ = {
isa = PBXGroup;
children = (
741F496521356807001E2961 /* App.framework */,
741F495E21355F27001E2961 /* Flutter.framework */,
3B80C3931E831B6300D905FE /* App.framework */,
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
9740EEBA1CF902C7004384FC /* Flutter.framework */,
9740EEB21CF90195004384FC /* Debug.xcconfig */,
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
9740EEB31CF90195004384FC /* Generated.xcconfig */,
);
name = Flutter;
......@@ -85,7 +81,6 @@
97C146E51CF9000F007C117D = {
isa = PBXGroup;
children = (
741F49642135620F001E2961 /* Config */,
9740EEB11CF90186004384FC /* Flutter */,
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
......@@ -103,13 +98,15 @@
97C146F01CF9000F007C117D /* Runner */ = {
isa = PBXGroup;
children = (
7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */,
7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */,
97C146FA1CF9000F007C117D /* Main.storyboard */,
97C146FD1CF9000F007C117D /* Assets.xcassets */,
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
97C147021CF9000F007C117D /* Info.plist */,
97C146F11CF9000F007C117D /* Supporting Files */,
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
);
path = Runner;
sourceTree = "<group>";
......@@ -117,7 +114,6 @@
97C146F11CF9000F007C117D /* Supporting Files */ = {
isa = PBXGroup;
children = (
97C146F21CF9000F007C117D /* main.m */,
);
name = "Supporting Files";
sourceTree = "<group>";
......@@ -133,8 +129,8 @@
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
741F496321355F47001E2961 /* Embed Frameworks */,
);
buildRules = (
);
......@@ -156,6 +152,7 @@
TargetAttributes = {
97C146ED1CF9000F007C117D = {
CreatedOnToolsVersion = 7.3.1;
LastSwiftMigration = 0910;
};
};
};
......@@ -183,10 +180,8 @@
buildActionMask = 2147483647;
files = (
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
74974049213559DB008C567A /* Debug.xcconfig in Resources */,
74974048213559DB008C567A /* Release.xcconfig in Resources */,
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
7497404B213559E7008C567A /* Flutter.xcconfig in Resources */,
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
......@@ -229,8 +224,8 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */,
97C146F31CF9000F007C117D /* main.m in Sources */,
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
......@@ -258,7 +253,7 @@
/* Begin XCBuildConfiguration section */
249021D3217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 74974046213559DB008C567A /* Release.xcconfig */;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
......@@ -301,6 +296,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
......@@ -308,11 +304,11 @@
};
249021D4217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 74974046213559DB008C567A /* Release.xcconfig */;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = S8QB4VV633;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
......@@ -326,12 +322,15 @@
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.gmalphaFlutter;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 4.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Profile;
};
97C147031CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
......@@ -387,6 +386,7 @@
};
97C147041CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
......@@ -429,6 +429,8 @@
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
......@@ -436,15 +438,15 @@
};
97C147061CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 74974047213559DB008C567A /* Debug.xcconfig */;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
"$(PROJECT_DIR)/Flutter/engine",
);
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
......@@ -454,21 +456,24 @@
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.gmalphaFlutter;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 4.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
97C147071CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 74974046213559DB008C567A /* Release.xcconfig */;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
"$(PROJECT_DIR)/Flutter/engine",
);
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
......@@ -478,6 +483,8 @@
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.gmalphaFlutter;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 4.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
......
......@@ -65,7 +65,7 @@
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
buildConfiguration = "Profile"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
......
//
// Generated file. Do not edit.
//
#import "GeneratedPluginRegistrant.h"
@implementation GeneratedPluginRegistrant
+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry {
}
@end
Versions/Current/Headers
\ No newline at end of file
Versions/Current/Resources
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment