@ -1,40 +0,0 @@ |
|||||||
# Miscellaneous |
|
||||||
*.class |
|
||||||
*.log |
|
||||||
*.pyc |
|
||||||
*.swp |
|
||||||
.DS_Store |
|
||||||
.atom/ |
|
||||||
.buildlog/ |
|
||||||
.history |
|
||||||
.svn/ |
|
||||||
|
|
||||||
# IntelliJ related |
|
||||||
*.iml |
|
||||||
*.ipr |
|
||||||
*.iws |
|
||||||
.idea/ |
|
||||||
|
|
||||||
# The .vscode folder contains launch configuration and tasks you configure in |
|
||||||
# VS Code which you may wish to be included in version control, so this line |
|
||||||
# is commented out by default. |
|
||||||
#.vscode/ |
|
||||||
|
|
||||||
# Flutter/Dart/Pub related |
|
||||||
**/doc/api/ |
|
||||||
.dart_tool/ |
|
||||||
.flutter-plugins |
|
||||||
.flutter-plugins-dependencies |
|
||||||
.packages |
|
||||||
.pub-cache/ |
|
||||||
.pub/ |
|
||||||
/build/ |
|
||||||
|
|
||||||
# Web related |
|
||||||
lib/generated_plugin_registrant.dart |
|
||||||
|
|
||||||
# Symbolication related |
|
||||||
app.*.symbols |
|
||||||
|
|
||||||
# Exceptions to above rules. |
|
||||||
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages |
|
@ -1,10 +0,0 @@ |
|||||||
# This file tracks properties of this Flutter project. |
|
||||||
# Used by Flutter tool to assess capabilities and perform upgrades etc. |
|
||||||
# |
|
||||||
# This file should be version controlled and should not be manually edited. |
|
||||||
|
|
||||||
version: |
|
||||||
revision: 67826bdce54505760fe83b7ead70bdb5af6fe9f2 |
|
||||||
channel: dev |
|
||||||
|
|
||||||
project_type: app |
|
@ -1,16 +0,0 @@ |
|||||||
# argon2_ffi_example |
|
||||||
|
|
||||||
Demonstrates how to use the argon2_ffi plugin. |
|
||||||
|
|
||||||
## Getting Started |
|
||||||
|
|
||||||
This project is a starting point for a Flutter application. |
|
||||||
|
|
||||||
A few resources to get you started if this is your first Flutter project: |
|
||||||
|
|
||||||
- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) |
|
||||||
- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) |
|
||||||
|
|
||||||
For help getting started with Flutter, view our |
|
||||||
[online documentation](https://flutter.dev/docs), which offers tutorials, |
|
||||||
samples, guidance on mobile development, and a full API reference. |
|
@ -1,7 +0,0 @@ |
|||||||
gradle-wrapper.jar |
|
||||||
/.gradle |
|
||||||
/captures/ |
|
||||||
/gradlew |
|
||||||
/gradlew.bat |
|
||||||
/local.properties |
|
||||||
GeneratedPluginRegistrant.java |
|
@ -1,76 +0,0 @@ |
|||||||
def localProperties = new Properties() |
|
||||||
def localPropertiesFile = rootProject.file('local.properties') |
|
||||||
if (localPropertiesFile.exists()) { |
|
||||||
localPropertiesFile.withReader('UTF-8') { reader -> |
|
||||||
localProperties.load(reader) |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
def flutterRoot = localProperties.getProperty('flutter.sdk') |
|
||||||
if (flutterRoot == null) { |
|
||||||
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") |
|
||||||
} |
|
||||||
|
|
||||||
def flutterVersionCode = localProperties.getProperty('flutter.versionCode') |
|
||||||
if (flutterVersionCode == null) { |
|
||||||
flutterVersionCode = '1' |
|
||||||
} |
|
||||||
|
|
||||||
def flutterVersionName = localProperties.getProperty('flutter.versionName') |
|
||||||
if (flutterVersionName == null) { |
|
||||||
flutterVersionName = '1.0' |
|
||||||
} |
|
||||||
|
|
||||||
apply plugin: 'com.android.application' |
|
||||||
apply plugin: 'kotlin-android' |
|
||||||
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" |
|
||||||
|
|
||||||
kotlin { |
|
||||||
jvmToolchain(17) |
|
||||||
} |
|
||||||
|
|
||||||
android { |
|
||||||
compileSdkVersion 31 |
|
||||||
|
|
||||||
sourceSets { |
|
||||||
main.java.srcDirs += 'src/main/kotlin' |
|
||||||
} |
|
||||||
|
|
||||||
compileOptions { |
|
||||||
sourceCompatibility = 17 |
|
||||||
targetCompatibility = 17 |
|
||||||
} |
|
||||||
|
|
||||||
defaultConfig { |
|
||||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). |
|
||||||
applicationId "com.example.argon2_ffi_example" |
|
||||||
minSdkVersion 16 |
|
||||||
targetSdkVersion 31 |
|
||||||
versionCode flutterVersionCode.toInteger() |
|
||||||
versionName flutterVersionName |
|
||||||
testInstrumentationRunner "androidx.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 |
|
||||||
} |
|
||||||
} |
|
||||||
namespace 'com.example.argon2_ffi_example' |
|
||||||
lint { |
|
||||||
disable 'InvalidPackage' |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
flutter { |
|
||||||
source '../..' |
|
||||||
} |
|
||||||
|
|
||||||
dependencies { |
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" |
|
||||||
testImplementation 'junit:junit:4.12' |
|
||||||
androidTestImplementation 'androidx.test:runner:1.2.0' |
|
||||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' |
|
||||||
} |
|
@ -1,6 +0,0 @@ |
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
|
||||||
<!-- 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> |
|
@ -1,47 +0,0 @@ |
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
|
||||||
<!-- 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="${applicationName}" |
|
||||||
android:label="argon2_ffi_example" |
|
||||||
android:icon="@mipmap/ic_launcher"> |
|
||||||
<activity |
|
||||||
android:name=".MainActivity" |
|
||||||
android:launchMode="singleTop" |
|
||||||
android:theme="@style/LaunchTheme" |
|
||||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
|
||||||
android:hardwareAccelerated="true" |
|
||||||
android:windowSoftInputMode="adjustResize" |
|
||||||
android:exported="true"> |
|
||||||
<!-- Specifies an Android theme to apply to this Activity as soon as |
|
||||||
the Android process has started. This theme is visible to the user |
|
||||||
while the Flutter UI initializes. After that, this theme continues |
|
||||||
to determine the Window background behind the Flutter UI. --> |
|
||||||
<meta-data |
|
||||||
android:name="io.flutter.embedding.android.NormalTheme" |
|
||||||
android:resource="@style/NormalTheme" |
|
||||||
/> |
|
||||||
<!-- Displays an Android View that continues showing the launch screen |
|
||||||
Drawable until Flutter paints its first frame, then this splash |
|
||||||
screen fades out. A splash screen is useful to avoid any visual |
|
||||||
gap between the end of Android's launch screen and the painting of |
|
||||||
Flutter's first frame. --> |
|
||||||
<meta-data |
|
||||||
android:name="io.flutter.embedding.android.SplashScreenDrawable" |
|
||||||
android:resource="@drawable/launch_background" |
|
||||||
/> |
|
||||||
<intent-filter> |
|
||||||
<action android:name="android.intent.action.MAIN"/> |
|
||||||
<category android:name="android.intent.category.LAUNCHER"/> |
|
||||||
</intent-filter> |
|
||||||
</activity> |
|
||||||
<!-- Don't delete the meta-data below. |
|
||||||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
|
||||||
<meta-data |
|
||||||
android:name="flutterEmbedding" |
|
||||||
android:value="2" /> |
|
||||||
</application> |
|
||||||
</manifest> |
|
@ -1,6 +0,0 @@ |
|||||||
package com.example.argon2_ffi_example |
|
||||||
|
|
||||||
import io.flutter.embedding.android.FlutterActivity |
|
||||||
|
|
||||||
class MainActivity: FlutterActivity() { |
|
||||||
} |
|
@ -1,12 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||||
<!-- Modify this file to customize your launch splash screen --> |
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> |
|
||||||
<item android:drawable="@android:color/white" /> |
|
||||||
|
|
||||||
<!-- You can insert your own image assets here --> |
|
||||||
<!-- <item> |
|
||||||
<bitmap |
|
||||||
android:gravity="center" |
|
||||||
android:src="@mipmap/launch_image" /> |
|
||||||
</item> --> |
|
||||||
</layer-list> |
|
Before Width: | Height: | Size: 544 B |
Before Width: | Height: | Size: 442 B |
Before Width: | Height: | Size: 721 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.4 KiB |
@ -1,18 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||||
<resources> |
|
||||||
<!-- Theme applied to the Android Window while the process is starting --> |
|
||||||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar"> |
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when |
|
||||||
Flutter draws its first frame --> |
|
||||||
<item name="android:windowBackground">@drawable/launch_background</item> |
|
||||||
</style> |
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started. |
|
||||||
This theme determines the color of the Android Window while your |
|
||||||
Flutter UI initializes, as well as behind your Flutter UI while its |
|
||||||
running. |
|
||||||
|
|
||||||
This Theme is only used starting with V2 of Flutter's Android embedding. --> |
|
||||||
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar"> |
|
||||||
<item name="android:windowBackground">@android:color/white</item> |
|
||||||
</style> |
|
||||||
</resources> |
|
@ -1,6 +0,0 @@ |
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
|
||||||
<!-- 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> |
|
@ -1,31 +0,0 @@ |
|||||||
buildscript { |
|
||||||
ext.kotlin_version = '1.8.10' |
|
||||||
repositories { |
|
||||||
google() |
|
||||||
mavenCentral() |
|
||||||
} |
|
||||||
|
|
||||||
dependencies { |
|
||||||
classpath 'com.android.tools.build:gradle:8.1.0' |
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
allprojects { |
|
||||||
repositories { |
|
||||||
google() |
|
||||||
mavenCentral() |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
rootProject.buildDir = '../build' |
|
||||||
subprojects { |
|
||||||
project.buildDir = "${rootProject.buildDir}/${project.name}" |
|
||||||
} |
|
||||||
subprojects { |
|
||||||
project.evaluationDependsOn(':app') |
|
||||||
} |
|
||||||
|
|
||||||
tasks.register("clean", Delete) { |
|
||||||
delete rootProject.buildDir |
|
||||||
} |
|
@ -1,7 +0,0 @@ |
|||||||
org.gradle.jvmargs=-Xmx1536M |
|
||||||
android.enableR8=true |
|
||||||
android.useAndroidX=true |
|
||||||
android.enableJetifier=true |
|
||||||
android.defaults.buildfeatures.buildconfig=true |
|
||||||
android.nonTransitiveRClass=false |
|
||||||
android.nonFinalResIds=false |
|
@ -1,5 +0,0 @@ |
|||||||
distributionBase=GRADLE_USER_HOME |
|
||||||
distributionPath=wrapper/dists |
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip |
|
||||||
zipStoreBase=GRADLE_USER_HOME |
|
||||||
zipStorePath=wrapper/dists |
|
@ -1,15 +0,0 @@ |
|||||||
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 |
|
||||||
} |
|
@ -1,47 +0,0 @@ |
|||||||
cmake_minimum_required(VERSION 3.10) |
|
||||||
project(com.example.argon2_ffi_example LANGUAGES CXX) |
|
||||||
|
|
||||||
include(GNUInstallDirs) |
|
||||||
|
|
||||||
set(BINARY_NAME ${CMAKE_PROJECT_NAME}) |
|
||||||
set(FLUTTER_DIR ${CMAKE_CURRENT_SOURCE_DIR}/flutter) |
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 17) |
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED ON) |
|
||||||
|
|
||||||
set(CMAKE_CXX_FLAGS "-Wall -Wextra") |
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "-O3") |
|
||||||
|
|
||||||
set(CMAKE_SKIP_RPATH OFF) |
|
||||||
set(CMAKE_INSTALL_RPATH "\$ORIGIN/../share/${BINARY_NAME}/lib") |
|
||||||
|
|
||||||
find_package(PkgConfig REQUIRED) |
|
||||||
pkg_check_modules(FlutterEmbedder REQUIRED IMPORTED_TARGET flutter-embedder) |
|
||||||
|
|
||||||
add_executable(${BINARY_NAME} main.cpp ${FLUTTER_DIR}/generated_plugin_registrant.cpp) |
|
||||||
target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::FlutterEmbedder) |
|
||||||
target_include_directories(${BINARY_NAME} PRIVATE ${FLUTTER_DIR}) |
|
||||||
|
|
||||||
include(flutter/generated_plugins.cmake) |
|
||||||
|
|
||||||
set(PACKAGE_INSTALL_DIR ${CMAKE_INSTALL_DATADIR}/${BINARY_NAME}) |
|
||||||
set(DESKTOP_INSTALL_DIR ${CMAKE_INSTALL_DATADIR}/applications) |
|
||||||
set(ICONS_INSTALL_ROOT_DIR ${CMAKE_INSTALL_DATADIR}/icons/hicolor) |
|
||||||
|
|
||||||
add_custom_command(TARGET ${BINARY_NAME} POST_BUILD |
|
||||||
COMMAND ${CMAKE_COMMAND} -E copy |
|
||||||
${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/libflutter-embedder.so |
|
||||||
${PROJECT_BINARY_DIR}/bundle/lib/libflutter-embedder.so) |
|
||||||
|
|
||||||
install(FILES ${PROJECT_BINARY_DIR}/bundle/icudtl.dat DESTINATION ${PACKAGE_INSTALL_DIR}) |
|
||||||
install(DIRECTORY ${PROJECT_BINARY_DIR}/bundle/flutter_assets DESTINATION ${PACKAGE_INSTALL_DIR}) |
|
||||||
install(DIRECTORY ${PROJECT_BINARY_DIR}/bundle/lib DESTINATION ${PACKAGE_INSTALL_DIR}) |
|
||||||
|
|
||||||
install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) |
|
||||||
install(FILES desktop/${BINARY_NAME}.desktop DESTINATION ${DESKTOP_INSTALL_DIR}) |
|
||||||
|
|
||||||
foreach(ICONS_SIZE 86x86 108x108 128x128 172x172) |
|
||||||
install(FILES icons/${ICONS_SIZE}.png |
|
||||||
RENAME ${BINARY_NAME}.png |
|
||||||
DESTINATION ${ICONS_INSTALL_ROOT_DIR}/${ICONS_SIZE}/apps/) |
|
||||||
endforeach(ICONS_SIZE) |
|
@ -1,12 +0,0 @@ |
|||||||
[Desktop Entry] |
|
||||||
Type=Application |
|
||||||
Name=argon2_ffi_example |
|
||||||
Comment=Demonstrates how to use the argon2_ffi plugin. |
|
||||||
Icon=com.example.argon2_ffi_example |
|
||||||
Exec=/usr/bin/com.example.argon2_ffi_example |
|
||||||
X-Nemo-Application-Type=silica-qt5 |
|
||||||
|
|
||||||
[X-Application] |
|
||||||
Permissions= |
|
||||||
OrganizationName=com.example |
|
||||||
ApplicationName=argon2_ffi_example |
|
@ -1,16 +0,0 @@ |
|||||||
//
|
|
||||||
// Generated file. Do not edit.
|
|
||||||
//
|
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
|
|
||||||
#include <flutter/application.h> |
|
||||||
#include <argon2_ffi/argon2_ffi_plugin.h> |
|
||||||
|
|
||||||
#include "generated_plugin_registrant.h" |
|
||||||
|
|
||||||
void RegisterPlugins() { |
|
||||||
Application::RegisterPlugins({ |
|
||||||
std::make_shared<Argon2FfiPlugin>(), |
|
||||||
}); |
|
||||||
} |
|
@ -1,12 +0,0 @@ |
|||||||
//
|
|
||||||
// Generated file. Do not edit.
|
|
||||||
//
|
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
|
|
||||||
#ifndef GENERATED_PLUGIN_REGISTRANT |
|
||||||
#define GENERATED_PLUGIN_REGISTRANT |
|
||||||
|
|
||||||
void RegisterPlugins(); |
|
||||||
|
|
||||||
#endif /* GENERATED_PLUGIN_REGISTRANT */ |
|
@ -1,34 +0,0 @@ |
|||||||
# |
|
||||||
# Generated file, do not edit. |
|
||||||
# |
|
||||||
set(ROOT_PROJECT_BINARY_DIR "${PROJECT_BINARY_DIR}") |
|
||||||
|
|
||||||
function(add_library TARGET) |
|
||||||
_add_library(${TARGET} ${ARGN}) |
|
||||||
|
|
||||||
if ( |
|
||||||
"${TARGET}" MATCHES "^argon2_ffi_platform_plugin$" OR |
|
||||||
FALSE |
|
||||||
) |
|
||||||
add_custom_command(TARGET ${TARGET} POST_BUILD |
|
||||||
COMMAND ${CMAKE_COMMAND} -E copy |
|
||||||
"$<TARGET_FILE:${TARGET}>" |
|
||||||
"${ROOT_PROJECT_BINARY_DIR}/bundle/lib/$<TARGET_FILE_NAME:${TARGET}>") |
|
||||||
endif() |
|
||||||
endfunction() |
|
||||||
|
|
||||||
list(APPEND FLUTTER_PLATFORM_PLUGIN_LIST |
|
||||||
argon2_ffi |
|
||||||
) |
|
||||||
|
|
||||||
list(APPEND FLUTTER_FFI_PLUGIN_LIST |
|
||||||
) |
|
||||||
|
|
||||||
foreach(PLUGIN ${FLUTTER_PLATFORM_PLUGIN_LIST}) |
|
||||||
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${PLUGIN}/aurora plugins/${PLUGIN}) |
|
||||||
target_link_libraries(${BINARY_NAME} PRIVATE ${PLUGIN}_platform_plugin) |
|
||||||
endforeach(PLUGIN) |
|
||||||
|
|
||||||
foreach(FFI_PLUGIN ${FLUTTER_FFI_PLUGIN_LIST}) |
|
||||||
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${FFI_PLUGIN}/aurora plugins/${FFI_PLUGIN}) |
|
||||||
endforeach(FFI_PLUGIN) |
|
Before Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 6.5 KiB |
@ -1,9 +0,0 @@ |
|||||||
#include <flutter/application.h> |
|
||||||
#include "generated_plugin_registrant.h" |
|
||||||
|
|
||||||
int main(int argc, char *argv[]) { |
|
||||||
Application::Initialize(argc, argv); |
|
||||||
RegisterPlugins(); |
|
||||||
Application::Launch(); |
|
||||||
return 0; |
|
||||||
} |
|
@ -1,31 +0,0 @@ |
|||||||
%global __provides_exclude_from ^%{_datadir}/%{name}/lib/.*$ |
|
||||||
%global __requires_exclude ^lib(dconf|flutter-embedder|maliit-glib|.+_platform_plugin)\\.so.*$ |
|
||||||
|
|
||||||
Name: com.example.argon2_ffi_example |
|
||||||
Summary: Demonstrates how to use the argon2_ffi plugin. |
|
||||||
Version: 0.1.0 |
|
||||||
Release: 1 |
|
||||||
License: Proprietary |
|
||||||
Source0: %{name}-%{version}.tar.zst |
|
||||||
|
|
||||||
BuildRequires: cmake |
|
||||||
BuildRequires: pkgconfig(flutter-embedder) |
|
||||||
|
|
||||||
%description |
|
||||||
%{summary}. |
|
||||||
|
|
||||||
%prep |
|
||||||
%autosetup |
|
||||||
|
|
||||||
%build |
|
||||||
%cmake -DCMAKE_BUILD_TYPE=%{_flutter_build_type} |
|
||||||
%make_build |
|
||||||
|
|
||||||
%install |
|
||||||
%make_install |
|
||||||
|
|
||||||
%files |
|
||||||
%{_bindir}/%{name} |
|
||||||
%{_datadir}/%{name}/* |
|
||||||
%{_datadir}/applications/%{name}.desktop |
|
||||||
%{_datadir}/icons/hicolor/*/apps/%{name}.png |
|
@ -1,32 +0,0 @@ |
|||||||
*.mode1v3 |
|
||||||
*.mode2v3 |
|
||||||
*.moved-aside |
|
||||||
*.pbxuser |
|
||||||
*.perspectivev3 |
|
||||||
**/*sync/ |
|
||||||
.sconsign.dblite |
|
||||||
.tags* |
|
||||||
**/.vagrant/ |
|
||||||
**/DerivedData/ |
|
||||||
Icon? |
|
||||||
**/Pods/ |
|
||||||
**/.symlinks/ |
|
||||||
profile |
|
||||||
xcuserdata |
|
||||||
**/.generated/ |
|
||||||
Flutter/App.framework |
|
||||||
Flutter/Flutter.framework |
|
||||||
Flutter/Flutter.podspec |
|
||||||
Flutter/Generated.xcconfig |
|
||||||
Flutter/app.flx |
|
||||||
Flutter/app.zip |
|
||||||
Flutter/flutter_assets/ |
|
||||||
Flutter/flutter_export_environment.sh |
|
||||||
ServiceDefinitions.json |
|
||||||
Runner/GeneratedPluginRegistrant.* |
|
||||||
|
|
||||||
# Exceptions to above rules. |
|
||||||
!default.mode1v3 |
|
||||||
!default.mode2v3 |
|
||||||
!default.pbxuser |
|
||||||
!default.perspectivev3 |
|
@ -1,26 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|
||||||
<plist version="1.0"> |
|
||||||
<dict> |
|
||||||
<key>CFBundleDevelopmentRegion</key> |
|
||||||
<string>$(DEVELOPMENT_LANGUAGE)</string> |
|
||||||
<key>CFBundleExecutable</key> |
|
||||||
<string>App</string> |
|
||||||
<key>CFBundleIdentifier</key> |
|
||||||
<string>io.flutter.flutter.app</string> |
|
||||||
<key>CFBundleInfoDictionaryVersion</key> |
|
||||||
<string>6.0</string> |
|
||||||
<key>CFBundleName</key> |
|
||||||
<string>App</string> |
|
||||||
<key>CFBundlePackageType</key> |
|
||||||
<string>FMWK</string> |
|
||||||
<key>CFBundleShortVersionString</key> |
|
||||||
<string>1.0</string> |
|
||||||
<key>CFBundleSignature</key> |
|
||||||
<string>????</string> |
|
||||||
<key>CFBundleVersion</key> |
|
||||||
<string>1.0</string> |
|
||||||
<key>MinimumOSVersion</key> |
|
||||||
<string>8.0</string> |
|
||||||
</dict> |
|
||||||
</plist> |
|
@ -1,2 +0,0 @@ |
|||||||
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" |
|
||||||
#include "Generated.xcconfig" |
|
@ -1,2 +0,0 @@ |
|||||||
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" |
|
||||||
#include "Generated.xcconfig" |
|
@ -1,90 +0,0 @@ |
|||||||
# Uncomment this line to define a global platform for your project |
|
||||||
# platform :ios, '9.0' |
|
||||||
|
|
||||||
# CocoaPods analytics sends network stats synchronously affecting flutter build latency. |
|
||||||
ENV['COCOAPODS_DISABLE_STATS'] = 'true' |
|
||||||
|
|
||||||
project 'Runner', { |
|
||||||
'Debug' => :debug, |
|
||||||
'Profile' => :release, |
|
||||||
'Release' => :release, |
|
||||||
} |
|
||||||
|
|
||||||
def parse_KV_file(file, separator='=') |
|
||||||
file_abs_path = File.expand_path(file) |
|
||||||
if !File.exists? file_abs_path |
|
||||||
return []; |
|
||||||
end |
|
||||||
generated_key_values = {} |
|
||||||
skip_line_start_symbols = ["#", "/"] |
|
||||||
File.foreach(file_abs_path) do |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) |
|
||||||
generated_key_values[podname] = podpath |
|
||||||
else |
|
||||||
puts "Invalid plugin specification: #{line}" |
|
||||||
end |
|
||||||
end |
|
||||||
generated_key_values |
|
||||||
end |
|
||||||
|
|
||||||
target 'Runner' do |
|
||||||
use_frameworks! |
|
||||||
use_modular_headers! |
|
||||||
|
|
||||||
# Flutter Pod |
|
||||||
|
|
||||||
copied_flutter_dir = File.join(__dir__, 'Flutter') |
|
||||||
copied_framework_path = File.join(copied_flutter_dir, 'Flutter.framework') |
|
||||||
copied_podspec_path = File.join(copied_flutter_dir, 'Flutter.podspec') |
|
||||||
unless File.exist?(copied_framework_path) && File.exist?(copied_podspec_path) |
|
||||||
# Copy Flutter.framework and Flutter.podspec to Flutter/ to have something to link against if the xcode backend script has not run yet. |
|
||||||
# That script will copy the correct debug/profile/release version of the framework based on the currently selected Xcode configuration. |
|
||||||
# CocoaPods will not embed the framework on pod install (before any build phases can generate) if the dylib does not exist. |
|
||||||
|
|
||||||
generated_xcode_build_settings_path = File.join(copied_flutter_dir, 'Generated.xcconfig') |
|
||||||
unless File.exist?(generated_xcode_build_settings_path) |
|
||||||
raise "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter pub get is executed first" |
|
||||||
end |
|
||||||
generated_xcode_build_settings = parse_KV_file(generated_xcode_build_settings_path) |
|
||||||
cached_framework_dir = generated_xcode_build_settings['FLUTTER_FRAMEWORK_DIR']; |
|
||||||
|
|
||||||
unless File.exist?(copied_framework_path) |
|
||||||
FileUtils.cp_r(File.join(cached_framework_dir, 'Flutter.framework'), copied_flutter_dir) |
|
||||||
end |
|
||||||
unless File.exist?(copied_podspec_path) |
|
||||||
FileUtils.cp(File.join(cached_framework_dir, 'Flutter.podspec'), copied_flutter_dir) |
|
||||||
end |
|
||||||
end |
|
||||||
|
|
||||||
# Keep pod path relative so it can be checked into Podfile.lock. |
|
||||||
pod 'Flutter', :path => 'Flutter' |
|
||||||
|
|
||||||
# Plugin Pods |
|
||||||
|
|
||||||
# Prepare symlinks folder. We use symlinks to avoid having Podfile.lock |
|
||||||
# referring to absolute paths on developers' machines. |
|
||||||
system('rm -rf .symlinks') |
|
||||||
system('mkdir -p .symlinks/plugins') |
|
||||||
plugin_pods = parse_KV_file('../.flutter-plugins') |
|
||||||
plugin_pods.each do |name, path| |
|
||||||
symlink = File.join('.symlinks', 'plugins', name) |
|
||||||
File.symlink(path, symlink) |
|
||||||
pod name, :path => File.join(symlink, 'ios') |
|
||||||
end |
|
||||||
end |
|
||||||
|
|
||||||
# Prevent Cocoapods from embedding a second Flutter framework and causing an error with the new Xcode build system. |
|
||||||
install! 'cocoapods', :disable_input_output_paths => true |
|
||||||
|
|
||||||
post_install do |installer| |
|
||||||
installer.pods_project.targets.each do |target| |
|
||||||
target.build_configurations.each do |config| |
|
||||||
config.build_settings['ENABLE_BITCODE'] = 'NO' |
|
||||||
end |
|
||||||
end |
|
||||||
end |
|
@ -1,22 +0,0 @@ |
|||||||
PODS: |
|
||||||
- argon2_ffi (0.0.1): |
|
||||||
- Flutter |
|
||||||
- Flutter (1.0.0) |
|
||||||
|
|
||||||
DEPENDENCIES: |
|
||||||
- argon2_ffi (from `.symlinks/plugins/argon2_ffi/ios`) |
|
||||||
- Flutter (from `Flutter`) |
|
||||||
|
|
||||||
EXTERNAL SOURCES: |
|
||||||
argon2_ffi: |
|
||||||
:path: ".symlinks/plugins/argon2_ffi/ios" |
|
||||||
Flutter: |
|
||||||
:path: Flutter |
|
||||||
|
|
||||||
SPEC CHECKSUMS: |
|
||||||
argon2_ffi: 9a2f8dc090e2e2fc78cecc8bc8a1ebbf5ab2dedb |
|
||||||
Flutter: 0e3d915762c693b495b44d77113d4970485de6ec |
|
||||||
|
|
||||||
PODFILE CHECKSUM: 083258d7f5e80b42ea9bfee905fe93049bc04c64 |
|
||||||
|
|
||||||
COCOAPODS: 1.8.4 |
|
@ -1,584 +0,0 @@ |
|||||||
// !$*UTF8*$! |
|
||||||
{ |
|
||||||
archiveVersion = 1; |
|
||||||
classes = { |
|
||||||
}; |
|
||||||
objectVersion = 46; |
|
||||||
objects = { |
|
||||||
|
|
||||||
/* Begin PBXBuildFile section */ |
|
||||||
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; |
|
||||||
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; |
|
||||||
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 */; }; |
|
||||||
B2EF2D7F31248445BB2803E2 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CAA5BD13C4877B8AE1D2CFC1 /* Pods_Runner.framework */; }; |
|
||||||
/* End PBXBuildFile section */ |
|
||||||
|
|
||||||
/* Begin PBXCopyFilesBuildPhase section */ |
|
||||||
9705A1C41CF9048500538489 /* Embed Frameworks */ = { |
|
||||||
isa = PBXCopyFilesBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
dstPath = ""; |
|
||||||
dstSubfolderSpec = 10; |
|
||||||
files = ( |
|
||||||
3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, |
|
||||||
9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, |
|
||||||
); |
|
||||||
name = "Embed Frameworks"; |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
}; |
|
||||||
/* End PBXCopyFilesBuildPhase section */ |
|
||||||
|
|
||||||
/* Begin PBXFileReference section */ |
|
||||||
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; }; |
|
||||||
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; }; |
|
||||||
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; }; |
|
||||||
3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = "<group>"; }; |
|
||||||
57B945812A206539A3ECF844 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<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>"; }; |
|
||||||
810E06411BCE2D1D19991FF4 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<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; }; |
|
||||||
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; }; |
|
||||||
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; |
|
||||||
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; |
|
||||||
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; |
|
||||||
CAA5BD13C4877B8AE1D2CFC1 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; |
|
||||||
D0F3B392291132222D6FCAE0 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; }; |
|
||||||
/* End PBXFileReference section */ |
|
||||||
|
|
||||||
/* Begin PBXFrameworksBuildPhase section */ |
|
||||||
97C146EB1CF9000F007C117D /* Frameworks */ = { |
|
||||||
isa = PBXFrameworksBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, |
|
||||||
3B80C3941E831B6300D905FE /* App.framework in Frameworks */, |
|
||||||
B2EF2D7F31248445BB2803E2 /* Pods_Runner.framework in Frameworks */, |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
}; |
|
||||||
/* End PBXFrameworksBuildPhase section */ |
|
||||||
|
|
||||||
/* Begin PBXGroup section */ |
|
||||||
0EF4C751F627E8EB669483E1 /* Frameworks */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
CAA5BD13C4877B8AE1D2CFC1 /* Pods_Runner.framework */, |
|
||||||
); |
|
||||||
name = Frameworks; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
55113DCE60F324E0847C2953 /* Pods */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
810E06411BCE2D1D19991FF4 /* Pods-Runner.debug.xcconfig */, |
|
||||||
D0F3B392291132222D6FCAE0 /* Pods-Runner.release.xcconfig */, |
|
||||||
57B945812A206539A3ECF844 /* Pods-Runner.profile.xcconfig */, |
|
||||||
); |
|
||||||
name = Pods; |
|
||||||
path = Pods; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
9740EEB11CF90186004384FC /* Flutter */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
3B80C3931E831B6300D905FE /* App.framework */, |
|
||||||
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, |
|
||||||
9740EEBA1CF902C7004384FC /* Flutter.framework */, |
|
||||||
9740EEB21CF90195004384FC /* Debug.xcconfig */, |
|
||||||
7AFA3C8E1D35360C0083082E /* Release.xcconfig */, |
|
||||||
9740EEB31CF90195004384FC /* Generated.xcconfig */, |
|
||||||
); |
|
||||||
name = Flutter; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
97C146E51CF9000F007C117D = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
9740EEB11CF90186004384FC /* Flutter */, |
|
||||||
97C146F01CF9000F007C117D /* Runner */, |
|
||||||
97C146EF1CF9000F007C117D /* Products */, |
|
||||||
55113DCE60F324E0847C2953 /* Pods */, |
|
||||||
0EF4C751F627E8EB669483E1 /* Frameworks */, |
|
||||||
); |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
97C146EF1CF9000F007C117D /* Products */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
97C146EE1CF9000F007C117D /* Runner.app */, |
|
||||||
); |
|
||||||
name = Products; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
97C146F01CF9000F007C117D /* Runner */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
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>"; |
|
||||||
}; |
|
||||||
97C146F11CF9000F007C117D /* Supporting Files */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
); |
|
||||||
name = "Supporting Files"; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
/* End PBXGroup section */ |
|
||||||
|
|
||||||
/* Begin PBXNativeTarget section */ |
|
||||||
97C146ED1CF9000F007C117D /* Runner */ = { |
|
||||||
isa = PBXNativeTarget; |
|
||||||
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; |
|
||||||
buildPhases = ( |
|
||||||
362DDB556C2958C86A4A8CDC /* [CP] Check Pods Manifest.lock */, |
|
||||||
9740EEB61CF901F6004384FC /* Run Script */, |
|
||||||
97C146EA1CF9000F007C117D /* Sources */, |
|
||||||
97C146EB1CF9000F007C117D /* Frameworks */, |
|
||||||
97C146EC1CF9000F007C117D /* Resources */, |
|
||||||
9705A1C41CF9048500538489 /* Embed Frameworks */, |
|
||||||
3B06AD1E1E4923F5004D2608 /* Thin Binary */, |
|
||||||
4674AAB925E0B27651D94443 /* [CP] Embed Pods Frameworks */, |
|
||||||
); |
|
||||||
buildRules = ( |
|
||||||
); |
|
||||||
dependencies = ( |
|
||||||
); |
|
||||||
name = Runner; |
|
||||||
productName = Runner; |
|
||||||
productReference = 97C146EE1CF9000F007C117D /* Runner.app */; |
|
||||||
productType = "com.apple.product-type.application"; |
|
||||||
}; |
|
||||||
/* End PBXNativeTarget section */ |
|
||||||
|
|
||||||
/* Begin PBXProject section */ |
|
||||||
97C146E61CF9000F007C117D /* Project object */ = { |
|
||||||
isa = PBXProject; |
|
||||||
attributes = { |
|
||||||
LastUpgradeCheck = 1020; |
|
||||||
ORGANIZATIONNAME = ""; |
|
||||||
TargetAttributes = { |
|
||||||
97C146ED1CF9000F007C117D = { |
|
||||||
CreatedOnToolsVersion = 7.3.1; |
|
||||||
LastSwiftMigration = 1100; |
|
||||||
}; |
|
||||||
}; |
|
||||||
}; |
|
||||||
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; |
|
||||||
compatibilityVersion = "Xcode 9.3"; |
|
||||||
developmentRegion = en; |
|
||||||
hasScannedForEncodings = 0; |
|
||||||
knownRegions = ( |
|
||||||
en, |
|
||||||
Base, |
|
||||||
); |
|
||||||
mainGroup = 97C146E51CF9000F007C117D; |
|
||||||
productRefGroup = 97C146EF1CF9000F007C117D /* Products */; |
|
||||||
projectDirPath = ""; |
|
||||||
projectRoot = ""; |
|
||||||
targets = ( |
|
||||||
97C146ED1CF9000F007C117D /* Runner */, |
|
||||||
); |
|
||||||
}; |
|
||||||
/* End PBXProject section */ |
|
||||||
|
|
||||||
/* Begin PBXResourcesBuildPhase section */ |
|
||||||
97C146EC1CF9000F007C117D /* Resources */ = { |
|
||||||
isa = PBXResourcesBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, |
|
||||||
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, |
|
||||||
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, |
|
||||||
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
}; |
|
||||||
/* End PBXResourcesBuildPhase section */ |
|
||||||
|
|
||||||
/* Begin PBXShellScriptBuildPhase section */ |
|
||||||
362DDB556C2958C86A4A8CDC /* [CP] Check Pods Manifest.lock */ = { |
|
||||||
isa = PBXShellScriptBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
); |
|
||||||
inputFileListPaths = ( |
|
||||||
); |
|
||||||
inputPaths = ( |
|
||||||
"${PODS_PODFILE_DIR_PATH}/Podfile.lock", |
|
||||||
"${PODS_ROOT}/Manifest.lock", |
|
||||||
); |
|
||||||
name = "[CP] Check Pods Manifest.lock"; |
|
||||||
outputFileListPaths = ( |
|
||||||
); |
|
||||||
outputPaths = ( |
|
||||||
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
shellPath = /bin/sh; |
|
||||||
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; |
|
||||||
showEnvVarsInLog = 0; |
|
||||||
}; |
|
||||||
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { |
|
||||||
isa = PBXShellScriptBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
); |
|
||||||
inputPaths = ( |
|
||||||
); |
|
||||||
name = "Thin Binary"; |
|
||||||
outputPaths = ( |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
shellPath = /bin/sh; |
|
||||||
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin"; |
|
||||||
}; |
|
||||||
4674AAB925E0B27651D94443 /* [CP] Embed Pods Frameworks */ = { |
|
||||||
isa = PBXShellScriptBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
); |
|
||||||
inputPaths = ( |
|
||||||
); |
|
||||||
name = "[CP] Embed Pods Frameworks"; |
|
||||||
outputPaths = ( |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
shellPath = /bin/sh; |
|
||||||
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; |
|
||||||
showEnvVarsInLog = 0; |
|
||||||
}; |
|
||||||
9740EEB61CF901F6004384FC /* Run Script */ = { |
|
||||||
isa = PBXShellScriptBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
); |
|
||||||
inputPaths = ( |
|
||||||
); |
|
||||||
name = "Run Script"; |
|
||||||
outputPaths = ( |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
shellPath = /bin/sh; |
|
||||||
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; |
|
||||||
}; |
|
||||||
/* End PBXShellScriptBuildPhase section */ |
|
||||||
|
|
||||||
/* Begin PBXSourcesBuildPhase section */ |
|
||||||
97C146EA1CF9000F007C117D /* Sources */ = { |
|
||||||
isa = PBXSourcesBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, |
|
||||||
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
}; |
|
||||||
/* End PBXSourcesBuildPhase section */ |
|
||||||
|
|
||||||
/* Begin PBXVariantGroup section */ |
|
||||||
97C146FA1CF9000F007C117D /* Main.storyboard */ = { |
|
||||||
isa = PBXVariantGroup; |
|
||||||
children = ( |
|
||||||
97C146FB1CF9000F007C117D /* Base */, |
|
||||||
); |
|
||||||
name = Main.storyboard; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { |
|
||||||
isa = PBXVariantGroup; |
|
||||||
children = ( |
|
||||||
97C147001CF9000F007C117D /* Base */, |
|
||||||
); |
|
||||||
name = LaunchScreen.storyboard; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
/* End PBXVariantGroup section */ |
|
||||||
|
|
||||||
/* Begin XCBuildConfiguration section */ |
|
||||||
249021D3217E4FDB00AE95B9 /* Profile */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; |
|
||||||
buildSettings = { |
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO; |
|
||||||
CLANG_ANALYZER_NONNULL = YES; |
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; |
|
||||||
CLANG_CXX_LIBRARY = "libc++"; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CLANG_ENABLE_OBJC_ARC = YES; |
|
||||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; |
|
||||||
CLANG_WARN_BOOL_CONVERSION = YES; |
|
||||||
CLANG_WARN_COMMA = YES; |
|
||||||
CLANG_WARN_CONSTANT_CONVERSION = YES; |
|
||||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; |
|
||||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; |
|
||||||
CLANG_WARN_EMPTY_BODY = YES; |
|
||||||
CLANG_WARN_ENUM_CONVERSION = YES; |
|
||||||
CLANG_WARN_INFINITE_RECURSION = YES; |
|
||||||
CLANG_WARN_INT_CONVERSION = YES; |
|
||||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; |
|
||||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; |
|
||||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; |
|
||||||
CLANG_WARN_STRICT_PROTOTYPES = YES; |
|
||||||
CLANG_WARN_SUSPICIOUS_MOVE = YES; |
|
||||||
CLANG_WARN_UNREACHABLE_CODE = YES; |
|
||||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; |
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; |
|
||||||
COPY_PHASE_STRIP = NO; |
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; |
|
||||||
ENABLE_NS_ASSERTIONS = NO; |
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES; |
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99; |
|
||||||
GCC_NO_COMMON_BLOCKS = YES; |
|
||||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES; |
|
||||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; |
|
||||||
GCC_WARN_UNDECLARED_SELECTOR = YES; |
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; |
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES; |
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES; |
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 8.0; |
|
||||||
MTL_ENABLE_DEBUG_INFO = NO; |
|
||||||
SDKROOT = iphoneos; |
|
||||||
SUPPORTED_PLATFORMS = iphoneos; |
|
||||||
TARGETED_DEVICE_FAMILY = "1,2"; |
|
||||||
VALIDATE_PRODUCT = YES; |
|
||||||
}; |
|
||||||
name = Profile; |
|
||||||
}; |
|
||||||
249021D4217E4FDB00AE95B9 /* Profile */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; |
|
||||||
buildSettings = { |
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; |
|
||||||
ENABLE_BITCODE = NO; |
|
||||||
FRAMEWORK_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"$(PROJECT_DIR)/Flutter", |
|
||||||
); |
|
||||||
INFOPLIST_FILE = Runner/Info.plist; |
|
||||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; |
|
||||||
LIBRARY_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"$(PROJECT_DIR)/Flutter", |
|
||||||
); |
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.example.argon2FfiExample; |
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)"; |
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; |
|
||||||
SWIFT_VERSION = 5.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; |
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; |
|
||||||
CLANG_CXX_LIBRARY = "libc++"; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CLANG_ENABLE_OBJC_ARC = YES; |
|
||||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; |
|
||||||
CLANG_WARN_BOOL_CONVERSION = YES; |
|
||||||
CLANG_WARN_COMMA = YES; |
|
||||||
CLANG_WARN_CONSTANT_CONVERSION = YES; |
|
||||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; |
|
||||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; |
|
||||||
CLANG_WARN_EMPTY_BODY = YES; |
|
||||||
CLANG_WARN_ENUM_CONVERSION = YES; |
|
||||||
CLANG_WARN_INFINITE_RECURSION = YES; |
|
||||||
CLANG_WARN_INT_CONVERSION = YES; |
|
||||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; |
|
||||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; |
|
||||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; |
|
||||||
CLANG_WARN_STRICT_PROTOTYPES = YES; |
|
||||||
CLANG_WARN_SUSPICIOUS_MOVE = YES; |
|
||||||
CLANG_WARN_UNREACHABLE_CODE = YES; |
|
||||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; |
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; |
|
||||||
COPY_PHASE_STRIP = NO; |
|
||||||
DEBUG_INFORMATION_FORMAT = dwarf; |
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES; |
|
||||||
ENABLE_TESTABILITY = YES; |
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99; |
|
||||||
GCC_DYNAMIC_NO_PIC = NO; |
|
||||||
GCC_NO_COMMON_BLOCKS = YES; |
|
||||||
GCC_OPTIMIZATION_LEVEL = 0; |
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = ( |
|
||||||
"DEBUG=1", |
|
||||||
"$(inherited)", |
|
||||||
); |
|
||||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES; |
|
||||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; |
|
||||||
GCC_WARN_UNDECLARED_SELECTOR = YES; |
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; |
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES; |
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES; |
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 8.0; |
|
||||||
MTL_ENABLE_DEBUG_INFO = YES; |
|
||||||
ONLY_ACTIVE_ARCH = YES; |
|
||||||
SDKROOT = iphoneos; |
|
||||||
TARGETED_DEVICE_FAMILY = "1,2"; |
|
||||||
}; |
|
||||||
name = Debug; |
|
||||||
}; |
|
||||||
97C147041CF9000F007C117D /* Release */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; |
|
||||||
buildSettings = { |
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO; |
|
||||||
CLANG_ANALYZER_NONNULL = YES; |
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; |
|
||||||
CLANG_CXX_LIBRARY = "libc++"; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CLANG_ENABLE_OBJC_ARC = YES; |
|
||||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; |
|
||||||
CLANG_WARN_BOOL_CONVERSION = YES; |
|
||||||
CLANG_WARN_COMMA = YES; |
|
||||||
CLANG_WARN_CONSTANT_CONVERSION = YES; |
|
||||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; |
|
||||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; |
|
||||||
CLANG_WARN_EMPTY_BODY = YES; |
|
||||||
CLANG_WARN_ENUM_CONVERSION = YES; |
|
||||||
CLANG_WARN_INFINITE_RECURSION = YES; |
|
||||||
CLANG_WARN_INT_CONVERSION = YES; |
|
||||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; |
|
||||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; |
|
||||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; |
|
||||||
CLANG_WARN_STRICT_PROTOTYPES = YES; |
|
||||||
CLANG_WARN_SUSPICIOUS_MOVE = YES; |
|
||||||
CLANG_WARN_UNREACHABLE_CODE = YES; |
|
||||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; |
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; |
|
||||||
COPY_PHASE_STRIP = NO; |
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; |
|
||||||
ENABLE_NS_ASSERTIONS = NO; |
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES; |
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99; |
|
||||||
GCC_NO_COMMON_BLOCKS = YES; |
|
||||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES; |
|
||||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; |
|
||||||
GCC_WARN_UNDECLARED_SELECTOR = YES; |
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; |
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES; |
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES; |
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 8.0; |
|
||||||
MTL_ENABLE_DEBUG_INFO = NO; |
|
||||||
SDKROOT = iphoneos; |
|
||||||
SUPPORTED_PLATFORMS = iphoneos; |
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; |
|
||||||
TARGETED_DEVICE_FAMILY = "1,2"; |
|
||||||
VALIDATE_PRODUCT = YES; |
|
||||||
}; |
|
||||||
name = Release; |
|
||||||
}; |
|
||||||
97C147061CF9000F007C117D /* Debug */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; |
|
||||||
buildSettings = { |
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; |
|
||||||
ENABLE_BITCODE = NO; |
|
||||||
FRAMEWORK_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"$(PROJECT_DIR)/Flutter", |
|
||||||
); |
|
||||||
INFOPLIST_FILE = Runner/Info.plist; |
|
||||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; |
|
||||||
LIBRARY_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"$(PROJECT_DIR)/Flutter", |
|
||||||
); |
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.example.argon2FfiExample; |
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)"; |
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; |
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; |
|
||||||
SWIFT_VERSION = 5.0; |
|
||||||
VERSIONING_SYSTEM = "apple-generic"; |
|
||||||
}; |
|
||||||
name = Debug; |
|
||||||
}; |
|
||||||
97C147071CF9000F007C117D /* Release */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; |
|
||||||
buildSettings = { |
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; |
|
||||||
ENABLE_BITCODE = NO; |
|
||||||
FRAMEWORK_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"$(PROJECT_DIR)/Flutter", |
|
||||||
); |
|
||||||
INFOPLIST_FILE = Runner/Info.plist; |
|
||||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; |
|
||||||
LIBRARY_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"$(PROJECT_DIR)/Flutter", |
|
||||||
); |
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.example.argon2FfiExample; |
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)"; |
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; |
|
||||||
SWIFT_VERSION = 5.0; |
|
||||||
VERSIONING_SYSTEM = "apple-generic"; |
|
||||||
}; |
|
||||||
name = Release; |
|
||||||
}; |
|
||||||
/* End XCBuildConfiguration section */ |
|
||||||
|
|
||||||
/* Begin XCConfigurationList section */ |
|
||||||
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { |
|
||||||
isa = XCConfigurationList; |
|
||||||
buildConfigurations = ( |
|
||||||
97C147031CF9000F007C117D /* Debug */, |
|
||||||
97C147041CF9000F007C117D /* Release */, |
|
||||||
249021D3217E4FDB00AE95B9 /* Profile */, |
|
||||||
); |
|
||||||
defaultConfigurationIsVisible = 0; |
|
||||||
defaultConfigurationName = Release; |
|
||||||
}; |
|
||||||
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { |
|
||||||
isa = XCConfigurationList; |
|
||||||
buildConfigurations = ( |
|
||||||
97C147061CF9000F007C117D /* Debug */, |
|
||||||
97C147071CF9000F007C117D /* Release */, |
|
||||||
249021D4217E4FDB00AE95B9 /* Profile */, |
|
||||||
); |
|
||||||
defaultConfigurationIsVisible = 0; |
|
||||||
defaultConfigurationName = Release; |
|
||||||
}; |
|
||||||
/* End XCConfigurationList section */ |
|
||||||
}; |
|
||||||
rootObject = 97C146E61CF9000F007C117D /* Project object */; |
|
||||||
} |
|
@ -1,7 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<Workspace |
|
||||||
version = "1.0"> |
|
||||||
<FileRef |
|
||||||
location = "group:Runner.xcodeproj"> |
|
||||||
</FileRef> |
|
||||||
</Workspace> |
|
@ -1,8 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|
||||||
<plist version="1.0"> |
|
||||||
<dict> |
|
||||||
<key>IDEDidComputeMac32BitWarning</key> |
|
||||||
<true/> |
|
||||||
</dict> |
|
||||||
</plist> |
|
@ -1,8 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|
||||||
<plist version="1.0"> |
|
||||||
<dict> |
|
||||||
<key>PreviewsEnabled</key> |
|
||||||
<false/> |
|
||||||
</dict> |
|
||||||
</plist> |
|
@ -1,91 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<Scheme |
|
||||||
LastUpgradeVersion = "1020" |
|
||||||
version = "1.3"> |
|
||||||
<BuildAction |
|
||||||
parallelizeBuildables = "YES" |
|
||||||
buildImplicitDependencies = "YES"> |
|
||||||
<BuildActionEntries> |
|
||||||
<BuildActionEntry |
|
||||||
buildForTesting = "YES" |
|
||||||
buildForRunning = "YES" |
|
||||||
buildForProfiling = "YES" |
|
||||||
buildForArchiving = "YES" |
|
||||||
buildForAnalyzing = "YES"> |
|
||||||
<BuildableReference |
|
||||||
BuildableIdentifier = "primary" |
|
||||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D" |
|
||||||
BuildableName = "Runner.app" |
|
||||||
BlueprintName = "Runner" |
|
||||||
ReferencedContainer = "container:Runner.xcodeproj"> |
|
||||||
</BuildableReference> |
|
||||||
</BuildActionEntry> |
|
||||||
</BuildActionEntries> |
|
||||||
</BuildAction> |
|
||||||
<TestAction |
|
||||||
buildConfiguration = "Debug" |
|
||||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" |
|
||||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" |
|
||||||
shouldUseLaunchSchemeArgsEnv = "YES"> |
|
||||||
<Testables> |
|
||||||
</Testables> |
|
||||||
<MacroExpansion> |
|
||||||
<BuildableReference |
|
||||||
BuildableIdentifier = "primary" |
|
||||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D" |
|
||||||
BuildableName = "Runner.app" |
|
||||||
BlueprintName = "Runner" |
|
||||||
ReferencedContainer = "container:Runner.xcodeproj"> |
|
||||||
</BuildableReference> |
|
||||||
</MacroExpansion> |
|
||||||
<AdditionalOptions> |
|
||||||
</AdditionalOptions> |
|
||||||
</TestAction> |
|
||||||
<LaunchAction |
|
||||||
buildConfiguration = "Debug" |
|
||||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" |
|
||||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" |
|
||||||
launchStyle = "0" |
|
||||||
useCustomWorkingDirectory = "NO" |
|
||||||
ignoresPersistentStateOnLaunch = "NO" |
|
||||||
debugDocumentVersioning = "YES" |
|
||||||
debugServiceExtension = "internal" |
|
||||||
allowLocationSimulation = "YES"> |
|
||||||
<BuildableProductRunnable |
|
||||||
runnableDebuggingMode = "0"> |
|
||||||
<BuildableReference |
|
||||||
BuildableIdentifier = "primary" |
|
||||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D" |
|
||||||
BuildableName = "Runner.app" |
|
||||||
BlueprintName = "Runner" |
|
||||||
ReferencedContainer = "container:Runner.xcodeproj"> |
|
||||||
</BuildableReference> |
|
||||||
</BuildableProductRunnable> |
|
||||||
<AdditionalOptions> |
|
||||||
</AdditionalOptions> |
|
||||||
</LaunchAction> |
|
||||||
<ProfileAction |
|
||||||
buildConfiguration = "Profile" |
|
||||||
shouldUseLaunchSchemeArgsEnv = "YES" |
|
||||||
savedToolIdentifier = "" |
|
||||||
useCustomWorkingDirectory = "NO" |
|
||||||
debugDocumentVersioning = "YES"> |
|
||||||
<BuildableProductRunnable |
|
||||||
runnableDebuggingMode = "0"> |
|
||||||
<BuildableReference |
|
||||||
BuildableIdentifier = "primary" |
|
||||||
BlueprintIdentifier = "97C146ED1CF9000F007C117D" |
|
||||||
BuildableName = "Runner.app" |
|
||||||
BlueprintName = "Runner" |
|
||||||
ReferencedContainer = "container:Runner.xcodeproj"> |
|
||||||
</BuildableReference> |
|
||||||
</BuildableProductRunnable> |
|
||||||
</ProfileAction> |
|
||||||
<AnalyzeAction |
|
||||||
buildConfiguration = "Debug"> |
|
||||||
</AnalyzeAction> |
|
||||||
<ArchiveAction |
|
||||||
buildConfiguration = "Release" |
|
||||||
revealArchiveInOrganizer = "YES"> |
|
||||||
</ArchiveAction> |
|
||||||
</Scheme> |
|
@ -1,10 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<Workspace |
|
||||||
version = "1.0"> |
|
||||||
<FileRef |
|
||||||
location = "group:Runner.xcodeproj"> |
|
||||||
</FileRef> |
|
||||||
<FileRef |
|
||||||
location = "group:Pods/Pods.xcodeproj"> |
|
||||||
</FileRef> |
|
||||||
</Workspace> |
|
@ -1,8 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|
||||||
<plist version="1.0"> |
|
||||||
<dict> |
|
||||||
<key>IDEDidComputeMac32BitWarning</key> |
|
||||||
<true/> |
|
||||||
</dict> |
|
||||||
</plist> |
|
@ -1,8 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|
||||||
<plist version="1.0"> |
|
||||||
<dict> |
|
||||||
<key>PreviewsEnabled</key> |
|
||||||
<false/> |
|
||||||
</dict> |
|
||||||
</plist> |
|
@ -1,13 +0,0 @@ |
|||||||
import UIKit |
|
||||||
import Flutter |
|
||||||
|
|
||||||
@UIApplicationMain |
|
||||||
@objc class AppDelegate: FlutterAppDelegate { |
|
||||||
override func application( |
|
||||||
_ application: UIApplication, |
|
||||||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? |
|
||||||
) -> Bool { |
|
||||||
GeneratedPluginRegistrant.register(with: self) |
|
||||||
return super.application(application, didFinishLaunchingWithOptions: launchOptions) |
|
||||||
} |
|
||||||
} |
|
@ -1,122 +0,0 @@ |
|||||||
{ |
|
||||||
"images" : [ |
|
||||||
{ |
|
||||||
"size" : "20x20", |
|
||||||
"idiom" : "iphone", |
|
||||||
"filename" : "Icon-App-20x20@2x.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "20x20", |
|
||||||
"idiom" : "iphone", |
|
||||||
"filename" : "Icon-App-20x20@3x.png", |
|
||||||
"scale" : "3x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "29x29", |
|
||||||
"idiom" : "iphone", |
|
||||||
"filename" : "Icon-App-29x29@1x.png", |
|
||||||
"scale" : "1x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "29x29", |
|
||||||
"idiom" : "iphone", |
|
||||||
"filename" : "Icon-App-29x29@2x.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "29x29", |
|
||||||
"idiom" : "iphone", |
|
||||||
"filename" : "Icon-App-29x29@3x.png", |
|
||||||
"scale" : "3x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "40x40", |
|
||||||
"idiom" : "iphone", |
|
||||||
"filename" : "Icon-App-40x40@2x.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "40x40", |
|
||||||
"idiom" : "iphone", |
|
||||||
"filename" : "Icon-App-40x40@3x.png", |
|
||||||
"scale" : "3x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "60x60", |
|
||||||
"idiom" : "iphone", |
|
||||||
"filename" : "Icon-App-60x60@2x.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "60x60", |
|
||||||
"idiom" : "iphone", |
|
||||||
"filename" : "Icon-App-60x60@3x.png", |
|
||||||
"scale" : "3x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "20x20", |
|
||||||
"idiom" : "ipad", |
|
||||||
"filename" : "Icon-App-20x20@1x.png", |
|
||||||
"scale" : "1x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "20x20", |
|
||||||
"idiom" : "ipad", |
|
||||||
"filename" : "Icon-App-20x20@2x.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "29x29", |
|
||||||
"idiom" : "ipad", |
|
||||||
"filename" : "Icon-App-29x29@1x.png", |
|
||||||
"scale" : "1x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "29x29", |
|
||||||
"idiom" : "ipad", |
|
||||||
"filename" : "Icon-App-29x29@2x.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "40x40", |
|
||||||
"idiom" : "ipad", |
|
||||||
"filename" : "Icon-App-40x40@1x.png", |
|
||||||
"scale" : "1x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "40x40", |
|
||||||
"idiom" : "ipad", |
|
||||||
"filename" : "Icon-App-40x40@2x.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "76x76", |
|
||||||
"idiom" : "ipad", |
|
||||||
"filename" : "Icon-App-76x76@1x.png", |
|
||||||
"scale" : "1x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "76x76", |
|
||||||
"idiom" : "ipad", |
|
||||||
"filename" : "Icon-App-76x76@2x.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "83.5x83.5", |
|
||||||
"idiom" : "ipad", |
|
||||||
"filename" : "Icon-App-83.5x83.5@2x.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "1024x1024", |
|
||||||
"idiom" : "ios-marketing", |
|
||||||
"filename" : "Icon-App-1024x1024@1x.png", |
|
||||||
"scale" : "1x" |
|
||||||
} |
|
||||||
], |
|
||||||
"info" : { |
|
||||||
"version" : 1, |
|
||||||
"author" : "xcode" |
|
||||||
} |
|
||||||
} |
|
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 564 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.5 KiB |
@ -1,23 +0,0 @@ |
|||||||
{ |
|
||||||
"images" : [ |
|
||||||
{ |
|
||||||
"idiom" : "universal", |
|
||||||
"filename" : "LaunchImage.png", |
|
||||||
"scale" : "1x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"idiom" : "universal", |
|
||||||
"filename" : "LaunchImage@2x.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"idiom" : "universal", |
|
||||||
"filename" : "LaunchImage@3x.png", |
|
||||||
"scale" : "3x" |
|
||||||
} |
|
||||||
], |
|
||||||
"info" : { |
|
||||||
"version" : 1, |
|
||||||
"author" : "xcode" |
|
||||||
} |
|
||||||
} |
|
Before Width: | Height: | Size: 68 B |
Before Width: | Height: | Size: 68 B |
Before Width: | Height: | Size: 68 B |
@ -1,5 +0,0 @@ |
|||||||
# Launch Screen Assets |
|
||||||
|
|
||||||
You can customize the launch screen with your own desired assets by replacing the image files in this directory. |
|
||||||
|
|
||||||
You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. |
|
@ -1,37 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
|
||||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="12121" systemVersion="16G29" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" colorMatched="YES" initialViewController="01J-lp-oVM"> |
|
||||||
<dependencies> |
|
||||||
<deployment identifier="iOS"/> |
|
||||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/> |
|
||||||
</dependencies> |
|
||||||
<scenes> |
|
||||||
<!--View Controller--> |
|
||||||
<scene sceneID="EHf-IW-A2E"> |
|
||||||
<objects> |
|
||||||
<viewController id="01J-lp-oVM" sceneMemberID="viewController"> |
|
||||||
<layoutGuides> |
|
||||||
<viewControllerLayoutGuide type="top" id="Ydg-fD-yQy"/> |
|
||||||
<viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/> |
|
||||||
</layoutGuides> |
|
||||||
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3"> |
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
|
||||||
<subviews> |
|
||||||
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4"> |
|
||||||
</imageView> |
|
||||||
</subviews> |
|
||||||
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> |
|
||||||
<constraints> |
|
||||||
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerX" secondItem="Ze5-6b-2t3" secondAttribute="centerX" id="1a2-6s-vTC"/> |
|
||||||
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="4X2-HB-R7a"/> |
|
||||||
</constraints> |
|
||||||
</view> |
|
||||||
</viewController> |
|
||||||
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/> |
|
||||||
</objects> |
|
||||||
<point key="canvasLocation" x="53" y="375"/> |
|
||||||
</scene> |
|
||||||
</scenes> |
|
||||||
<resources> |
|
||||||
<image name="LaunchImage" width="168" height="185"/> |
|
||||||
</resources> |
|
||||||
</document> |
|
@ -1,26 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
|
||||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r"> |
|
||||||
<dependencies> |
|
||||||
<deployment identifier="iOS"/> |
|
||||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/> |
|
||||||
</dependencies> |
|
||||||
<scenes> |
|
||||||
<!--Flutter View Controller--> |
|
||||||
<scene sceneID="tne-QT-ifu"> |
|
||||||
<objects> |
|
||||||
<viewController id="BYZ-38-t0r" customClass="FlutterViewController" sceneMemberID="viewController"> |
|
||||||
<layoutGuides> |
|
||||||
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/> |
|
||||||
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/> |
|
||||||
</layoutGuides> |
|
||||||
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC"> |
|
||||||
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/> |
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
|
||||||
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/> |
|
||||||
</view> |
|
||||||
</viewController> |
|
||||||
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/> |
|
||||||
</objects> |
|
||||||
</scene> |
|
||||||
</scenes> |
|
||||||
</document> |
|
@ -1,45 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|
||||||
<plist version="1.0"> |
|
||||||
<dict> |
|
||||||
<key>CFBundleDevelopmentRegion</key> |
|
||||||
<string>$(DEVELOPMENT_LANGUAGE)</string> |
|
||||||
<key>CFBundleExecutable</key> |
|
||||||
<string>$(EXECUTABLE_NAME)</string> |
|
||||||
<key>CFBundleIdentifier</key> |
|
||||||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> |
|
||||||
<key>CFBundleInfoDictionaryVersion</key> |
|
||||||
<string>6.0</string> |
|
||||||
<key>CFBundleName</key> |
|
||||||
<string>argon2_ffi_example</string> |
|
||||||
<key>CFBundlePackageType</key> |
|
||||||
<string>APPL</string> |
|
||||||
<key>CFBundleShortVersionString</key> |
|
||||||
<string>$(FLUTTER_BUILD_NAME)</string> |
|
||||||
<key>CFBundleSignature</key> |
|
||||||
<string>????</string> |
|
||||||
<key>CFBundleVersion</key> |
|
||||||
<string>$(FLUTTER_BUILD_NUMBER)</string> |
|
||||||
<key>LSRequiresIPhoneOS</key> |
|
||||||
<true/> |
|
||||||
<key>UILaunchStoryboardName</key> |
|
||||||
<string>LaunchScreen</string> |
|
||||||
<key>UIMainStoryboardFile</key> |
|
||||||
<string>Main</string> |
|
||||||
<key>UISupportedInterfaceOrientations</key> |
|
||||||
<array> |
|
||||||
<string>UIInterfaceOrientationPortrait</string> |
|
||||||
<string>UIInterfaceOrientationLandscapeLeft</string> |
|
||||||
<string>UIInterfaceOrientationLandscapeRight</string> |
|
||||||
</array> |
|
||||||
<key>UISupportedInterfaceOrientations~ipad</key> |
|
||||||
<array> |
|
||||||
<string>UIInterfaceOrientationPortrait</string> |
|
||||||
<string>UIInterfaceOrientationPortraitUpsideDown</string> |
|
||||||
<string>UIInterfaceOrientationLandscapeLeft</string> |
|
||||||
<string>UIInterfaceOrientationLandscapeRight</string> |
|
||||||
</array> |
|
||||||
<key>UIViewControllerBasedStatusBarAppearance</key> |
|
||||||
<false/> |
|
||||||
</dict> |
|
||||||
</plist> |
|
@ -1 +0,0 @@ |
|||||||
#import "GeneratedPluginRegistrant.h" |
|
@ -1,60 +0,0 @@ |
|||||||
import 'dart:convert'; |
|
||||||
import 'dart:math'; |
|
||||||
import 'dart:typed_data'; |
|
||||||
|
|
||||||
import 'package:argon2_ffi_base/argon2_ffi_base.dart'; |
|
||||||
import 'package:flutter/material.dart'; |
|
||||||
|
|
||||||
void main() => runApp(MyApp()); |
|
||||||
|
|
||||||
class MyApp extends StatefulWidget { |
|
||||||
@override |
|
||||||
_MyAppState createState() => _MyAppState(); |
|
||||||
} |
|
||||||
|
|
||||||
class _MyAppState extends State<MyApp> { |
|
||||||
final _argon2ffi = Argon2FfiFlutter(); |
|
||||||
final random = Random(); |
|
||||||
|
|
||||||
String? result; |
|
||||||
|
|
||||||
@override |
|
||||||
void initState() { |
|
||||||
super.initState(); |
|
||||||
} |
|
||||||
|
|
||||||
@override |
|
||||||
Widget build(BuildContext context) { |
|
||||||
return MaterialApp( |
|
||||||
home: Scaffold( |
|
||||||
appBar: AppBar( |
|
||||||
title: const Text('Plugin example app'), |
|
||||||
), |
|
||||||
body: Column( |
|
||||||
children: <Widget>[ |
|
||||||
Text('Result: $result\n'), |
|
||||||
ElevatedButton( |
|
||||||
child: Text('hash stuff'), |
|
||||||
onPressed: () { |
|
||||||
final args = Argon2Arguments( |
|
||||||
utf8.encode('abc') as Uint8List, |
|
||||||
utf8.encode('abc') as Uint8List, |
|
||||||
1024, |
|
||||||
2, |
|
||||||
32, |
|
||||||
2, |
|
||||||
0, |
|
||||||
1, |
|
||||||
); |
|
||||||
final hash = _argon2ffi.argon2(args); |
|
||||||
setState(() { |
|
||||||
result = 'argon2 hash: ${base64.encode(hash)}'; |
|
||||||
}); |
|
||||||
}, |
|
||||||
), |
|
||||||
], |
|
||||||
), |
|
||||||
), |
|
||||||
); |
|
||||||
} |
|
||||||
} |
|
@ -1,90 +0,0 @@ |
|||||||
cmake_minimum_required(VERSION 3.10) |
|
||||||
project(runner LANGUAGES CXX) |
|
||||||
|
|
||||||
set(BINARY_NAME "argon2_ffi_example") |
|
||||||
|
|
||||||
cmake_policy(SET CMP0063 NEW) |
|
||||||
|
|
||||||
set(CMAKE_INSTALL_RPATH "\$ORIGIN") |
|
||||||
|
|
||||||
# Configure build options. |
|
||||||
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) |
|
||||||
set(CMAKE_BUILD_TYPE "Debug" CACHE |
|
||||||
STRING "Flutter build mode" FORCE) |
|
||||||
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS |
|
||||||
"Debug" "Profile" "Release") |
|
||||||
endif() |
|
||||||
|
|
||||||
# Compilation settings that should be applied to most targets. |
|
||||||
function(APPLY_STANDARD_SETTINGS TARGET) |
|
||||||
target_compile_features(${TARGET} PUBLIC cxx_std_14) |
|
||||||
target_compile_options(${TARGET} PRIVATE -Wall -Werror) |
|
||||||
target_compile_options(${TARGET} PRIVATE "$<$<NOT:$<CONFIG:Debug>>:-O3>") |
|
||||||
target_compile_definitions(${TARGET} PRIVATE "$<$<NOT:$<CONFIG:Debug>>:NDEBUG>") |
|
||||||
endfunction() |
|
||||||
|
|
||||||
set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") |
|
||||||
|
|
||||||
# Flutter library and tool build rules. |
|
||||||
add_subdirectory(${FLUTTER_MANAGED_DIR}) |
|
||||||
|
|
||||||
# Application build |
|
||||||
add_executable(${BINARY_NAME} |
|
||||||
"main.cc" |
|
||||||
"window_configuration.cc" |
|
||||||
"${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" |
|
||||||
) |
|
||||||
apply_standard_settings(${BINARY_NAME}) |
|
||||||
target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) |
|
||||||
add_dependencies(${BINARY_NAME} flutter_assemble) |
|
||||||
|
|
||||||
# Generated plugin build rules, which manage building the plugins and adding |
|
||||||
# them to the application. |
|
||||||
include(flutter/generated_plugins.cmake) |
|
||||||
|
|
||||||
|
|
||||||
# === Installation === |
|
||||||
# By default, "installing" just makes a relocatable bundle in the build |
|
||||||
# directory. |
|
||||||
set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") |
|
||||||
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) |
|
||||||
set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) |
|
||||||
endif() |
|
||||||
|
|
||||||
# BundleUtilities doesn't re-copy changed files, so start with a clean build |
|
||||||
# bundle directory every time. |
|
||||||
INSTALL(CODE " |
|
||||||
file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") |
|
||||||
" COMPONENT Runtime) |
|
||||||
|
|
||||||
set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") |
|
||||||
set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") |
|
||||||
|
|
||||||
install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" |
|
||||||
COMPONENT Runtime) |
|
||||||
|
|
||||||
file(GLOB FLUTTER_PLUGIN_DIRS "${PROJECT_BINARY_DIR}/plugins/*") |
|
||||||
|
|
||||||
INSTALL(CODE " |
|
||||||
include(BundleUtilities) |
|
||||||
fixup_bundle(\"\${CMAKE_INSTALL_PREFIX}/${BINARY_NAME}\" \"\" |
|
||||||
\"${FLUTTER_PLUGIN_DIRS};${FLUTTER_LIBRARY_DIR}\") |
|
||||||
" COMPONENT Runtime) |
|
||||||
|
|
||||||
INSTALL(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" |
|
||||||
COMPONENT Runtime) |
|
||||||
|
|
||||||
# Fully re-copy the assets directory on each build to avoid having stale files |
|
||||||
# from a previous install. |
|
||||||
set(FLUTTER_ASSET_DIR_NAME "flutter_assets") |
|
||||||
INSTALL(CODE " |
|
||||||
file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") |
|
||||||
" COMPONENT Runtime) |
|
||||||
INSTALL(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" |
|
||||||
DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) |
|
||||||
|
|
||||||
# Install the lib directory on non-Debug builds only. |
|
||||||
if (NOT CMAKE_BUILD_TYPE MATCHES "Debug") |
|
||||||
INSTALL(DIRECTORY "${PROJECT_BUILD_DIR}/lib" |
|
||||||
DESTINATION "${CMAKE_INSTALL_PREFIX}" COMPONENT Runtime) |
|
||||||
endif() |
|
@ -1,108 +0,0 @@ |
|||||||
cmake_minimum_required(VERSION 3.10) |
|
||||||
|
|
||||||
set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") |
|
||||||
|
|
||||||
# Configuration provided via flutter tool. |
|
||||||
include(${EPHEMERAL_DIR}/generated_config.cmake) |
|
||||||
|
|
||||||
# TODO: Move the rest of this into files in ephemeral. See |
|
||||||
# https://github.com/flutter/flutter/issues/57146. |
|
||||||
set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper_glfw") |
|
||||||
|
|
||||||
# Serves the same purpose as list(TRANSFORM ... PREPEND ...), |
|
||||||
# which isn't available in 3.10. |
|
||||||
function(list_prepend LIST_NAME PREFIX) |
|
||||||
set(NEW_LIST "") |
|
||||||
foreach(element ${${LIST_NAME}}) |
|
||||||
list(APPEND NEW_LIST "${PREFIX}${element}") |
|
||||||
endforeach(element) |
|
||||||
set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) |
|
||||||
endfunction() |
|
||||||
|
|
||||||
# === Flutter Library === |
|
||||||
set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_glfw.so") |
|
||||||
|
|
||||||
# Published to parent scope for install step. |
|
||||||
set(FLUTTER_LIBRARY_DIR "${EPHEMERAL_DIR}" PARENT_SCOPE) |
|
||||||
set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) |
|
||||||
set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) |
|
||||||
|
|
||||||
list(APPEND FLUTTER_LIBRARY_HEADERS |
|
||||||
"flutter_export.h" |
|
||||||
"flutter_glfw.h" |
|
||||||
"flutter_messenger.h" |
|
||||||
"flutter_plugin_registrar.h" |
|
||||||
) |
|
||||||
list_prepend(FLUTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/") |
|
||||||
add_library(flutter INTERFACE) |
|
||||||
target_include_directories(flutter INTERFACE |
|
||||||
"${EPHEMERAL_DIR}" |
|
||||||
) |
|
||||||
target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") |
|
||||||
add_dependencies(flutter flutter_assemble) |
|
||||||
|
|
||||||
# === Wrapper === |
|
||||||
list(APPEND CPP_WRAPPER_SOURCES_CORE |
|
||||||
"engine_method_result.cc" |
|
||||||
"standard_codec.cc" |
|
||||||
) |
|
||||||
list_prepend(CPP_WRAPPER_SOURCES_CORE "${WRAPPER_ROOT}/") |
|
||||||
list(APPEND CPP_WRAPPER_SOURCES_PLUGIN |
|
||||||
"plugin_registrar.cc" |
|
||||||
) |
|
||||||
list_prepend(CPP_WRAPPER_SOURCES_PLUGIN "${WRAPPER_ROOT}/") |
|
||||||
list(APPEND CPP_WRAPPER_SOURCES_APP |
|
||||||
"flutter_engine.cc" |
|
||||||
"flutter_window_controller.cc" |
|
||||||
) |
|
||||||
list_prepend(CPP_WRAPPER_SOURCES_APP "${WRAPPER_ROOT}/") |
|
||||||
|
|
||||||
# Wrapper sources needed for a plugin. |
|
||||||
add_library(flutter_wrapper_plugin STATIC |
|
||||||
${CPP_WRAPPER_SOURCES_CORE} |
|
||||||
${CPP_WRAPPER_SOURCES_PLUGIN} |
|
||||||
) |
|
||||||
apply_standard_settings(flutter_wrapper_plugin) |
|
||||||
set_target_properties(flutter_wrapper_plugin PROPERTIES |
|
||||||
POSITION_INDEPENDENT_CODE ON) |
|
||||||
set_target_properties(flutter_wrapper_plugin PROPERTIES |
|
||||||
CXX_VISIBILITY_PRESET hidden) |
|
||||||
target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) |
|
||||||
target_include_directories(flutter_wrapper_plugin PUBLIC |
|
||||||
"${WRAPPER_ROOT}/include" |
|
||||||
) |
|
||||||
add_dependencies(flutter_wrapper_plugin flutter_assemble) |
|
||||||
|
|
||||||
# Wrapper sources needed for the runner. |
|
||||||
add_library(flutter_wrapper_app STATIC |
|
||||||
${CPP_WRAPPER_SOURCES_CORE} |
|
||||||
${CPP_WRAPPER_SOURCES_APP} |
|
||||||
) |
|
||||||
apply_standard_settings(flutter_wrapper_app) |
|
||||||
target_link_libraries(flutter_wrapper_app PUBLIC flutter) |
|
||||||
target_include_directories(flutter_wrapper_app PUBLIC |
|
||||||
"${WRAPPER_ROOT}/include" |
|
||||||
) |
|
||||||
add_dependencies(flutter_wrapper_app flutter_assemble) |
|
||||||
|
|
||||||
# === Flutter tool backend === |
|
||||||
# _phony_ is a non-existent file to force this command to run every time, |
|
||||||
# since currently there's no way to get a full input/output list from the |
|
||||||
# flutter tool. |
|
||||||
add_custom_command( |
|
||||||
OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} |
|
||||||
${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} |
|
||||||
${CPP_WRAPPER_SOURCES_APP} |
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/_phony_ |
|
||||||
COMMAND ${CMAKE_COMMAND} -E env |
|
||||||
${FLUTTER_TOOL_ENVIRONMENT} |
|
||||||
"${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" |
|
||||||
linux-x64 ${CMAKE_BUILD_TYPE} |
|
||||||
) |
|
||||||
add_custom_target(flutter_assemble DEPENDS |
|
||||||
"${FLUTTER_LIBRARY}" |
|
||||||
${FLUTTER_LIBRARY_HEADERS} |
|
||||||
${CPP_WRAPPER_SOURCES_CORE} |
|
||||||
${CPP_WRAPPER_SOURCES_PLUGIN} |
|
||||||
${CPP_WRAPPER_SOURCES_APP} |
|
||||||
) |
|
@ -1,15 +0,0 @@ |
|||||||
//
|
|
||||||
// Generated file. Do not edit.
|
|
||||||
//
|
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
|
|
||||||
#include "generated_plugin_registrant.h" |
|
||||||
|
|
||||||
#include <argon2_ffi/argon2_ffi_plugin.h> |
|
||||||
|
|
||||||
void fl_register_plugins(FlPluginRegistry* registry) { |
|
||||||
g_autoptr(FlPluginRegistrar) argon2_ffi_registrar = |
|
||||||
fl_plugin_registry_get_registrar_for_plugin(registry, "Argon2FfiPlugin"); |
|
||||||
argon2_ffi_plugin_register_with_registrar(argon2_ffi_registrar); |
|
||||||
} |
|
@ -1,15 +0,0 @@ |
|||||||
//
|
|
||||||
// Generated file. Do not edit.
|
|
||||||
//
|
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
|
|
||||||
#ifndef GENERATED_PLUGIN_REGISTRANT_ |
|
||||||
#define GENERATED_PLUGIN_REGISTRANT_ |
|
||||||
|
|
||||||
#include <flutter_linux/flutter_linux.h> |
|
||||||
|
|
||||||
// Registers Flutter plugins.
|
|
||||||
void fl_register_plugins(FlPluginRegistry* registry); |
|
||||||
|
|
||||||
#endif // GENERATED_PLUGIN_REGISTRANT_
|
|
@ -1,24 +0,0 @@ |
|||||||
# |
|
||||||
# Generated file, do not edit. |
|
||||||
# |
|
||||||
|
|
||||||
list(APPEND FLUTTER_PLUGIN_LIST |
|
||||||
argon2_ffi |
|
||||||
) |
|
||||||
|
|
||||||
list(APPEND FLUTTER_FFI_PLUGIN_LIST |
|
||||||
) |
|
||||||
|
|
||||||
set(PLUGIN_BUNDLED_LIBRARIES) |
|
||||||
|
|
||||||
foreach(plugin ${FLUTTER_PLUGIN_LIST}) |
|
||||||
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) |
|
||||||
target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) |
|
||||||
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>) |
|
||||||
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) |
|
||||||
endforeach(plugin) |
|
||||||
|
|
||||||
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) |
|
||||||
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) |
|
||||||
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) |
|
||||||
endforeach(ffi_plugin) |
|
@ -1,64 +0,0 @@ |
|||||||
#include <flutter/flutter_engine.h> |
|
||||||
#include <flutter/flutter_window_controller.h> |
|
||||||
#include <linux/limits.h> |
|
||||||
#include <unistd.h> |
|
||||||
|
|
||||||
#include <cstdlib> |
|
||||||
#include <iostream> |
|
||||||
#include <memory> |
|
||||||
#include <vector> |
|
||||||
|
|
||||||
#include "flutter/generated_plugin_registrant.h" |
|
||||||
#include "window_configuration.h" |
|
||||||
|
|
||||||
namespace { |
|
||||||
|
|
||||||
// Runs the application in headless mode, without a window.
|
|
||||||
void RunHeadless(const std::string& icu_data_path, |
|
||||||
const std::string& assets_path, |
|
||||||
const std::vector<std::string>& arguments, |
|
||||||
const std::string& aot_library_path) { |
|
||||||
flutter::FlutterEngine engine; |
|
||||||
engine.Start(icu_data_path, assets_path, arguments, aot_library_path); |
|
||||||
RegisterPlugins(&engine); |
|
||||||
while (true) { |
|
||||||
engine.RunEventLoopWithTimeout(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
} // namespace
|
|
||||||
|
|
||||||
int main(int argc, char **argv) { |
|
||||||
std::string data_directory = "data"; |
|
||||||
std::string assets_path = data_directory + "/flutter_assets"; |
|
||||||
std::string icu_data_path = data_directory + "/icudtl.dat"; |
|
||||||
|
|
||||||
std::string lib_directory = "lib"; |
|
||||||
std::string aot_library_path = lib_directory + "/libapp.so"; |
|
||||||
|
|
||||||
// Arguments for the Flutter Engine.
|
|
||||||
std::vector<std::string> arguments; |
|
||||||
|
|
||||||
flutter::FlutterWindowController flutter_controller(icu_data_path); |
|
||||||
flutter::WindowProperties window_properties = {}; |
|
||||||
window_properties.title = kFlutterWindowTitle; |
|
||||||
window_properties.width = kFlutterWindowWidth; |
|
||||||
window_properties.height = kFlutterWindowHeight; |
|
||||||
|
|
||||||
// Start the engine.
|
|
||||||
if (!flutter_controller.CreateWindow(window_properties, assets_path, |
|
||||||
arguments, aot_library_path)) { |
|
||||||
if (getenv("DISPLAY") == nullptr) { |
|
||||||
std::cout << "No DISPLAY; falling back to headless mode." << std::endl; |
|
||||||
RunHeadless(icu_data_path, assets_path, arguments, aot_library_path); |
|
||||||
return EXIT_SUCCESS; |
|
||||||
} |
|
||||||
return EXIT_FAILURE; |
|
||||||
} |
|
||||||
RegisterPlugins(&flutter_controller); |
|
||||||
|
|
||||||
// Run until the window is closed.
|
|
||||||
while (flutter_controller.RunEventLoopWithTimeout()) { |
|
||||||
} |
|
||||||
return EXIT_SUCCESS; |
|
||||||
} |
|
@ -1,5 +0,0 @@ |
|||||||
#include "window_configuration.h" |
|
||||||
|
|
||||||
const char *kFlutterWindowTitle = "argon2_ffi_example"; |
|
||||||
const unsigned int kFlutterWindowWidth = 1280; |
|
||||||
const unsigned int kFlutterWindowHeight = 720; |
|
@ -1,15 +0,0 @@ |
|||||||
#ifndef WINDOW_CONFIGURATION_ |
|
||||||
#define WINDOW_CONFIGURATION_ |
|
||||||
|
|
||||||
// This is a temporary approach to isolate common customizations from main.cpp,
|
|
||||||
// where the APIs are still in flux. This should simplify re-creating the
|
|
||||||
// runner while preserving local changes.
|
|
||||||
//
|
|
||||||
// Longer term there should be simpler configuration options for common
|
|
||||||
// customizations like this, without requiring native code changes.
|
|
||||||
|
|
||||||
extern const char *kFlutterWindowTitle; |
|
||||||
extern const unsigned int kFlutterWindowWidth; |
|
||||||
extern const unsigned int kFlutterWindowHeight; |
|
||||||
|
|
||||||
#endif // WINDOW_CONFIGURATION_
|
|
@ -1,6 +0,0 @@ |
|||||||
# Flutter-related |
|
||||||
**/Flutter/ephemeral/ |
|
||||||
**/Pods/ |
|
||||||
|
|
||||||
# Xcode-related |
|
||||||
**/xcuserdata/ |
|
@ -1,2 +0,0 @@ |
|||||||
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" |
|
||||||
#include "ephemeral/Flutter-Generated.xcconfig" |
|
@ -1,2 +0,0 @@ |
|||||||
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" |
|
||||||
#include "ephemeral/Flutter-Generated.xcconfig" |
|
@ -1,12 +0,0 @@ |
|||||||
// |
|
||||||
// Generated file. Do not edit. |
|
||||||
// |
|
||||||
|
|
||||||
import FlutterMacOS |
|
||||||
import Foundation |
|
||||||
|
|
||||||
import argon2_ffi |
|
||||||
|
|
||||||
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { |
|
||||||
Argon2FfiPlugin.register(with: registry.registrar(forPlugin: "Argon2FfiPlugin")) |
|
||||||
} |
|
@ -1,82 +0,0 @@ |
|||||||
platform :osx, '10.11' |
|
||||||
|
|
||||||
# CocoaPods analytics sends network stats synchronously affecting flutter build latency. |
|
||||||
ENV['COCOAPODS_DISABLE_STATS'] = 'true' |
|
||||||
|
|
||||||
project 'Runner', { |
|
||||||
'Debug' => :debug, |
|
||||||
'Profile' => :release, |
|
||||||
'Release' => :release, |
|
||||||
} |
|
||||||
|
|
||||||
def parse_KV_file(file, separator='=') |
|
||||||
file_abs_path = File.expand_path(file) |
|
||||||
if !File.exists? file_abs_path |
|
||||||
return []; |
|
||||||
end |
|
||||||
pods_ary = [] |
|
||||||
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_ary.push({:name => podname, :path => podpath}); |
|
||||||
else |
|
||||||
puts "Invalid plugin specification: #{line}" |
|
||||||
end |
|
||||||
} |
|
||||||
return pods_ary |
|
||||||
end |
|
||||||
|
|
||||||
def pubspec_supports_macos(file) |
|
||||||
file_abs_path = File.expand_path(file) |
|
||||||
if !File.exists? file_abs_path |
|
||||||
return false; |
|
||||||
end |
|
||||||
File.foreach(file_abs_path) { |line| |
|
||||||
return true if line =~ /^\s*macos:/ |
|
||||||
} |
|
||||||
return false |
|
||||||
end |
|
||||||
|
|
||||||
target 'Runner' do |
|
||||||
use_frameworks! |
|
||||||
use_modular_headers! |
|
||||||
|
|
||||||
# Prepare symlinks folder. We use symlinks to avoid having Podfile.lock |
|
||||||
# referring to absolute paths on developers' machines. |
|
||||||
ephemeral_dir = File.join('Flutter', 'ephemeral') |
|
||||||
symlink_dir = File.join(ephemeral_dir, '.symlinks') |
|
||||||
symlink_plugins_dir = File.join(symlink_dir, 'plugins') |
|
||||||
system("rm -rf #{symlink_dir}") |
|
||||||
system("mkdir -p #{symlink_plugins_dir}") |
|
||||||
|
|
||||||
# Flutter Pods |
|
||||||
generated_xcconfig = parse_KV_file(File.join(ephemeral_dir, 'Flutter-Generated.xcconfig')) |
|
||||||
if generated_xcconfig.empty? |
|
||||||
puts "Flutter-Generated.xcconfig must exist. If you're running pod install manually, make sure flutter packages get is executed first." |
|
||||||
end |
|
||||||
generated_xcconfig.map { |p| |
|
||||||
if p[:name] == 'FLUTTER_FRAMEWORK_DIR' |
|
||||||
symlink = File.join(symlink_dir, 'flutter') |
|
||||||
File.symlink(File.dirname(p[:path]), symlink) |
|
||||||
pod 'FlutterMacOS', :path => File.join(symlink, File.basename(p[:path])) |
|
||||||
end |
|
||||||
} |
|
||||||
|
|
||||||
# Plugin Pods |
|
||||||
plugin_pods = parse_KV_file('../.flutter-plugins') |
|
||||||
plugin_pods.map { |p| |
|
||||||
symlink = File.join(symlink_plugins_dir, p[:name]) |
|
||||||
File.symlink(p[:path], symlink) |
|
||||||
if pubspec_supports_macos(File.join(symlink, 'pubspec.yaml')) |
|
||||||
pod p[:name], :path => File.join(symlink, 'macos') |
|
||||||
end |
|
||||||
} |
|
||||||
end |
|
||||||
|
|
||||||
# Prevent Cocoapods from embedding a second Flutter framework and causing an error with the new Xcode build system. |
|
||||||
install! 'cocoapods', :disable_input_output_paths => true |
|
@ -1,596 +0,0 @@ |
|||||||
// !$*UTF8*$! |
|
||||||
{ |
|
||||||
archiveVersion = 1; |
|
||||||
classes = { |
|
||||||
}; |
|
||||||
objectVersion = 51; |
|
||||||
objects = { |
|
||||||
|
|
||||||
/* Begin PBXAggregateTarget section */ |
|
||||||
33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { |
|
||||||
isa = PBXAggregateTarget; |
|
||||||
buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; |
|
||||||
buildPhases = ( |
|
||||||
33CC111E2044C6BF0003C045 /* ShellScript */, |
|
||||||
); |
|
||||||
dependencies = ( |
|
||||||
); |
|
||||||
name = "Flutter Assemble"; |
|
||||||
productName = FLX; |
|
||||||
}; |
|
||||||
/* End PBXAggregateTarget section */ |
|
||||||
|
|
||||||
/* Begin PBXBuildFile section */ |
|
||||||
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; |
|
||||||
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; |
|
||||||
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; |
|
||||||
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; |
|
||||||
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; |
|
||||||
33D1A10422148B71006C7A3E /* FlutterMacOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D1A10322148B71006C7A3E /* FlutterMacOS.framework */; }; |
|
||||||
33D1A10522148B93006C7A3E /* FlutterMacOS.framework in Bundle Framework */ = {isa = PBXBuildFile; fileRef = 33D1A10322148B71006C7A3E /* FlutterMacOS.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; |
|
||||||
D73912F022F37F9E000D13A0 /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D73912EF22F37F9E000D13A0 /* App.framework */; }; |
|
||||||
D73912F222F3801D000D13A0 /* App.framework in Bundle Framework */ = {isa = PBXBuildFile; fileRef = D73912EF22F37F9E000D13A0 /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; |
|
||||||
/* End PBXBuildFile section */ |
|
||||||
|
|
||||||
/* Begin PBXContainerItemProxy section */ |
|
||||||
33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { |
|
||||||
isa = PBXContainerItemProxy; |
|
||||||
containerPortal = 33CC10E52044A3C60003C045 /* Project object */; |
|
||||||
proxyType = 1; |
|
||||||
remoteGlobalIDString = 33CC111A2044C6BA0003C045; |
|
||||||
remoteInfo = FLX; |
|
||||||
}; |
|
||||||
/* End PBXContainerItemProxy section */ |
|
||||||
|
|
||||||
/* Begin PBXCopyFilesBuildPhase section */ |
|
||||||
33CC110E2044A8840003C045 /* Bundle Framework */ = { |
|
||||||
isa = PBXCopyFilesBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
dstPath = ""; |
|
||||||
dstSubfolderSpec = 10; |
|
||||||
files = ( |
|
||||||
D73912F222F3801D000D13A0 /* App.framework in Bundle Framework */, |
|
||||||
33D1A10522148B93006C7A3E /* FlutterMacOS.framework in Bundle Framework */, |
|
||||||
); |
|
||||||
name = "Bundle Framework"; |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
}; |
|
||||||
/* End PBXCopyFilesBuildPhase section */ |
|
||||||
|
|
||||||
/* Begin PBXFileReference section */ |
|
||||||
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; }; |
|
||||||
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; }; |
|
||||||
33CC10ED2044A3C60003C045 /* argon2_ffi_example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "argon2_ffi_example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; |
|
||||||
33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; }; |
|
||||||
33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; }; |
|
||||||
33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; }; |
|
||||||
33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = "<group>"; }; |
|
||||||
33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = "<group>"; }; |
|
||||||
33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = "<group>"; }; |
|
||||||
33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = "<group>"; }; |
|
||||||
33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = "<group>"; }; |
|
||||||
33D1A10322148B71006C7A3E /* FlutterMacOS.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FlutterMacOS.framework; path = Flutter/ephemeral/FlutterMacOS.framework; sourceTree = SOURCE_ROOT; }; |
|
||||||
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = "<group>"; }; |
|
||||||
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = "<group>"; }; |
|
||||||
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = "<group>"; }; |
|
||||||
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; }; |
|
||||||
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; }; |
|
||||||
D73912EF22F37F9E000D13A0 /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/ephemeral/App.framework; sourceTree = SOURCE_ROOT; }; |
|
||||||
/* End PBXFileReference section */ |
|
||||||
|
|
||||||
/* Begin PBXFrameworksBuildPhase section */ |
|
||||||
33CC10EA2044A3C60003C045 /* Frameworks */ = { |
|
||||||
isa = PBXFrameworksBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
D73912F022F37F9E000D13A0 /* App.framework in Frameworks */, |
|
||||||
33D1A10422148B71006C7A3E /* FlutterMacOS.framework in Frameworks */, |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
}; |
|
||||||
/* End PBXFrameworksBuildPhase section */ |
|
||||||
|
|
||||||
/* Begin PBXGroup section */ |
|
||||||
33BA886A226E78AF003329D5 /* Configs */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
33E5194F232828860026EE4D /* AppInfo.xcconfig */, |
|
||||||
9740EEB21CF90195004384FC /* Debug.xcconfig */, |
|
||||||
7AFA3C8E1D35360C0083082E /* Release.xcconfig */, |
|
||||||
333000ED22D3DE5D00554162 /* Warnings.xcconfig */, |
|
||||||
); |
|
||||||
path = Configs; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
33CC10E42044A3C60003C045 = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
33FAB671232836740065AC1E /* Runner */, |
|
||||||
33CEB47122A05771004F2AC0 /* Flutter */, |
|
||||||
33CC10EE2044A3C60003C045 /* Products */, |
|
||||||
D73912EC22F37F3D000D13A0 /* Frameworks */, |
|
||||||
); |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
33CC10EE2044A3C60003C045 /* Products */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
33CC10ED2044A3C60003C045 /* argon2_ffi_example.app */, |
|
||||||
); |
|
||||||
name = Products; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
33CC11242044D66E0003C045 /* Resources */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
33CC10F22044A3C60003C045 /* Assets.xcassets */, |
|
||||||
33CC10F42044A3C60003C045 /* MainMenu.xib */, |
|
||||||
33CC10F72044A3C60003C045 /* Info.plist */, |
|
||||||
); |
|
||||||
name = Resources; |
|
||||||
path = ..; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
33CEB47122A05771004F2AC0 /* Flutter */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, |
|
||||||
33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, |
|
||||||
33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, |
|
||||||
33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, |
|
||||||
D73912EF22F37F9E000D13A0 /* App.framework */, |
|
||||||
33D1A10322148B71006C7A3E /* FlutterMacOS.framework */, |
|
||||||
); |
|
||||||
path = Flutter; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
33FAB671232836740065AC1E /* Runner */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
33CC10F02044A3C60003C045 /* AppDelegate.swift */, |
|
||||||
33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, |
|
||||||
33E51913231747F40026EE4D /* DebugProfile.entitlements */, |
|
||||||
33E51914231749380026EE4D /* Release.entitlements */, |
|
||||||
33CC11242044D66E0003C045 /* Resources */, |
|
||||||
33BA886A226E78AF003329D5 /* Configs */, |
|
||||||
); |
|
||||||
path = Runner; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
D73912EC22F37F3D000D13A0 /* Frameworks */ = { |
|
||||||
isa = PBXGroup; |
|
||||||
children = ( |
|
||||||
); |
|
||||||
name = Frameworks; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
/* End PBXGroup section */ |
|
||||||
|
|
||||||
/* Begin PBXNativeTarget section */ |
|
||||||
33CC10EC2044A3C60003C045 /* Runner */ = { |
|
||||||
isa = PBXNativeTarget; |
|
||||||
buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; |
|
||||||
buildPhases = ( |
|
||||||
33CC10E92044A3C60003C045 /* Sources */, |
|
||||||
33CC10EA2044A3C60003C045 /* Frameworks */, |
|
||||||
33CC10EB2044A3C60003C045 /* Resources */, |
|
||||||
33CC110E2044A8840003C045 /* Bundle Framework */, |
|
||||||
3399D490228B24CF009A79C7 /* ShellScript */, |
|
||||||
); |
|
||||||
buildRules = ( |
|
||||||
); |
|
||||||
dependencies = ( |
|
||||||
33CC11202044C79F0003C045 /* PBXTargetDependency */, |
|
||||||
); |
|
||||||
name = Runner; |
|
||||||
productName = Runner; |
|
||||||
productReference = 33CC10ED2044A3C60003C045 /* argon2_ffi_example.app */; |
|
||||||
productType = "com.apple.product-type.application"; |
|
||||||
}; |
|
||||||
/* End PBXNativeTarget section */ |
|
||||||
|
|
||||||
/* Begin PBXProject section */ |
|
||||||
33CC10E52044A3C60003C045 /* Project object */ = { |
|
||||||
isa = PBXProject; |
|
||||||
attributes = { |
|
||||||
LastSwiftUpdateCheck = 0920; |
|
||||||
LastUpgradeCheck = 0930; |
|
||||||
ORGANIZATIONNAME = "The Flutter Authors"; |
|
||||||
TargetAttributes = { |
|
||||||
33CC10EC2044A3C60003C045 = { |
|
||||||
CreatedOnToolsVersion = 9.2; |
|
||||||
LastSwiftMigration = 1100; |
|
||||||
ProvisioningStyle = Automatic; |
|
||||||
SystemCapabilities = { |
|
||||||
com.apple.Sandbox = { |
|
||||||
enabled = 1; |
|
||||||
}; |
|
||||||
}; |
|
||||||
}; |
|
||||||
33CC111A2044C6BA0003C045 = { |
|
||||||
CreatedOnToolsVersion = 9.2; |
|
||||||
ProvisioningStyle = Manual; |
|
||||||
}; |
|
||||||
}; |
|
||||||
}; |
|
||||||
buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; |
|
||||||
compatibilityVersion = "Xcode 8.0"; |
|
||||||
developmentRegion = en; |
|
||||||
hasScannedForEncodings = 0; |
|
||||||
knownRegions = ( |
|
||||||
en, |
|
||||||
Base, |
|
||||||
); |
|
||||||
mainGroup = 33CC10E42044A3C60003C045; |
|
||||||
productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; |
|
||||||
projectDirPath = ""; |
|
||||||
projectRoot = ""; |
|
||||||
targets = ( |
|
||||||
33CC10EC2044A3C60003C045 /* Runner */, |
|
||||||
33CC111A2044C6BA0003C045 /* Flutter Assemble */, |
|
||||||
); |
|
||||||
}; |
|
||||||
/* End PBXProject section */ |
|
||||||
|
|
||||||
/* Begin PBXResourcesBuildPhase section */ |
|
||||||
33CC10EB2044A3C60003C045 /* Resources */ = { |
|
||||||
isa = PBXResourcesBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, |
|
||||||
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
}; |
|
||||||
/* End PBXResourcesBuildPhase section */ |
|
||||||
|
|
||||||
/* Begin PBXShellScriptBuildPhase section */ |
|
||||||
3399D490228B24CF009A79C7 /* ShellScript */ = { |
|
||||||
isa = PBXShellScriptBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
); |
|
||||||
inputFileListPaths = ( |
|
||||||
); |
|
||||||
inputPaths = ( |
|
||||||
); |
|
||||||
outputFileListPaths = ( |
|
||||||
); |
|
||||||
outputPaths = ( |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
shellPath = /bin/sh; |
|
||||||
shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename\n"; |
|
||||||
}; |
|
||||||
33CC111E2044C6BF0003C045 /* ShellScript */ = { |
|
||||||
isa = PBXShellScriptBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
); |
|
||||||
inputFileListPaths = ( |
|
||||||
Flutter/ephemeral/FlutterInputs.xcfilelist, |
|
||||||
); |
|
||||||
inputPaths = ( |
|
||||||
Flutter/ephemeral/tripwire, |
|
||||||
); |
|
||||||
outputFileListPaths = ( |
|
||||||
Flutter/ephemeral/FlutterOutputs.xcfilelist, |
|
||||||
); |
|
||||||
outputPaths = ( |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
shellPath = /bin/sh; |
|
||||||
shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh\ntouch Flutter/ephemeral/tripwire\n"; |
|
||||||
}; |
|
||||||
/* End PBXShellScriptBuildPhase section */ |
|
||||||
|
|
||||||
/* Begin PBXSourcesBuildPhase section */ |
|
||||||
33CC10E92044A3C60003C045 /* Sources */ = { |
|
||||||
isa = PBXSourcesBuildPhase; |
|
||||||
buildActionMask = 2147483647; |
|
||||||
files = ( |
|
||||||
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, |
|
||||||
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, |
|
||||||
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, |
|
||||||
); |
|
||||||
runOnlyForDeploymentPostprocessing = 0; |
|
||||||
}; |
|
||||||
/* End PBXSourcesBuildPhase section */ |
|
||||||
|
|
||||||
/* Begin PBXTargetDependency section */ |
|
||||||
33CC11202044C79F0003C045 /* PBXTargetDependency */ = { |
|
||||||
isa = PBXTargetDependency; |
|
||||||
target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; |
|
||||||
targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; |
|
||||||
}; |
|
||||||
/* End PBXTargetDependency section */ |
|
||||||
|
|
||||||
/* Begin PBXVariantGroup section */ |
|
||||||
33CC10F42044A3C60003C045 /* MainMenu.xib */ = { |
|
||||||
isa = PBXVariantGroup; |
|
||||||
children = ( |
|
||||||
33CC10F52044A3C60003C045 /* Base */, |
|
||||||
); |
|
||||||
name = MainMenu.xib; |
|
||||||
path = Runner; |
|
||||||
sourceTree = "<group>"; |
|
||||||
}; |
|
||||||
/* End PBXVariantGroup section */ |
|
||||||
|
|
||||||
/* Begin XCBuildConfiguration section */ |
|
||||||
338D0CE9231458BD00FA5F75 /* Profile */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; |
|
||||||
buildSettings = { |
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO; |
|
||||||
CLANG_ANALYZER_NONNULL = YES; |
|
||||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; |
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; |
|
||||||
CLANG_CXX_LIBRARY = "libc++"; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CLANG_ENABLE_OBJC_ARC = YES; |
|
||||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; |
|
||||||
CLANG_WARN_BOOL_CONVERSION = YES; |
|
||||||
CLANG_WARN_CONSTANT_CONVERSION = YES; |
|
||||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; |
|
||||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; |
|
||||||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES; |
|
||||||
CLANG_WARN_EMPTY_BODY = YES; |
|
||||||
CLANG_WARN_ENUM_CONVERSION = YES; |
|
||||||
CLANG_WARN_INFINITE_RECURSION = YES; |
|
||||||
CLANG_WARN_INT_CONVERSION = YES; |
|
||||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; |
|
||||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; |
|
||||||
CLANG_WARN_SUSPICIOUS_MOVE = YES; |
|
||||||
CODE_SIGN_IDENTITY = "-"; |
|
||||||
COPY_PHASE_STRIP = NO; |
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; |
|
||||||
ENABLE_NS_ASSERTIONS = NO; |
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES; |
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu11; |
|
||||||
GCC_NO_COMMON_BLOCKS = YES; |
|
||||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES; |
|
||||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; |
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; |
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES; |
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES; |
|
||||||
MACOSX_DEPLOYMENT_TARGET = 10.11; |
|
||||||
MTL_ENABLE_DEBUG_INFO = NO; |
|
||||||
SDKROOT = macosx; |
|
||||||
SWIFT_COMPILATION_MODE = wholemodule; |
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-O"; |
|
||||||
}; |
|
||||||
name = Profile; |
|
||||||
}; |
|
||||||
338D0CEA231458BD00FA5F75 /* Profile */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; |
|
||||||
buildSettings = { |
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; |
|
||||||
CODE_SIGN_STYLE = Automatic; |
|
||||||
COMBINE_HIDPI_IMAGES = YES; |
|
||||||
FRAMEWORK_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"$(PROJECT_DIR)/Flutter/ephemeral", |
|
||||||
); |
|
||||||
INFOPLIST_FILE = Runner/Info.plist; |
|
||||||
LD_RUNPATH_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"@executable_path/../Frameworks", |
|
||||||
); |
|
||||||
PROVISIONING_PROFILE_SPECIFIER = ""; |
|
||||||
SWIFT_VERSION = 5.0; |
|
||||||
}; |
|
||||||
name = Profile; |
|
||||||
}; |
|
||||||
338D0CEB231458BD00FA5F75 /* Profile */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
buildSettings = { |
|
||||||
CODE_SIGN_STYLE = Manual; |
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)"; |
|
||||||
}; |
|
||||||
name = Profile; |
|
||||||
}; |
|
||||||
33CC10F92044A3C60003C045 /* Debug */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; |
|
||||||
buildSettings = { |
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO; |
|
||||||
CLANG_ANALYZER_NONNULL = YES; |
|
||||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; |
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; |
|
||||||
CLANG_CXX_LIBRARY = "libc++"; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CLANG_ENABLE_OBJC_ARC = YES; |
|
||||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; |
|
||||||
CLANG_WARN_BOOL_CONVERSION = YES; |
|
||||||
CLANG_WARN_CONSTANT_CONVERSION = YES; |
|
||||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; |
|
||||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; |
|
||||||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES; |
|
||||||
CLANG_WARN_EMPTY_BODY = YES; |
|
||||||
CLANG_WARN_ENUM_CONVERSION = YES; |
|
||||||
CLANG_WARN_INFINITE_RECURSION = YES; |
|
||||||
CLANG_WARN_INT_CONVERSION = YES; |
|
||||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; |
|
||||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; |
|
||||||
CLANG_WARN_SUSPICIOUS_MOVE = YES; |
|
||||||
CODE_SIGN_IDENTITY = "-"; |
|
||||||
COPY_PHASE_STRIP = NO; |
|
||||||
DEBUG_INFORMATION_FORMAT = dwarf; |
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES; |
|
||||||
ENABLE_TESTABILITY = YES; |
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu11; |
|
||||||
GCC_DYNAMIC_NO_PIC = NO; |
|
||||||
GCC_NO_COMMON_BLOCKS = YES; |
|
||||||
GCC_OPTIMIZATION_LEVEL = 0; |
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = ( |
|
||||||
"DEBUG=1", |
|
||||||
"$(inherited)", |
|
||||||
); |
|
||||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES; |
|
||||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; |
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; |
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES; |
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES; |
|
||||||
MACOSX_DEPLOYMENT_TARGET = 10.11; |
|
||||||
MTL_ENABLE_DEBUG_INFO = YES; |
|
||||||
ONLY_ACTIVE_ARCH = YES; |
|
||||||
SDKROOT = macosx; |
|
||||||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; |
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; |
|
||||||
}; |
|
||||||
name = Debug; |
|
||||||
}; |
|
||||||
33CC10FA2044A3C60003C045 /* Release */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; |
|
||||||
buildSettings = { |
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO; |
|
||||||
CLANG_ANALYZER_NONNULL = YES; |
|
||||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; |
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; |
|
||||||
CLANG_CXX_LIBRARY = "libc++"; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CLANG_ENABLE_OBJC_ARC = YES; |
|
||||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; |
|
||||||
CLANG_WARN_BOOL_CONVERSION = YES; |
|
||||||
CLANG_WARN_CONSTANT_CONVERSION = YES; |
|
||||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; |
|
||||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; |
|
||||||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES; |
|
||||||
CLANG_WARN_EMPTY_BODY = YES; |
|
||||||
CLANG_WARN_ENUM_CONVERSION = YES; |
|
||||||
CLANG_WARN_INFINITE_RECURSION = YES; |
|
||||||
CLANG_WARN_INT_CONVERSION = YES; |
|
||||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; |
|
||||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; |
|
||||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; |
|
||||||
CLANG_WARN_SUSPICIOUS_MOVE = YES; |
|
||||||
CODE_SIGN_IDENTITY = "-"; |
|
||||||
COPY_PHASE_STRIP = NO; |
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; |
|
||||||
ENABLE_NS_ASSERTIONS = NO; |
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES; |
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu11; |
|
||||||
GCC_NO_COMMON_BLOCKS = YES; |
|
||||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES; |
|
||||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; |
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; |
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES; |
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES; |
|
||||||
MACOSX_DEPLOYMENT_TARGET = 10.11; |
|
||||||
MTL_ENABLE_DEBUG_INFO = NO; |
|
||||||
SDKROOT = macosx; |
|
||||||
SWIFT_COMPILATION_MODE = wholemodule; |
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-O"; |
|
||||||
}; |
|
||||||
name = Release; |
|
||||||
}; |
|
||||||
33CC10FC2044A3C60003C045 /* Debug */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; |
|
||||||
buildSettings = { |
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; |
|
||||||
CODE_SIGN_STYLE = Automatic; |
|
||||||
COMBINE_HIDPI_IMAGES = YES; |
|
||||||
FRAMEWORK_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"$(PROJECT_DIR)/Flutter/ephemeral", |
|
||||||
); |
|
||||||
INFOPLIST_FILE = Runner/Info.plist; |
|
||||||
LD_RUNPATH_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"@executable_path/../Frameworks", |
|
||||||
); |
|
||||||
PROVISIONING_PROFILE_SPECIFIER = ""; |
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; |
|
||||||
SWIFT_VERSION = 5.0; |
|
||||||
}; |
|
||||||
name = Debug; |
|
||||||
}; |
|
||||||
33CC10FD2044A3C60003C045 /* Release */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; |
|
||||||
buildSettings = { |
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
|
||||||
CLANG_ENABLE_MODULES = YES; |
|
||||||
CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; |
|
||||||
CODE_SIGN_STYLE = Automatic; |
|
||||||
COMBINE_HIDPI_IMAGES = YES; |
|
||||||
FRAMEWORK_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"$(PROJECT_DIR)/Flutter/ephemeral", |
|
||||||
); |
|
||||||
INFOPLIST_FILE = Runner/Info.plist; |
|
||||||
LD_RUNPATH_SEARCH_PATHS = ( |
|
||||||
"$(inherited)", |
|
||||||
"@executable_path/../Frameworks", |
|
||||||
); |
|
||||||
PROVISIONING_PROFILE_SPECIFIER = ""; |
|
||||||
SWIFT_VERSION = 5.0; |
|
||||||
}; |
|
||||||
name = Release; |
|
||||||
}; |
|
||||||
33CC111C2044C6BA0003C045 /* Debug */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
buildSettings = { |
|
||||||
CODE_SIGN_STYLE = Manual; |
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)"; |
|
||||||
}; |
|
||||||
name = Debug; |
|
||||||
}; |
|
||||||
33CC111D2044C6BA0003C045 /* Release */ = { |
|
||||||
isa = XCBuildConfiguration; |
|
||||||
buildSettings = { |
|
||||||
CODE_SIGN_STYLE = Automatic; |
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)"; |
|
||||||
}; |
|
||||||
name = Release; |
|
||||||
}; |
|
||||||
/* End XCBuildConfiguration section */ |
|
||||||
|
|
||||||
/* Begin XCConfigurationList section */ |
|
||||||
33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { |
|
||||||
isa = XCConfigurationList; |
|
||||||
buildConfigurations = ( |
|
||||||
33CC10F92044A3C60003C045 /* Debug */, |
|
||||||
33CC10FA2044A3C60003C045 /* Release */, |
|
||||||
338D0CE9231458BD00FA5F75 /* Profile */, |
|
||||||
); |
|
||||||
defaultConfigurationIsVisible = 0; |
|
||||||
defaultConfigurationName = Release; |
|
||||||
}; |
|
||||||
33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { |
|
||||||
isa = XCConfigurationList; |
|
||||||
buildConfigurations = ( |
|
||||||
33CC10FC2044A3C60003C045 /* Debug */, |
|
||||||
33CC10FD2044A3C60003C045 /* Release */, |
|
||||||
338D0CEA231458BD00FA5F75 /* Profile */, |
|
||||||
); |
|
||||||
defaultConfigurationIsVisible = 0; |
|
||||||
defaultConfigurationName = Release; |
|
||||||
}; |
|
||||||
33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { |
|
||||||
isa = XCConfigurationList; |
|
||||||
buildConfigurations = ( |
|
||||||
33CC111C2044C6BA0003C045 /* Debug */, |
|
||||||
33CC111D2044C6BA0003C045 /* Release */, |
|
||||||
338D0CEB231458BD00FA5F75 /* Profile */, |
|
||||||
); |
|
||||||
defaultConfigurationIsVisible = 0; |
|
||||||
defaultConfigurationName = Release; |
|
||||||
}; |
|
||||||
/* End XCConfigurationList section */ |
|
||||||
}; |
|
||||||
rootObject = 33CC10E52044A3C60003C045 /* Project object */; |
|
||||||
} |
|
@ -1,7 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<Workspace |
|
||||||
version = "1.0"> |
|
||||||
<FileRef |
|
||||||
location = "self:/Users/stuartmorgan/src/embedder-opensource/flutter-desktop-embedding/example/macos/Runner.xcodeproj"> |
|
||||||
</FileRef> |
|
||||||
</Workspace> |
|
@ -1,8 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|
||||||
<plist version="1.0"> |
|
||||||
<dict> |
|
||||||
<key>IDEDidComputeMac32BitWarning</key> |
|
||||||
<true/> |
|
||||||
</dict> |
|
||||||
</plist> |
|
@ -1,101 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<Scheme |
|
||||||
LastUpgradeVersion = "1000" |
|
||||||
version = "1.3"> |
|
||||||
<BuildAction |
|
||||||
parallelizeBuildables = "YES" |
|
||||||
buildImplicitDependencies = "YES"> |
|
||||||
<BuildActionEntries> |
|
||||||
<BuildActionEntry |
|
||||||
buildForTesting = "YES" |
|
||||||
buildForRunning = "YES" |
|
||||||
buildForProfiling = "YES" |
|
||||||
buildForArchiving = "YES" |
|
||||||
buildForAnalyzing = "YES"> |
|
||||||
<BuildableReference |
|
||||||
BuildableIdentifier = "primary" |
|
||||||
BlueprintIdentifier = "33CC10EC2044A3C60003C045" |
|
||||||
BuildableName = "argon2_ffi_example.app" |
|
||||||
BlueprintName = "Runner" |
|
||||||
ReferencedContainer = "container:Runner.xcodeproj"> |
|
||||||
</BuildableReference> |
|
||||||
</BuildActionEntry> |
|
||||||
</BuildActionEntries> |
|
||||||
</BuildAction> |
|
||||||
<TestAction |
|
||||||
buildConfiguration = "Debug" |
|
||||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" |
|
||||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" |
|
||||||
shouldUseLaunchSchemeArgsEnv = "YES"> |
|
||||||
<Testables> |
|
||||||
<TestableReference |
|
||||||
skipped = "NO"> |
|
||||||
<BuildableReference |
|
||||||
BuildableIdentifier = "primary" |
|
||||||
BlueprintIdentifier = "00380F9121DF178D00097171" |
|
||||||
BuildableName = "RunnerUITests.xctest" |
|
||||||
BlueprintName = "RunnerUITests" |
|
||||||
ReferencedContainer = "container:Runner.xcodeproj"> |
|
||||||
</BuildableReference> |
|
||||||
</TestableReference> |
|
||||||
</Testables> |
|
||||||
<MacroExpansion> |
|
||||||
<BuildableReference |
|
||||||
BuildableIdentifier = "primary" |
|
||||||
BlueprintIdentifier = "33CC10EC2044A3C60003C045" |
|
||||||
BuildableName = "argon2_ffi_example.app" |
|
||||||
BlueprintName = "Runner" |
|
||||||
ReferencedContainer = "container:Runner.xcodeproj"> |
|
||||||
</BuildableReference> |
|
||||||
</MacroExpansion> |
|
||||||
<AdditionalOptions> |
|
||||||
</AdditionalOptions> |
|
||||||
</TestAction> |
|
||||||
<LaunchAction |
|
||||||
buildConfiguration = "Debug" |
|
||||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" |
|
||||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" |
|
||||||
launchStyle = "0" |
|
||||||
useCustomWorkingDirectory = "NO" |
|
||||||
ignoresPersistentStateOnLaunch = "NO" |
|
||||||
debugDocumentVersioning = "YES" |
|
||||||
debugServiceExtension = "internal" |
|
||||||
allowLocationSimulation = "YES"> |
|
||||||
<BuildableProductRunnable |
|
||||||
runnableDebuggingMode = "0"> |
|
||||||
<BuildableReference |
|
||||||
BuildableIdentifier = "primary" |
|
||||||
BlueprintIdentifier = "33CC10EC2044A3C60003C045" |
|
||||||
BuildableName = "argon2_ffi_example.app" |
|
||||||
BlueprintName = "Runner" |
|
||||||
ReferencedContainer = "container:Runner.xcodeproj"> |
|
||||||
</BuildableReference> |
|
||||||
</BuildableProductRunnable> |
|
||||||
<AdditionalOptions> |
|
||||||
</AdditionalOptions> |
|
||||||
</LaunchAction> |
|
||||||
<ProfileAction |
|
||||||
buildConfiguration = "Release" |
|
||||||
shouldUseLaunchSchemeArgsEnv = "YES" |
|
||||||
savedToolIdentifier = "" |
|
||||||
useCustomWorkingDirectory = "NO" |
|
||||||
debugDocumentVersioning = "YES"> |
|
||||||
<BuildableProductRunnable |
|
||||||
runnableDebuggingMode = "0"> |
|
||||||
<BuildableReference |
|
||||||
BuildableIdentifier = "primary" |
|
||||||
BlueprintIdentifier = "33CC10EC2044A3C60003C045" |
|
||||||
BuildableName = "argon2_ffi_example.app" |
|
||||||
BlueprintName = "Runner" |
|
||||||
ReferencedContainer = "container:Runner.xcodeproj"> |
|
||||||
</BuildableReference> |
|
||||||
</BuildableProductRunnable> |
|
||||||
</ProfileAction> |
|
||||||
<AnalyzeAction |
|
||||||
buildConfiguration = "Debug"> |
|
||||||
</AnalyzeAction> |
|
||||||
<ArchiveAction |
|
||||||
buildConfiguration = "Release" |
|
||||||
revealArchiveInOrganizer = "YES"> |
|
||||||
</ArchiveAction> |
|
||||||
</Scheme> |
|
@ -1,7 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<Workspace |
|
||||||
version = "1.0"> |
|
||||||
<FileRef |
|
||||||
location = "group:Runner.xcodeproj"> |
|
||||||
</FileRef> |
|
||||||
</Workspace> |
|
@ -1,8 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|
||||||
<plist version="1.0"> |
|
||||||
<dict> |
|
||||||
<key>IDEDidComputeMac32BitWarning</key> |
|
||||||
<true/> |
|
||||||
</dict> |
|
||||||
</plist> |
|
@ -1,9 +0,0 @@ |
|||||||
import Cocoa |
|
||||||
import FlutterMacOS |
|
||||||
|
|
||||||
@NSApplicationMain |
|
||||||
class AppDelegate: FlutterAppDelegate { |
|
||||||
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { |
|
||||||
return true |
|
||||||
} |
|
||||||
} |
|
@ -1,68 +0,0 @@ |
|||||||
{ |
|
||||||
"images" : [ |
|
||||||
{ |
|
||||||
"size" : "16x16", |
|
||||||
"idiom" : "mac", |
|
||||||
"filename" : "app_icon_16.png", |
|
||||||
"scale" : "1x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "16x16", |
|
||||||
"idiom" : "mac", |
|
||||||
"filename" : "app_icon_32.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "32x32", |
|
||||||
"idiom" : "mac", |
|
||||||
"filename" : "app_icon_32.png", |
|
||||||
"scale" : "1x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "32x32", |
|
||||||
"idiom" : "mac", |
|
||||||
"filename" : "app_icon_64.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "128x128", |
|
||||||
"idiom" : "mac", |
|
||||||
"filename" : "app_icon_128.png", |
|
||||||
"scale" : "1x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "128x128", |
|
||||||
"idiom" : "mac", |
|
||||||
"filename" : "app_icon_256.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "256x256", |
|
||||||
"idiom" : "mac", |
|
||||||
"filename" : "app_icon_256.png", |
|
||||||
"scale" : "1x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "256x256", |
|
||||||
"idiom" : "mac", |
|
||||||
"filename" : "app_icon_512.png", |
|
||||||
"scale" : "2x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "512x512", |
|
||||||
"idiom" : "mac", |
|
||||||
"filename" : "app_icon_512.png", |
|
||||||
"scale" : "1x" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"size" : "512x512", |
|
||||||
"idiom" : "mac", |
|
||||||
"filename" : "app_icon_1024.png", |
|
||||||
"scale" : "2x" |
|
||||||
} |
|
||||||
], |
|
||||||
"info" : { |
|
||||||
"version" : 1, |
|
||||||
"author" : "xcode" |
|
||||||
} |
|
||||||
} |
|
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.4 KiB |