~repos /only-bible-app
git clone
https://pyrossh.dev/repos/only-bible-app.git
Discussions:
https://groups.google.com/g/rust-embed-devs
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
610a0325
—
pyrossh 2 years ago
improve icon and sidebar
- README.md +1 -1
- analysis_options.yaml +0 -1
- android/app/src/main/kotlin/sh/pyros/bible_app/MainActivity.kt +6 -0
- ios/.gitignore +0 -34
- ios/Flutter/AppFrameworkInfo.plist +0 -26
- ios/Flutter/Debug.xcconfig +0 -2
- ios/Flutter/Release.xcconfig +0 -2
- ios/Podfile +0 -44
- ios/Podfile.lock +0 -67
- ios/Runner.xcodeproj/project.pbxproj +0 -721
- ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
- ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +0 -8
- ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +0 -98
- ios/Runner.xcworkspace/contents.xcworkspacedata +0 -10
- ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +0 -8
- ios/Runner/AppDelegate.swift +0 -13
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +0 -128
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- ios/Runner/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png +0 -0
- ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json +0 -21
- ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png +0 -0
- ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +0 -23
- ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +0 -5
- ios/Runner/Assets.xcassets/iTunesArtwork@1x.png +0 -0
- ios/Runner/Assets.xcassets/iTunesArtwork@2x.png +0 -0
- ios/Runner/Assets.xcassets/iTunesArtwork@3x.png +0 -0
- ios/Runner/Base.lproj/LaunchScreen.storyboard +0 -44
- ios/Runner/Base.lproj/Main.storyboard +0 -26
- ios/Runner/Info.plist +0 -53
- ios/Runner/Runner-Bridging-Header.h +0 -1
- ios/RunnerTests/RunnerTests.swift +0 -12
- lib/components/sidebar.dart +6 -3
- lib/components/tile.dart +1 -1
- lib/routes/home_screen.dart +2 -6
- pubspec.lock +17 -1
- pubspec.yaml +2 -0
- scripts/scrape.dart +13 -0
README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Only Bible App
|
|
2
2
|
|
|
3
3
|
A new Flutter project.
|
|
4
4
|
|
analysis_options.yaml
CHANGED
|
@@ -13,5 +13,4 @@ linter:
|
|
|
13
13
|
- use_named_constants
|
|
14
14
|
- use_string_buffers
|
|
15
15
|
- secure_pubspec_urls
|
|
16
|
-
- sort_pub_dependencies
|
|
17
16
|
- lines_longer_than_80_chars
|
android/app/src/main/kotlin/sh/pyros/bible_app/MainActivity.kt
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
package sh.pyros.bible_app
|
|
2
|
+
|
|
3
|
+
import io.flutter.embedding.android.FlutterActivity
|
|
4
|
+
|
|
5
|
+
class MainActivity: FlutterActivity() {
|
|
6
|
+
}
|
ios/.gitignore
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
**/dgph
|
|
2
|
-
*.mode1v3
|
|
3
|
-
*.mode2v3
|
|
4
|
-
*.moved-aside
|
|
5
|
-
*.pbxuser
|
|
6
|
-
*.perspectivev3
|
|
7
|
-
**/*sync/
|
|
8
|
-
.sconsign.dblite
|
|
9
|
-
.tags*
|
|
10
|
-
**/.vagrant/
|
|
11
|
-
**/DerivedData/
|
|
12
|
-
Icon?
|
|
13
|
-
**/Pods/
|
|
14
|
-
**/.symlinks/
|
|
15
|
-
profile
|
|
16
|
-
xcuserdata
|
|
17
|
-
**/.generated/
|
|
18
|
-
Flutter/App.framework
|
|
19
|
-
Flutter/Flutter.framework
|
|
20
|
-
Flutter/Flutter.podspec
|
|
21
|
-
Flutter/Generated.xcconfig
|
|
22
|
-
Flutter/ephemeral/
|
|
23
|
-
Flutter/app.flx
|
|
24
|
-
Flutter/app.zip
|
|
25
|
-
Flutter/flutter_assets/
|
|
26
|
-
Flutter/flutter_export_environment.sh
|
|
27
|
-
ServiceDefinitions.json
|
|
28
|
-
Runner/GeneratedPluginRegistrant.*
|
|
29
|
-
|
|
30
|
-
# Exceptions to above rules.
|
|
31
|
-
!default.mode1v3
|
|
32
|
-
!default.mode2v3
|
|
33
|
-
!default.pbxuser
|
|
34
|
-
!default.perspectivev3
|
ios/Flutter/AppFrameworkInfo.plist
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>CFBundleDevelopmentRegion</key>
|
|
6
|
-
<string>en</string>
|
|
7
|
-
<key>CFBundleExecutable</key>
|
|
8
|
-
<string>App</string>
|
|
9
|
-
<key>CFBundleIdentifier</key>
|
|
10
|
-
<string>io.flutter.flutter.app</string>
|
|
11
|
-
<key>CFBundleInfoDictionaryVersion</key>
|
|
12
|
-
<string>6.0</string>
|
|
13
|
-
<key>CFBundleName</key>
|
|
14
|
-
<string>App</string>
|
|
15
|
-
<key>CFBundlePackageType</key>
|
|
16
|
-
<string>FMWK</string>
|
|
17
|
-
<key>CFBundleShortVersionString</key>
|
|
18
|
-
<string>1.0</string>
|
|
19
|
-
<key>CFBundleSignature</key>
|
|
20
|
-
<string>????</string>
|
|
21
|
-
<key>CFBundleVersion</key>
|
|
22
|
-
<string>1.0</string>
|
|
23
|
-
<key>MinimumOSVersion</key>
|
|
24
|
-
<string>11.0</string>
|
|
25
|
-
</dict>
|
|
26
|
-
</plist>
|
ios/Flutter/Debug.xcconfig
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
|
|
2
|
-
#include "Generated.xcconfig"
|
ios/Flutter/Release.xcconfig
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
|
|
2
|
-
#include "Generated.xcconfig"
|
ios/Podfile
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# Uncomment this line to define a global platform for your project
|
|
2
|
-
# platform :ios, '11.0'
|
|
3
|
-
|
|
4
|
-
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
|
|
5
|
-
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
|
|
6
|
-
|
|
7
|
-
project 'Runner', {
|
|
8
|
-
'Debug' => :debug,
|
|
9
|
-
'Profile' => :release,
|
|
10
|
-
'Release' => :release,
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
def flutter_root
|
|
14
|
-
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
|
|
15
|
-
unless File.exist?(generated_xcode_build_settings_path)
|
|
16
|
-
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
File.foreach(generated_xcode_build_settings_path) do |line|
|
|
20
|
-
matches = line.match(/FLUTTER_ROOT\=(.*)/)
|
|
21
|
-
return matches[1].strip if matches
|
|
22
|
-
end
|
|
23
|
-
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
|
|
27
|
-
|
|
28
|
-
flutter_ios_podfile_setup
|
|
29
|
-
|
|
30
|
-
target 'Runner' do
|
|
31
|
-
use_frameworks!
|
|
32
|
-
use_modular_headers!
|
|
33
|
-
|
|
34
|
-
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
|
|
35
|
-
target 'RunnerTests' do
|
|
36
|
-
inherit! :search_paths
|
|
37
|
-
end
|
|
38
|
-
end
|
|
39
|
-
|
|
40
|
-
post_install do |installer|
|
|
41
|
-
installer.pods_project.targets.each do |target|
|
|
42
|
-
flutter_additional_ios_build_settings(target)
|
|
43
|
-
end
|
|
44
|
-
end
|
ios/Podfile.lock
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
PODS:
|
|
2
|
-
- audio_session (0.0.1):
|
|
3
|
-
- Flutter
|
|
4
|
-
- Flutter (1.0.0)
|
|
5
|
-
- flutter_charset_detector_ios (0.0.1):
|
|
6
|
-
- Flutter
|
|
7
|
-
- UniversalDetector2 (= 2.0.1)
|
|
8
|
-
- flutter_native_splash (0.0.1):
|
|
9
|
-
- Flutter
|
|
10
|
-
- integration_test (0.0.1):
|
|
11
|
-
- Flutter
|
|
12
|
-
- just_audio (0.0.1):
|
|
13
|
-
- Flutter
|
|
14
|
-
- path_provider_foundation (0.0.1):
|
|
15
|
-
- Flutter
|
|
16
|
-
- FlutterMacOS
|
|
17
|
-
- shared_preferences_foundation (0.0.1):
|
|
18
|
-
- Flutter
|
|
19
|
-
- FlutterMacOS
|
|
20
|
-
- UniversalDetector2 (2.0.1)
|
|
21
|
-
|
|
22
|
-
DEPENDENCIES:
|
|
23
|
-
- audio_session (from `.symlinks/plugins/audio_session/ios`)
|
|
24
|
-
- Flutter (from `Flutter`)
|
|
25
|
-
- flutter_charset_detector_ios (from `.symlinks/plugins/flutter_charset_detector_ios/ios`)
|
|
26
|
-
- flutter_native_splash (from `.symlinks/plugins/flutter_native_splash/ios`)
|
|
27
|
-
- integration_test (from `.symlinks/plugins/integration_test/ios`)
|
|
28
|
-
- just_audio (from `.symlinks/plugins/just_audio/ios`)
|
|
29
|
-
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
|
|
30
|
-
- shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`)
|
|
31
|
-
|
|
32
|
-
SPEC REPOS:
|
|
33
|
-
trunk:
|
|
34
|
-
- UniversalDetector2
|
|
35
|
-
|
|
36
|
-
EXTERNAL SOURCES:
|
|
37
|
-
audio_session:
|
|
38
|
-
:path: ".symlinks/plugins/audio_session/ios"
|
|
39
|
-
Flutter:
|
|
40
|
-
:path: Flutter
|
|
41
|
-
flutter_charset_detector_ios:
|
|
42
|
-
:path: ".symlinks/plugins/flutter_charset_detector_ios/ios"
|
|
43
|
-
flutter_native_splash:
|
|
44
|
-
:path: ".symlinks/plugins/flutter_native_splash/ios"
|
|
45
|
-
integration_test:
|
|
46
|
-
:path: ".symlinks/plugins/integration_test/ios"
|
|
47
|
-
just_audio:
|
|
48
|
-
:path: ".symlinks/plugins/just_audio/ios"
|
|
49
|
-
path_provider_foundation:
|
|
50
|
-
:path: ".symlinks/plugins/path_provider_foundation/darwin"
|
|
51
|
-
shared_preferences_foundation:
|
|
52
|
-
:path: ".symlinks/plugins/shared_preferences_foundation/darwin"
|
|
53
|
-
|
|
54
|
-
SPEC CHECKSUMS:
|
|
55
|
-
audio_session: 4f3e461722055d21515cf3261b64c973c062f345
|
|
56
|
-
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
|
|
57
|
-
flutter_charset_detector_ios: 5157d0104855b9deb78e1395515a287197bc2d55
|
|
58
|
-
flutter_native_splash: 52501b97d1c0a5f898d687f1646226c1f93c56ef
|
|
59
|
-
integration_test: 13825b8a9334a850581300559b8839134b124670
|
|
60
|
-
just_audio: baa7252489dbcf47a4c7cc9ca663e9661c99aafa
|
|
61
|
-
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
|
|
62
|
-
shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126
|
|
63
|
-
UniversalDetector2: 7c9ffd935cf050eeb19edf7e90f6febe3743a1af
|
|
64
|
-
|
|
65
|
-
PODFILE CHECKSUM: 70d9d25280d0dd177a5f637cdb0f0b0b12c6a189
|
|
66
|
-
|
|
67
|
-
COCOAPODS: 1.12.1
|
ios/Runner.xcodeproj/project.pbxproj
DELETED
|
@@ -1,721 +0,0 @@
|
|
|
1
|
-
// !$*UTF8*$!
|
|
2
|
-
{
|
|
3
|
-
archiveVersion = 1;
|
|
4
|
-
classes = {
|
|
5
|
-
};
|
|
6
|
-
objectVersion = 54;
|
|
7
|
-
objects = {
|
|
8
|
-
|
|
9
|
-
/* Begin PBXBuildFile section */
|
|
10
|
-
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
|
|
11
|
-
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
|
|
12
|
-
36FA218EDF906A9C347642F9 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EEA2C8AE036C2108075A47E4 /* Pods_Runner.framework */; };
|
|
13
|
-
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
|
|
14
|
-
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
|
|
15
|
-
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
|
|
16
|
-
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
|
|
17
|
-
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
|
|
18
|
-
C03AD0E69CBDCB105029E472 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14198B934029A470BB6B5E9A /* Pods_RunnerTests.framework */; };
|
|
19
|
-
/* End PBXBuildFile section */
|
|
20
|
-
|
|
21
|
-
/* Begin PBXContainerItemProxy section */
|
|
22
|
-
331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
|
|
23
|
-
isa = PBXContainerItemProxy;
|
|
24
|
-
containerPortal = 97C146E61CF9000F007C117D /* Project object */;
|
|
25
|
-
proxyType = 1;
|
|
26
|
-
remoteGlobalIDString = 97C146ED1CF9000F007C117D;
|
|
27
|
-
remoteInfo = Runner;
|
|
28
|
-
};
|
|
29
|
-
/* End PBXContainerItemProxy section */
|
|
30
|
-
|
|
31
|
-
/* Begin PBXCopyFilesBuildPhase section */
|
|
32
|
-
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
|
|
33
|
-
isa = PBXCopyFilesBuildPhase;
|
|
34
|
-
buildActionMask = 2147483647;
|
|
35
|
-
dstPath = "";
|
|
36
|
-
dstSubfolderSpec = 10;
|
|
37
|
-
files = (
|
|
38
|
-
);
|
|
39
|
-
name = "Embed Frameworks";
|
|
40
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
41
|
-
};
|
|
42
|
-
/* End PBXCopyFilesBuildPhase section */
|
|
43
|
-
|
|
44
|
-
/* Begin PBXFileReference section */
|
|
45
|
-
0A2158CE3F38A3BE247CD237 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
46
|
-
14198B934029A470BB6B5E9A /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
47
|
-
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
|
|
48
|
-
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
|
|
49
|
-
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
|
|
50
|
-
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
51
|
-
38877AB10A23C464B3C3C33E /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; };
|
|
52
|
-
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
|
|
53
|
-
50F7ABAE44F77FAF5210925B /* 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>"; };
|
|
54
|
-
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
55
|
-
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
56
|
-
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
|
|
57
|
-
7E255D3D9EC74A6146EFAC11 /* 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>"; };
|
|
58
|
-
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
|
|
59
|
-
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
|
|
60
|
-
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
61
|
-
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
|
62
|
-
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
63
|
-
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
64
|
-
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
65
|
-
A9ED1CB03DE55FAEB8892E6D /* 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>"; };
|
|
66
|
-
AE7D2B38F2CF84EAAE786903 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
67
|
-
EEA2C8AE036C2108075A47E4 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
68
|
-
/* End PBXFileReference section */
|
|
69
|
-
|
|
70
|
-
/* Begin PBXFrameworksBuildPhase section */
|
|
71
|
-
97C146EB1CF9000F007C117D /* Frameworks */ = {
|
|
72
|
-
isa = PBXFrameworksBuildPhase;
|
|
73
|
-
buildActionMask = 2147483647;
|
|
74
|
-
files = (
|
|
75
|
-
36FA218EDF906A9C347642F9 /* Pods_Runner.framework in Frameworks */,
|
|
76
|
-
);
|
|
77
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
78
|
-
};
|
|
79
|
-
9C3EFD142E30609B1566159D /* Frameworks */ = {
|
|
80
|
-
isa = PBXFrameworksBuildPhase;
|
|
81
|
-
buildActionMask = 2147483647;
|
|
82
|
-
files = (
|
|
83
|
-
C03AD0E69CBDCB105029E472 /* Pods_RunnerTests.framework in Frameworks */,
|
|
84
|
-
);
|
|
85
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
86
|
-
};
|
|
87
|
-
/* End PBXFrameworksBuildPhase section */
|
|
88
|
-
|
|
89
|
-
/* Begin PBXGroup section */
|
|
90
|
-
331C8082294A63A400263BE5 /* RunnerTests */ = {
|
|
91
|
-
isa = PBXGroup;
|
|
92
|
-
children = (
|
|
93
|
-
331C807B294A618700263BE5 /* RunnerTests.swift */,
|
|
94
|
-
);
|
|
95
|
-
path = RunnerTests;
|
|
96
|
-
sourceTree = "<group>";
|
|
97
|
-
};
|
|
98
|
-
9740EEB11CF90186004384FC /* Flutter */ = {
|
|
99
|
-
isa = PBXGroup;
|
|
100
|
-
children = (
|
|
101
|
-
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
|
|
102
|
-
9740EEB21CF90195004384FC /* Debug.xcconfig */,
|
|
103
|
-
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
|
|
104
|
-
9740EEB31CF90195004384FC /* Generated.xcconfig */,
|
|
105
|
-
);
|
|
106
|
-
name = Flutter;
|
|
107
|
-
sourceTree = "<group>";
|
|
108
|
-
};
|
|
109
|
-
97C146E51CF9000F007C117D = {
|
|
110
|
-
isa = PBXGroup;
|
|
111
|
-
children = (
|
|
112
|
-
9740EEB11CF90186004384FC /* Flutter */,
|
|
113
|
-
97C146F01CF9000F007C117D /* Runner */,
|
|
114
|
-
97C146EF1CF9000F007C117D /* Products */,
|
|
115
|
-
331C8082294A63A400263BE5 /* RunnerTests */,
|
|
116
|
-
97C195AD9AAFBECEF9A41B3F /* Pods */,
|
|
117
|
-
A64782B776643C60EA1536E0 /* Frameworks */,
|
|
118
|
-
);
|
|
119
|
-
sourceTree = "<group>";
|
|
120
|
-
};
|
|
121
|
-
97C146EF1CF9000F007C117D /* Products */ = {
|
|
122
|
-
isa = PBXGroup;
|
|
123
|
-
children = (
|
|
124
|
-
97C146EE1CF9000F007C117D /* Runner.app */,
|
|
125
|
-
331C8081294A63A400263BE5 /* RunnerTests.xctest */,
|
|
126
|
-
);
|
|
127
|
-
name = Products;
|
|
128
|
-
sourceTree = "<group>";
|
|
129
|
-
};
|
|
130
|
-
97C146F01CF9000F007C117D /* Runner */ = {
|
|
131
|
-
isa = PBXGroup;
|
|
132
|
-
children = (
|
|
133
|
-
97C146FA1CF9000F007C117D /* Main.storyboard */,
|
|
134
|
-
97C146FD1CF9000F007C117D /* Assets.xcassets */,
|
|
135
|
-
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
|
|
136
|
-
97C147021CF9000F007C117D /* Info.plist */,
|
|
137
|
-
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
|
|
138
|
-
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
|
|
139
|
-
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
|
|
140
|
-
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
|
|
141
|
-
);
|
|
142
|
-
path = Runner;
|
|
143
|
-
sourceTree = "<group>";
|
|
144
|
-
};
|
|
145
|
-
97C195AD9AAFBECEF9A41B3F /* Pods */ = {
|
|
146
|
-
isa = PBXGroup;
|
|
147
|
-
children = (
|
|
148
|
-
7E255D3D9EC74A6146EFAC11 /* Pods-Runner.debug.xcconfig */,
|
|
149
|
-
A9ED1CB03DE55FAEB8892E6D /* Pods-Runner.release.xcconfig */,
|
|
150
|
-
50F7ABAE44F77FAF5210925B /* Pods-Runner.profile.xcconfig */,
|
|
151
|
-
AE7D2B38F2CF84EAAE786903 /* Pods-RunnerTests.debug.xcconfig */,
|
|
152
|
-
0A2158CE3F38A3BE247CD237 /* Pods-RunnerTests.release.xcconfig */,
|
|
153
|
-
38877AB10A23C464B3C3C33E /* Pods-RunnerTests.profile.xcconfig */,
|
|
154
|
-
);
|
|
155
|
-
name = Pods;
|
|
156
|
-
path = Pods;
|
|
157
|
-
sourceTree = "<group>";
|
|
158
|
-
};
|
|
159
|
-
A64782B776643C60EA1536E0 /* Frameworks */ = {
|
|
160
|
-
isa = PBXGroup;
|
|
161
|
-
children = (
|
|
162
|
-
EEA2C8AE036C2108075A47E4 /* Pods_Runner.framework */,
|
|
163
|
-
14198B934029A470BB6B5E9A /* Pods_RunnerTests.framework */,
|
|
164
|
-
);
|
|
165
|
-
name = Frameworks;
|
|
166
|
-
sourceTree = "<group>";
|
|
167
|
-
};
|
|
168
|
-
/* End PBXGroup section */
|
|
169
|
-
|
|
170
|
-
/* Begin PBXNativeTarget section */
|
|
171
|
-
331C8080294A63A400263BE5 /* RunnerTests */ = {
|
|
172
|
-
isa = PBXNativeTarget;
|
|
173
|
-
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
|
|
174
|
-
buildPhases = (
|
|
175
|
-
38CECC787EBB13E287EEB472 /* [CP] Check Pods Manifest.lock */,
|
|
176
|
-
331C807D294A63A400263BE5 /* Sources */,
|
|
177
|
-
331C807F294A63A400263BE5 /* Resources */,
|
|
178
|
-
9C3EFD142E30609B1566159D /* Frameworks */,
|
|
179
|
-
);
|
|
180
|
-
buildRules = (
|
|
181
|
-
);
|
|
182
|
-
dependencies = (
|
|
183
|
-
331C8086294A63A400263BE5 /* PBXTargetDependency */,
|
|
184
|
-
);
|
|
185
|
-
name = RunnerTests;
|
|
186
|
-
productName = RunnerTests;
|
|
187
|
-
productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
|
|
188
|
-
productType = "com.apple.product-type.bundle.unit-test";
|
|
189
|
-
};
|
|
190
|
-
97C146ED1CF9000F007C117D /* Runner */ = {
|
|
191
|
-
isa = PBXNativeTarget;
|
|
192
|
-
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
|
|
193
|
-
buildPhases = (
|
|
194
|
-
5EA3BEB3F6E8E445C0A18D45 /* [CP] Check Pods Manifest.lock */,
|
|
195
|
-
9740EEB61CF901F6004384FC /* Run Script */,
|
|
196
|
-
97C146EA1CF9000F007C117D /* Sources */,
|
|
197
|
-
97C146EB1CF9000F007C117D /* Frameworks */,
|
|
198
|
-
97C146EC1CF9000F007C117D /* Resources */,
|
|
199
|
-
9705A1C41CF9048500538489 /* Embed Frameworks */,
|
|
200
|
-
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
|
|
201
|
-
45F9F2A93C688BF135456D5C /* [CP] Embed Pods Frameworks */,
|
|
202
|
-
);
|
|
203
|
-
buildRules = (
|
|
204
|
-
);
|
|
205
|
-
dependencies = (
|
|
206
|
-
);
|
|
207
|
-
name = Runner;
|
|
208
|
-
productName = Runner;
|
|
209
|
-
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
|
|
210
|
-
productType = "com.apple.product-type.application";
|
|
211
|
-
};
|
|
212
|
-
/* End PBXNativeTarget section */
|
|
213
|
-
|
|
214
|
-
/* Begin PBXProject section */
|
|
215
|
-
97C146E61CF9000F007C117D /* Project object */ = {
|
|
216
|
-
isa = PBXProject;
|
|
217
|
-
attributes = {
|
|
218
|
-
LastUpgradeCheck = 1300;
|
|
219
|
-
ORGANIZATIONNAME = "";
|
|
220
|
-
TargetAttributes = {
|
|
221
|
-
331C8080294A63A400263BE5 = {
|
|
222
|
-
CreatedOnToolsVersion = 14.0;
|
|
223
|
-
TestTargetID = 97C146ED1CF9000F007C117D;
|
|
224
|
-
};
|
|
225
|
-
97C146ED1CF9000F007C117D = {
|
|
226
|
-
CreatedOnToolsVersion = 7.3.1;
|
|
227
|
-
LastSwiftMigration = 1100;
|
|
228
|
-
};
|
|
229
|
-
};
|
|
230
|
-
};
|
|
231
|
-
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
|
|
232
|
-
compatibilityVersion = "Xcode 9.3";
|
|
233
|
-
developmentRegion = en;
|
|
234
|
-
hasScannedForEncodings = 0;
|
|
235
|
-
knownRegions = (
|
|
236
|
-
en,
|
|
237
|
-
Base,
|
|
238
|
-
);
|
|
239
|
-
mainGroup = 97C146E51CF9000F007C117D;
|
|
240
|
-
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
|
|
241
|
-
projectDirPath = "";
|
|
242
|
-
projectRoot = "";
|
|
243
|
-
targets = (
|
|
244
|
-
97C146ED1CF9000F007C117D /* Runner */,
|
|
245
|
-
331C8080294A63A400263BE5 /* RunnerTests */,
|
|
246
|
-
);
|
|
247
|
-
};
|
|
248
|
-
/* End PBXProject section */
|
|
249
|
-
|
|
250
|
-
/* Begin PBXResourcesBuildPhase section */
|
|
251
|
-
331C807F294A63A400263BE5 /* Resources */ = {
|
|
252
|
-
isa = PBXResourcesBuildPhase;
|
|
253
|
-
buildActionMask = 2147483647;
|
|
254
|
-
files = (
|
|
255
|
-
);
|
|
256
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
257
|
-
};
|
|
258
|
-
97C146EC1CF9000F007C117D /* Resources */ = {
|
|
259
|
-
isa = PBXResourcesBuildPhase;
|
|
260
|
-
buildActionMask = 2147483647;
|
|
261
|
-
files = (
|
|
262
|
-
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
|
|
263
|
-
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
|
|
264
|
-
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
|
|
265
|
-
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
|
|
266
|
-
);
|
|
267
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
268
|
-
};
|
|
269
|
-
/* End PBXResourcesBuildPhase section */
|
|
270
|
-
|
|
271
|
-
/* Begin PBXShellScriptBuildPhase section */
|
|
272
|
-
38CECC787EBB13E287EEB472 /* [CP] Check Pods Manifest.lock */ = {
|
|
273
|
-
isa = PBXShellScriptBuildPhase;
|
|
274
|
-
buildActionMask = 2147483647;
|
|
275
|
-
files = (
|
|
276
|
-
);
|
|
277
|
-
inputFileListPaths = (
|
|
278
|
-
);
|
|
279
|
-
inputPaths = (
|
|
280
|
-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
281
|
-
"${PODS_ROOT}/Manifest.lock",
|
|
282
|
-
);
|
|
283
|
-
name = "[CP] Check Pods Manifest.lock";
|
|
284
|
-
outputFileListPaths = (
|
|
285
|
-
);
|
|
286
|
-
outputPaths = (
|
|
287
|
-
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
|
|
288
|
-
);
|
|
289
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
290
|
-
shellPath = /bin/sh;
|
|
291
|
-
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";
|
|
292
|
-
showEnvVarsInLog = 0;
|
|
293
|
-
};
|
|
294
|
-
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
|
|
295
|
-
isa = PBXShellScriptBuildPhase;
|
|
296
|
-
alwaysOutOfDate = 1;
|
|
297
|
-
buildActionMask = 2147483647;
|
|
298
|
-
files = (
|
|
299
|
-
);
|
|
300
|
-
inputPaths = (
|
|
301
|
-
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
|
|
302
|
-
);
|
|
303
|
-
name = "Thin Binary";
|
|
304
|
-
outputPaths = (
|
|
305
|
-
);
|
|
306
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
307
|
-
shellPath = /bin/sh;
|
|
308
|
-
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
|
|
309
|
-
};
|
|
310
|
-
45F9F2A93C688BF135456D5C /* [CP] Embed Pods Frameworks */ = {
|
|
311
|
-
isa = PBXShellScriptBuildPhase;
|
|
312
|
-
buildActionMask = 2147483647;
|
|
313
|
-
files = (
|
|
314
|
-
);
|
|
315
|
-
inputFileListPaths = (
|
|
316
|
-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
317
|
-
);
|
|
318
|
-
name = "[CP] Embed Pods Frameworks";
|
|
319
|
-
outputFileListPaths = (
|
|
320
|
-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
321
|
-
);
|
|
322
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
323
|
-
shellPath = /bin/sh;
|
|
324
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
|
|
325
|
-
showEnvVarsInLog = 0;
|
|
326
|
-
};
|
|
327
|
-
5EA3BEB3F6E8E445C0A18D45 /* [CP] Check Pods Manifest.lock */ = {
|
|
328
|
-
isa = PBXShellScriptBuildPhase;
|
|
329
|
-
buildActionMask = 2147483647;
|
|
330
|
-
files = (
|
|
331
|
-
);
|
|
332
|
-
inputFileListPaths = (
|
|
333
|
-
);
|
|
334
|
-
inputPaths = (
|
|
335
|
-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
336
|
-
"${PODS_ROOT}/Manifest.lock",
|
|
337
|
-
);
|
|
338
|
-
name = "[CP] Check Pods Manifest.lock";
|
|
339
|
-
outputFileListPaths = (
|
|
340
|
-
);
|
|
341
|
-
outputPaths = (
|
|
342
|
-
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
|
|
343
|
-
);
|
|
344
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
345
|
-
shellPath = /bin/sh;
|
|
346
|
-
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";
|
|
347
|
-
showEnvVarsInLog = 0;
|
|
348
|
-
};
|
|
349
|
-
9740EEB61CF901F6004384FC /* Run Script */ = {
|
|
350
|
-
isa = PBXShellScriptBuildPhase;
|
|
351
|
-
alwaysOutOfDate = 1;
|
|
352
|
-
buildActionMask = 2147483647;
|
|
353
|
-
files = (
|
|
354
|
-
);
|
|
355
|
-
inputPaths = (
|
|
356
|
-
);
|
|
357
|
-
name = "Run Script";
|
|
358
|
-
outputPaths = (
|
|
359
|
-
);
|
|
360
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
361
|
-
shellPath = /bin/sh;
|
|
362
|
-
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
|
|
363
|
-
};
|
|
364
|
-
/* End PBXShellScriptBuildPhase section */
|
|
365
|
-
|
|
366
|
-
/* Begin PBXSourcesBuildPhase section */
|
|
367
|
-
331C807D294A63A400263BE5 /* Sources */ = {
|
|
368
|
-
isa = PBXSourcesBuildPhase;
|
|
369
|
-
buildActionMask = 2147483647;
|
|
370
|
-
files = (
|
|
371
|
-
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
|
|
372
|
-
);
|
|
373
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
374
|
-
};
|
|
375
|
-
97C146EA1CF9000F007C117D /* Sources */ = {
|
|
376
|
-
isa = PBXSourcesBuildPhase;
|
|
377
|
-
buildActionMask = 2147483647;
|
|
378
|
-
files = (
|
|
379
|
-
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
|
|
380
|
-
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
|
|
381
|
-
);
|
|
382
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
383
|
-
};
|
|
384
|
-
/* End PBXSourcesBuildPhase section */
|
|
385
|
-
|
|
386
|
-
/* Begin PBXTargetDependency section */
|
|
387
|
-
331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
|
|
388
|
-
isa = PBXTargetDependency;
|
|
389
|
-
target = 97C146ED1CF9000F007C117D /* Runner */;
|
|
390
|
-
targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
|
|
391
|
-
};
|
|
392
|
-
/* End PBXTargetDependency section */
|
|
393
|
-
|
|
394
|
-
/* Begin PBXVariantGroup section */
|
|
395
|
-
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
|
|
396
|
-
isa = PBXVariantGroup;
|
|
397
|
-
children = (
|
|
398
|
-
97C146FB1CF9000F007C117D /* Base */,
|
|
399
|
-
);
|
|
400
|
-
name = Main.storyboard;
|
|
401
|
-
sourceTree = "<group>";
|
|
402
|
-
};
|
|
403
|
-
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
|
|
404
|
-
isa = PBXVariantGroup;
|
|
405
|
-
children = (
|
|
406
|
-
97C147001CF9000F007C117D /* Base */,
|
|
407
|
-
);
|
|
408
|
-
name = LaunchScreen.storyboard;
|
|
409
|
-
sourceTree = "<group>";
|
|
410
|
-
};
|
|
411
|
-
/* End PBXVariantGroup section */
|
|
412
|
-
|
|
413
|
-
/* Begin XCBuildConfiguration section */
|
|
414
|
-
249021D3217E4FDB00AE95B9 /* Profile */ = {
|
|
415
|
-
isa = XCBuildConfiguration;
|
|
416
|
-
buildSettings = {
|
|
417
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
418
|
-
CLANG_ANALYZER_NONNULL = YES;
|
|
419
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
420
|
-
CLANG_CXX_LIBRARY = "libc++";
|
|
421
|
-
CLANG_ENABLE_MODULES = YES;
|
|
422
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
|
423
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
424
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
425
|
-
CLANG_WARN_COMMA = YES;
|
|
426
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
427
|
-
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
428
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
429
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
|
430
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
431
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
432
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
|
433
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
434
|
-
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
435
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
436
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
437
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
438
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
439
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
440
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
441
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
442
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
443
|
-
COPY_PHASE_STRIP = NO;
|
|
444
|
-
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
445
|
-
ENABLE_NS_ASSERTIONS = NO;
|
|
446
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
447
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
448
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
|
449
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
450
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
451
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
452
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
453
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
454
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
455
|
-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
456
|
-
MTL_ENABLE_DEBUG_INFO = NO;
|
|
457
|
-
SDKROOT = iphoneos;
|
|
458
|
-
SUPPORTED_PLATFORMS = iphoneos;
|
|
459
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
|
460
|
-
VALIDATE_PRODUCT = YES;
|
|
461
|
-
};
|
|
462
|
-
name = Profile;
|
|
463
|
-
};
|
|
464
|
-
249021D4217E4FDB00AE95B9 /* Profile */ = {
|
|
465
|
-
isa = XCBuildConfiguration;
|
|
466
|
-
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
|
467
|
-
buildSettings = {
|
|
468
|
-
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
469
|
-
CLANG_ENABLE_MODULES = YES;
|
|
470
|
-
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
|
471
|
-
ENABLE_BITCODE = NO;
|
|
472
|
-
INFOPLIST_FILE = Runner/Info.plist;
|
|
473
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
|
474
|
-
"$(inherited)",
|
|
475
|
-
"@executable_path/Frameworks",
|
|
476
|
-
);
|
|
477
|
-
PRODUCT_BUNDLE_IDENTIFIER = sh.pyros.bibleApp;
|
|
478
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
479
|
-
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
|
480
|
-
SWIFT_VERSION = 5.0;
|
|
481
|
-
VERSIONING_SYSTEM = "apple-generic";
|
|
482
|
-
};
|
|
483
|
-
name = Profile;
|
|
484
|
-
};
|
|
485
|
-
331C8088294A63A400263BE5 /* Debug */ = {
|
|
486
|
-
isa = XCBuildConfiguration;
|
|
487
|
-
baseConfigurationReference = AE7D2B38F2CF84EAAE786903 /* Pods-RunnerTests.debug.xcconfig */;
|
|
488
|
-
buildSettings = {
|
|
489
|
-
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
490
|
-
CODE_SIGN_STYLE = Automatic;
|
|
491
|
-
CURRENT_PROJECT_VERSION = 1;
|
|
492
|
-
GENERATE_INFOPLIST_FILE = YES;
|
|
493
|
-
MARKETING_VERSION = 1.0;
|
|
494
|
-
PRODUCT_BUNDLE_IDENTIFIER = sh.pyros.bibleApp.RunnerTests;
|
|
495
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
496
|
-
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
497
|
-
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
498
|
-
SWIFT_VERSION = 5.0;
|
|
499
|
-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
|
500
|
-
};
|
|
501
|
-
name = Debug;
|
|
502
|
-
};
|
|
503
|
-
331C8089294A63A400263BE5 /* Release */ = {
|
|
504
|
-
isa = XCBuildConfiguration;
|
|
505
|
-
baseConfigurationReference = 0A2158CE3F38A3BE247CD237 /* Pods-RunnerTests.release.xcconfig */;
|
|
506
|
-
buildSettings = {
|
|
507
|
-
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
508
|
-
CODE_SIGN_STYLE = Automatic;
|
|
509
|
-
CURRENT_PROJECT_VERSION = 1;
|
|
510
|
-
GENERATE_INFOPLIST_FILE = YES;
|
|
511
|
-
MARKETING_VERSION = 1.0;
|
|
512
|
-
PRODUCT_BUNDLE_IDENTIFIER = sh.pyros.bibleApp.RunnerTests;
|
|
513
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
514
|
-
SWIFT_VERSION = 5.0;
|
|
515
|
-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
|
516
|
-
};
|
|
517
|
-
name = Release;
|
|
518
|
-
};
|
|
519
|
-
331C808A294A63A400263BE5 /* Profile */ = {
|
|
520
|
-
isa = XCBuildConfiguration;
|
|
521
|
-
baseConfigurationReference = 38877AB10A23C464B3C3C33E /* Pods-RunnerTests.profile.xcconfig */;
|
|
522
|
-
buildSettings = {
|
|
523
|
-
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
524
|
-
CODE_SIGN_STYLE = Automatic;
|
|
525
|
-
CURRENT_PROJECT_VERSION = 1;
|
|
526
|
-
GENERATE_INFOPLIST_FILE = YES;
|
|
527
|
-
MARKETING_VERSION = 1.0;
|
|
528
|
-
PRODUCT_BUNDLE_IDENTIFIER = sh.pyros.bibleApp.RunnerTests;
|
|
529
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
530
|
-
SWIFT_VERSION = 5.0;
|
|
531
|
-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
|
532
|
-
};
|
|
533
|
-
name = Profile;
|
|
534
|
-
};
|
|
535
|
-
97C147031CF9000F007C117D /* Debug */ = {
|
|
536
|
-
isa = XCBuildConfiguration;
|
|
537
|
-
buildSettings = {
|
|
538
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
539
|
-
CLANG_ANALYZER_NONNULL = YES;
|
|
540
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
541
|
-
CLANG_CXX_LIBRARY = "libc++";
|
|
542
|
-
CLANG_ENABLE_MODULES = YES;
|
|
543
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
|
544
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
545
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
546
|
-
CLANG_WARN_COMMA = YES;
|
|
547
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
548
|
-
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
549
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
550
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
|
551
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
552
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
553
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
|
554
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
555
|
-
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
556
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
557
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
558
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
559
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
560
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
561
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
562
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
563
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
564
|
-
COPY_PHASE_STRIP = NO;
|
|
565
|
-
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
566
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
567
|
-
ENABLE_TESTABILITY = YES;
|
|
568
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
569
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
|
570
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
|
571
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
|
572
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
573
|
-
"DEBUG=1",
|
|
574
|
-
"$(inherited)",
|
|
575
|
-
);
|
|
576
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
577
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
578
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
579
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
580
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
581
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
582
|
-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
583
|
-
MTL_ENABLE_DEBUG_INFO = YES;
|
|
584
|
-
ONLY_ACTIVE_ARCH = YES;
|
|
585
|
-
SDKROOT = iphoneos;
|
|
586
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
|
587
|
-
};
|
|
588
|
-
name = Debug;
|
|
589
|
-
};
|
|
590
|
-
97C147041CF9000F007C117D /* Release */ = {
|
|
591
|
-
isa = XCBuildConfiguration;
|
|
592
|
-
buildSettings = {
|
|
593
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
594
|
-
CLANG_ANALYZER_NONNULL = YES;
|
|
595
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
596
|
-
CLANG_CXX_LIBRARY = "libc++";
|
|
597
|
-
CLANG_ENABLE_MODULES = YES;
|
|
598
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
|
599
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
600
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
601
|
-
CLANG_WARN_COMMA = YES;
|
|
602
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
603
|
-
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
604
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
605
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
|
606
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
607
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
608
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
|
609
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
610
|
-
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
611
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
612
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
613
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
614
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
615
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
616
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
617
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
618
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
619
|
-
COPY_PHASE_STRIP = NO;
|
|
620
|
-
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
621
|
-
ENABLE_NS_ASSERTIONS = NO;
|
|
622
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
623
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
624
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
|
625
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
626
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
627
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
628
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
629
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
630
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
631
|
-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
632
|
-
MTL_ENABLE_DEBUG_INFO = NO;
|
|
633
|
-
SDKROOT = iphoneos;
|
|
634
|
-
SUPPORTED_PLATFORMS = iphoneos;
|
|
635
|
-
SWIFT_COMPILATION_MODE = wholemodule;
|
|
636
|
-
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
637
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
|
638
|
-
VALIDATE_PRODUCT = YES;
|
|
639
|
-
};
|
|
640
|
-
name = Release;
|
|
641
|
-
};
|
|
642
|
-
97C147061CF9000F007C117D /* Debug */ = {
|
|
643
|
-
isa = XCBuildConfiguration;
|
|
644
|
-
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
|
|
645
|
-
buildSettings = {
|
|
646
|
-
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
647
|
-
CLANG_ENABLE_MODULES = YES;
|
|
648
|
-
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
|
649
|
-
ENABLE_BITCODE = NO;
|
|
650
|
-
INFOPLIST_FILE = Runner/Info.plist;
|
|
651
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
|
652
|
-
"$(inherited)",
|
|
653
|
-
"@executable_path/Frameworks",
|
|
654
|
-
);
|
|
655
|
-
PRODUCT_BUNDLE_IDENTIFIER = sh.pyros.bibleApp;
|
|
656
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
657
|
-
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
|
658
|
-
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
659
|
-
SWIFT_VERSION = 5.0;
|
|
660
|
-
VERSIONING_SYSTEM = "apple-generic";
|
|
661
|
-
};
|
|
662
|
-
name = Debug;
|
|
663
|
-
};
|
|
664
|
-
97C147071CF9000F007C117D /* Release */ = {
|
|
665
|
-
isa = XCBuildConfiguration;
|
|
666
|
-
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
|
667
|
-
buildSettings = {
|
|
668
|
-
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
669
|
-
CLANG_ENABLE_MODULES = YES;
|
|
670
|
-
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
|
671
|
-
ENABLE_BITCODE = NO;
|
|
672
|
-
INFOPLIST_FILE = Runner/Info.plist;
|
|
673
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
|
674
|
-
"$(inherited)",
|
|
675
|
-
"@executable_path/Frameworks",
|
|
676
|
-
);
|
|
677
|
-
PRODUCT_BUNDLE_IDENTIFIER = sh.pyros.bibleApp;
|
|
678
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
679
|
-
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
|
680
|
-
SWIFT_VERSION = 5.0;
|
|
681
|
-
VERSIONING_SYSTEM = "apple-generic";
|
|
682
|
-
};
|
|
683
|
-
name = Release;
|
|
684
|
-
};
|
|
685
|
-
/* End XCBuildConfiguration section */
|
|
686
|
-
|
|
687
|
-
/* Begin XCConfigurationList section */
|
|
688
|
-
331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
|
|
689
|
-
isa = XCConfigurationList;
|
|
690
|
-
buildConfigurations = (
|
|
691
|
-
331C8088294A63A400263BE5 /* Debug */,
|
|
692
|
-
331C8089294A63A400263BE5 /* Release */,
|
|
693
|
-
331C808A294A63A400263BE5 /* Profile */,
|
|
694
|
-
);
|
|
695
|
-
defaultConfigurationIsVisible = 0;
|
|
696
|
-
defaultConfigurationName = Release;
|
|
697
|
-
};
|
|
698
|
-
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
|
|
699
|
-
isa = XCConfigurationList;
|
|
700
|
-
buildConfigurations = (
|
|
701
|
-
97C147031CF9000F007C117D /* Debug */,
|
|
702
|
-
97C147041CF9000F007C117D /* Release */,
|
|
703
|
-
249021D3217E4FDB00AE95B9 /* Profile */,
|
|
704
|
-
);
|
|
705
|
-
defaultConfigurationIsVisible = 0;
|
|
706
|
-
defaultConfigurationName = Release;
|
|
707
|
-
};
|
|
708
|
-
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
|
|
709
|
-
isa = XCConfigurationList;
|
|
710
|
-
buildConfigurations = (
|
|
711
|
-
97C147061CF9000F007C117D /* Debug */,
|
|
712
|
-
97C147071CF9000F007C117D /* Release */,
|
|
713
|
-
249021D4217E4FDB00AE95B9 /* Profile */,
|
|
714
|
-
);
|
|
715
|
-
defaultConfigurationIsVisible = 0;
|
|
716
|
-
defaultConfigurationName = Release;
|
|
717
|
-
};
|
|
718
|
-
/* End XCConfigurationList section */
|
|
719
|
-
};
|
|
720
|
-
rootObject = 97C146E61CF9000F007C117D /* Project object */;
|
|
721
|
-
}
|
ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Workspace
|
|
3
|
-
version = "1.0">
|
|
4
|
-
<FileRef
|
|
5
|
-
location = "self:">
|
|
6
|
-
</FileRef>
|
|
7
|
-
</Workspace>
|
ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>IDEDidComputeMac32BitWarning</key>
|
|
6
|
-
<true/>
|
|
7
|
-
</dict>
|
|
8
|
-
</plist>
|
ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>PreviewsEnabled</key>
|
|
6
|
-
<false/>
|
|
7
|
-
</dict>
|
|
8
|
-
</plist>
|
ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
DELETED
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Scheme
|
|
3
|
-
LastUpgradeVersion = "1300"
|
|
4
|
-
version = "1.3">
|
|
5
|
-
<BuildAction
|
|
6
|
-
parallelizeBuildables = "YES"
|
|
7
|
-
buildImplicitDependencies = "YES">
|
|
8
|
-
<BuildActionEntries>
|
|
9
|
-
<BuildActionEntry
|
|
10
|
-
buildForTesting = "YES"
|
|
11
|
-
buildForRunning = "YES"
|
|
12
|
-
buildForProfiling = "YES"
|
|
13
|
-
buildForArchiving = "YES"
|
|
14
|
-
buildForAnalyzing = "YES">
|
|
15
|
-
<BuildableReference
|
|
16
|
-
BuildableIdentifier = "primary"
|
|
17
|
-
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
|
18
|
-
BuildableName = "Runner.app"
|
|
19
|
-
BlueprintName = "Runner"
|
|
20
|
-
ReferencedContainer = "container:Runner.xcodeproj">
|
|
21
|
-
</BuildableReference>
|
|
22
|
-
</BuildActionEntry>
|
|
23
|
-
</BuildActionEntries>
|
|
24
|
-
</BuildAction>
|
|
25
|
-
<TestAction
|
|
26
|
-
buildConfiguration = "Debug"
|
|
27
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
-
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
-
<MacroExpansion>
|
|
31
|
-
<BuildableReference
|
|
32
|
-
BuildableIdentifier = "primary"
|
|
33
|
-
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
|
34
|
-
BuildableName = "Runner.app"
|
|
35
|
-
BlueprintName = "Runner"
|
|
36
|
-
ReferencedContainer = "container:Runner.xcodeproj">
|
|
37
|
-
</BuildableReference>
|
|
38
|
-
</MacroExpansion>
|
|
39
|
-
<Testables>
|
|
40
|
-
<TestableReference
|
|
41
|
-
skipped = "NO"
|
|
42
|
-
parallelizable = "YES">
|
|
43
|
-
<BuildableReference
|
|
44
|
-
BuildableIdentifier = "primary"
|
|
45
|
-
BlueprintIdentifier = "331C8080294A63A400263BE5"
|
|
46
|
-
BuildableName = "RunnerTests.xctest"
|
|
47
|
-
BlueprintName = "RunnerTests"
|
|
48
|
-
ReferencedContainer = "container:Runner.xcodeproj">
|
|
49
|
-
</BuildableReference>
|
|
50
|
-
</TestableReference>
|
|
51
|
-
</Testables>
|
|
52
|
-
</TestAction>
|
|
53
|
-
<LaunchAction
|
|
54
|
-
buildConfiguration = "Debug"
|
|
55
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
56
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
57
|
-
launchStyle = "0"
|
|
58
|
-
useCustomWorkingDirectory = "NO"
|
|
59
|
-
ignoresPersistentStateOnLaunch = "NO"
|
|
60
|
-
debugDocumentVersioning = "YES"
|
|
61
|
-
debugServiceExtension = "internal"
|
|
62
|
-
allowLocationSimulation = "YES">
|
|
63
|
-
<BuildableProductRunnable
|
|
64
|
-
runnableDebuggingMode = "0">
|
|
65
|
-
<BuildableReference
|
|
66
|
-
BuildableIdentifier = "primary"
|
|
67
|
-
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
|
68
|
-
BuildableName = "Runner.app"
|
|
69
|
-
BlueprintName = "Runner"
|
|
70
|
-
ReferencedContainer = "container:Runner.xcodeproj">
|
|
71
|
-
</BuildableReference>
|
|
72
|
-
</BuildableProductRunnable>
|
|
73
|
-
</LaunchAction>
|
|
74
|
-
<ProfileAction
|
|
75
|
-
buildConfiguration = "Profile"
|
|
76
|
-
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
77
|
-
savedToolIdentifier = ""
|
|
78
|
-
useCustomWorkingDirectory = "NO"
|
|
79
|
-
debugDocumentVersioning = "YES">
|
|
80
|
-
<BuildableProductRunnable
|
|
81
|
-
runnableDebuggingMode = "0">
|
|
82
|
-
<BuildableReference
|
|
83
|
-
BuildableIdentifier = "primary"
|
|
84
|
-
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
|
85
|
-
BuildableName = "Runner.app"
|
|
86
|
-
BlueprintName = "Runner"
|
|
87
|
-
ReferencedContainer = "container:Runner.xcodeproj">
|
|
88
|
-
</BuildableReference>
|
|
89
|
-
</BuildableProductRunnable>
|
|
90
|
-
</ProfileAction>
|
|
91
|
-
<AnalyzeAction
|
|
92
|
-
buildConfiguration = "Debug">
|
|
93
|
-
</AnalyzeAction>
|
|
94
|
-
<ArchiveAction
|
|
95
|
-
buildConfiguration = "Release"
|
|
96
|
-
revealArchiveInOrganizer = "YES">
|
|
97
|
-
</ArchiveAction>
|
|
98
|
-
</Scheme>
|
ios/Runner.xcworkspace/contents.xcworkspacedata
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Workspace
|
|
3
|
-
version = "1.0">
|
|
4
|
-
<FileRef
|
|
5
|
-
location = "group:Runner.xcodeproj">
|
|
6
|
-
</FileRef>
|
|
7
|
-
<FileRef
|
|
8
|
-
location = "group:Pods/Pods.xcodeproj">
|
|
9
|
-
</FileRef>
|
|
10
|
-
</Workspace>
|
ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>IDEDidComputeMac32BitWarning</key>
|
|
6
|
-
<true/>
|
|
7
|
-
</dict>
|
|
8
|
-
</plist>
|
ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>PreviewsEnabled</key>
|
|
6
|
-
<false/>
|
|
7
|
-
</dict>
|
|
8
|
-
</plist>
|
ios/Runner/AppDelegate.swift
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import UIKit
|
|
2
|
-
import Flutter
|
|
3
|
-
|
|
4
|
-
@UIApplicationMain
|
|
5
|
-
@objc class AppDelegate: FlutterAppDelegate {
|
|
6
|
-
override func application(
|
|
7
|
-
_ application: UIApplication,
|
|
8
|
-
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
|
9
|
-
) -> Bool {
|
|
10
|
-
GeneratedPluginRegistrant.register(with: self)
|
|
11
|
-
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
|
12
|
-
}
|
|
13
|
-
}
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
DELETED
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"images":[
|
|
3
|
-
{
|
|
4
|
-
"idiom":"iphone",
|
|
5
|
-
"size":"20x20",
|
|
6
|
-
"scale":"2x",
|
|
7
|
-
"filename":"Icon-App-20x20@2x.png"
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"idiom":"iphone",
|
|
11
|
-
"size":"20x20",
|
|
12
|
-
"scale":"3x",
|
|
13
|
-
"filename":"Icon-App-20x20@3x.png"
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"idiom":"iphone",
|
|
17
|
-
"size":"29x29",
|
|
18
|
-
"scale":"1x",
|
|
19
|
-
"filename":"Icon-App-29x29@1x.png"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"idiom":"iphone",
|
|
23
|
-
"size":"29x29",
|
|
24
|
-
"scale":"2x",
|
|
25
|
-
"filename":"Icon-App-29x29@2x.png"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"idiom":"iphone",
|
|
29
|
-
"size":"29x29",
|
|
30
|
-
"scale":"3x",
|
|
31
|
-
"filename":"Icon-App-29x29@3x.png"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"idiom":"iphone",
|
|
35
|
-
"size":"40x40",
|
|
36
|
-
"scale":"2x",
|
|
37
|
-
"filename":"Icon-App-40x40@2x.png"
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"idiom":"iphone",
|
|
41
|
-
"size":"40x40",
|
|
42
|
-
"scale":"3x",
|
|
43
|
-
"filename":"Icon-App-40x40@3x.png"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"idiom":"iphone",
|
|
47
|
-
"size":"60x60",
|
|
48
|
-
"scale":"2x",
|
|
49
|
-
"filename":"Icon-App-60x60@2x.png"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"idiom":"iphone",
|
|
53
|
-
"size":"60x60",
|
|
54
|
-
"scale":"3x",
|
|
55
|
-
"filename":"Icon-App-60x60@3x.png"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"idiom":"iphone",
|
|
59
|
-
"size":"76x76",
|
|
60
|
-
"scale":"2x",
|
|
61
|
-
"filename":"Icon-App-76x76@2x.png"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"idiom":"ipad",
|
|
65
|
-
"size":"20x20",
|
|
66
|
-
"scale":"1x",
|
|
67
|
-
"filename":"Icon-App-20x20@1x.png"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"idiom":"ipad",
|
|
71
|
-
"size":"20x20",
|
|
72
|
-
"scale":"2x",
|
|
73
|
-
"filename":"Icon-App-20x20@2x.png"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"idiom":"ipad",
|
|
77
|
-
"size":"29x29",
|
|
78
|
-
"scale":"1x",
|
|
79
|
-
"filename":"Icon-App-29x29@1x.png"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"idiom":"ipad",
|
|
83
|
-
"size":"29x29",
|
|
84
|
-
"scale":"2x",
|
|
85
|
-
"filename":"Icon-App-29x29@2x.png"
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"idiom":"ipad",
|
|
89
|
-
"size":"40x40",
|
|
90
|
-
"scale":"1x",
|
|
91
|
-
"filename":"Icon-App-40x40@1x.png"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"idiom":"ipad",
|
|
95
|
-
"size":"40x40",
|
|
96
|
-
"scale":"2x",
|
|
97
|
-
"filename":"Icon-App-40x40@2x.png"
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
"idiom":"ipad",
|
|
101
|
-
"size":"76x76",
|
|
102
|
-
"scale":"1x",
|
|
103
|
-
"filename":"Icon-App-76x76@1x.png"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"idiom":"ipad",
|
|
107
|
-
"size":"76x76",
|
|
108
|
-
"scale":"2x",
|
|
109
|
-
"filename":"Icon-App-76x76@2x.png"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"idiom":"ipad",
|
|
113
|
-
"size":"83.5x83.5",
|
|
114
|
-
"scale":"2x",
|
|
115
|
-
"filename":"Icon-App-83.5x83.5@2x.png"
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"size" : "1024x1024",
|
|
119
|
-
"idiom" : "ios-marketing",
|
|
120
|
-
"scale" : "1x",
|
|
121
|
-
"filename" : "ItunesArtwork@2x.png"
|
|
122
|
-
}
|
|
123
|
-
],
|
|
124
|
-
"info":{
|
|
125
|
-
"version":1,
|
|
126
|
-
"author":"easyappicon"
|
|
127
|
-
}
|
|
128
|
-
}
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"images" : [
|
|
3
|
-
{
|
|
4
|
-
"filename" : "background.png",
|
|
5
|
-
"idiom" : "universal",
|
|
6
|
-
"scale" : "1x"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"idiom" : "universal",
|
|
10
|
-
"scale" : "2x"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"idiom" : "universal",
|
|
14
|
-
"scale" : "3x"
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
|
-
"info" : {
|
|
18
|
-
"author" : "xcode",
|
|
19
|
-
"version" : 1
|
|
20
|
-
}
|
|
21
|
-
}
|
ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"images" : [
|
|
3
|
-
{
|
|
4
|
-
"filename" : "LaunchImage.png",
|
|
5
|
-
"idiom" : "universal",
|
|
6
|
-
"scale" : "1x"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"filename" : "LaunchImage@2x.png",
|
|
10
|
-
"idiom" : "universal",
|
|
11
|
-
"scale" : "2x"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"filename" : "LaunchImage@3x.png",
|
|
15
|
-
"idiom" : "universal",
|
|
16
|
-
"scale" : "3x"
|
|
17
|
-
}
|
|
18
|
-
],
|
|
19
|
-
"info" : {
|
|
20
|
-
"author" : "xcode",
|
|
21
|
-
"version" : 1
|
|
22
|
-
}
|
|
23
|
-
}
|
ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
# Launch Screen Assets
|
|
2
|
-
|
|
3
|
-
You can customize the launch screen with your own desired assets by replacing the image files in this directory.
|
|
4
|
-
|
|
5
|
-
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.
|
ios/Runner/Assets.xcassets/iTunesArtwork@1x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/iTunesArtwork@2x.png
DELETED
|
Binary file
|
ios/Runner/Assets.xcassets/iTunesArtwork@3x.png
DELETED
|
Binary file
|
ios/Runner/Base.lproj/LaunchScreen.storyboard
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<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">
|
|
3
|
-
<dependencies>
|
|
4
|
-
<deployment identifier="iOS"/>
|
|
5
|
-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/>
|
|
6
|
-
</dependencies>
|
|
7
|
-
<scenes>
|
|
8
|
-
<!--View Controller-->
|
|
9
|
-
<scene sceneID="EHf-IW-A2E">
|
|
10
|
-
<objects>
|
|
11
|
-
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
|
|
12
|
-
<layoutGuides>
|
|
13
|
-
<viewControllerLayoutGuide type="top" id="Ydg-fD-yQy"/>
|
|
14
|
-
<viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/>
|
|
15
|
-
</layoutGuides>
|
|
16
|
-
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
|
17
|
-
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
18
|
-
<subviews>
|
|
19
|
-
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" image="LaunchBackground" translatesAutoresizingMaskIntoConstraints="NO" id="tWc-Dq-wcI"/>
|
|
20
|
-
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4"></imageView>
|
|
21
|
-
</subviews>
|
|
22
|
-
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
|
23
|
-
<constraints>
|
|
24
|
-
<constraint firstItem="YRO-k0-Ey4" firstAttribute="leading" secondItem="Ze5-6b-2t3" secondAttribute="leading" id="3T2-ad-Qdv"/>
|
|
25
|
-
<constraint firstItem="tWc-Dq-wcI" firstAttribute="bottom" secondItem="Ze5-6b-2t3" secondAttribute="bottom" id="RPx-PI-7Xg"/>
|
|
26
|
-
<constraint firstItem="tWc-Dq-wcI" firstAttribute="top" secondItem="Ze5-6b-2t3" secondAttribute="top" id="SdS-ul-q2q"/>
|
|
27
|
-
<constraint firstAttribute="trailing" secondItem="tWc-Dq-wcI" secondAttribute="trailing" id="Swv-Gf-Rwn"/>
|
|
28
|
-
<constraint firstAttribute="trailing" secondItem="YRO-k0-Ey4" secondAttribute="trailing" id="TQA-XW-tRk"/>
|
|
29
|
-
<constraint firstItem="YRO-k0-Ey4" firstAttribute="bottom" secondItem="Ze5-6b-2t3" secondAttribute="bottom" id="duK-uY-Gun"/>
|
|
30
|
-
<constraint firstItem="tWc-Dq-wcI" firstAttribute="leading" secondItem="Ze5-6b-2t3" secondAttribute="leading" id="kV7-tw-vXt"/>
|
|
31
|
-
<constraint firstItem="YRO-k0-Ey4" firstAttribute="top" secondItem="Ze5-6b-2t3" secondAttribute="top" id="xPn-NY-SIU"/>
|
|
32
|
-
</constraints>
|
|
33
|
-
</view>
|
|
34
|
-
</viewController>
|
|
35
|
-
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
|
36
|
-
</objects>
|
|
37
|
-
<point key="canvasLocation" x="53" y="375"/>
|
|
38
|
-
</scene>
|
|
39
|
-
</scenes>
|
|
40
|
-
<resources>
|
|
41
|
-
<image name="LaunchImage" width="1024" height="1024"/>
|
|
42
|
-
<image name="LaunchBackground" width="1" height="1"/>
|
|
43
|
-
</resources>
|
|
44
|
-
</document>
|
ios/Runner/Base.lproj/Main.storyboard
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<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">
|
|
3
|
-
<dependencies>
|
|
4
|
-
<deployment identifier="iOS"/>
|
|
5
|
-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
|
|
6
|
-
</dependencies>
|
|
7
|
-
<scenes>
|
|
8
|
-
<!--Flutter View Controller-->
|
|
9
|
-
<scene sceneID="tne-QT-ifu">
|
|
10
|
-
<objects>
|
|
11
|
-
<viewController id="BYZ-38-t0r" customClass="FlutterViewController" sceneMemberID="viewController">
|
|
12
|
-
<layoutGuides>
|
|
13
|
-
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/>
|
|
14
|
-
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
|
|
15
|
-
</layoutGuides>
|
|
16
|
-
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
|
|
17
|
-
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
|
|
18
|
-
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
19
|
-
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
|
|
20
|
-
</view>
|
|
21
|
-
</viewController>
|
|
22
|
-
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
|
|
23
|
-
</objects>
|
|
24
|
-
</scene>
|
|
25
|
-
</scenes>
|
|
26
|
-
</document>
|
ios/Runner/Info.plist
DELETED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>CFBundleDevelopmentRegion</key>
|
|
6
|
-
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
|
7
|
-
<key>CFBundleDisplayName</key>
|
|
8
|
-
<string>Bible App</string>
|
|
9
|
-
<key>CFBundleExecutable</key>
|
|
10
|
-
<string>$(EXECUTABLE_NAME)</string>
|
|
11
|
-
<key>CFBundleIdentifier</key>
|
|
12
|
-
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
13
|
-
<key>CFBundleInfoDictionaryVersion</key>
|
|
14
|
-
<string>6.0</string>
|
|
15
|
-
<key>CFBundleName</key>
|
|
16
|
-
<string>bible_app</string>
|
|
17
|
-
<key>CFBundlePackageType</key>
|
|
18
|
-
<string>APPL</string>
|
|
19
|
-
<key>CFBundleShortVersionString</key>
|
|
20
|
-
<string>$(FLUTTER_BUILD_NAME)</string>
|
|
21
|
-
<key>CFBundleSignature</key>
|
|
22
|
-
<string>????</string>
|
|
23
|
-
<key>CFBundleVersion</key>
|
|
24
|
-
<string>$(FLUTTER_BUILD_NUMBER)</string>
|
|
25
|
-
<key>LSRequiresIPhoneOS</key>
|
|
26
|
-
<true/>
|
|
27
|
-
<key>UILaunchStoryboardName</key>
|
|
28
|
-
<string>LaunchScreen</string>
|
|
29
|
-
<key>UIMainStoryboardFile</key>
|
|
30
|
-
<string>Main</string>
|
|
31
|
-
<key>UISupportedInterfaceOrientations</key>
|
|
32
|
-
<array>
|
|
33
|
-
<string>UIInterfaceOrientationPortrait</string>
|
|
34
|
-
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
35
|
-
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
36
|
-
</array>
|
|
37
|
-
<key>UISupportedInterfaceOrientations~ipad</key>
|
|
38
|
-
<array>
|
|
39
|
-
<string>UIInterfaceOrientationPortrait</string>
|
|
40
|
-
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
|
41
|
-
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
42
|
-
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
43
|
-
</array>
|
|
44
|
-
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
45
|
-
<false/>
|
|
46
|
-
<key>CADisableMinimumFrameDurationOnPhone</key>
|
|
47
|
-
<true/>
|
|
48
|
-
<key>UIApplicationSupportsIndirectInputEvents</key>
|
|
49
|
-
<true/>
|
|
50
|
-
<key>UIStatusBarHidden</key>
|
|
51
|
-
<false/>
|
|
52
|
-
</dict>
|
|
53
|
-
</plist>
|
ios/Runner/Runner-Bridging-Header.h
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#import "GeneratedPluginRegistrant.h"
|
ios/RunnerTests/RunnerTests.swift
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import Flutter
|
|
2
|
-
import UIKit
|
|
3
|
-
import XCTest
|
|
4
|
-
|
|
5
|
-
class RunnerTests: XCTestCase {
|
|
6
|
-
|
|
7
|
-
func testExample() {
|
|
8
|
-
// If you add code to the Runner application, consider adding tests here.
|
|
9
|
-
// See https://developer.apple.com/documentation/xctest for more information about using XCTest.
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
}
|
lib/components/sidebar.dart
CHANGED
|
@@ -28,17 +28,20 @@ class Sidebar extends StatelessWidget {
|
|
|
28
28
|
width: 250,
|
|
29
29
|
height: height,
|
|
30
30
|
child: Container(
|
|
31
|
-
margin: const EdgeInsets.only(bottom: 50),
|
|
31
|
+
margin: const EdgeInsets.only(bottom: 50, right: 50),
|
|
32
32
|
child: Column(
|
|
33
33
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
34
|
-
crossAxisAlignment: CrossAxisAlignment.
|
|
34
|
+
crossAxisAlignment: CrossAxisAlignment.end,
|
|
35
35
|
children: [
|
|
36
36
|
Flexible(
|
|
37
|
-
child: Text("
|
|
37
|
+
child: Text("ONLY", style: theme.value.logoText),
|
|
38
38
|
),
|
|
39
39
|
Flexible(
|
|
40
40
|
child: Text("BIBLE", style: theme.value.logoText),
|
|
41
41
|
),
|
|
42
|
+
Flexible(
|
|
43
|
+
child: Text("APP", style: theme.value.logoText),
|
|
44
|
+
),
|
|
42
45
|
],
|
|
43
46
|
),
|
|
44
47
|
),
|
lib/components/tile.dart
CHANGED
|
@@ -18,7 +18,7 @@ class Tile extends StatelessWidget {
|
|
|
18
18
|
style: TextButton.styleFrom(
|
|
19
19
|
padding: EdgeInsets.zero,
|
|
20
20
|
shape: const RoundedRectangleBorder(),
|
|
21
|
-
|
|
21
|
+
elevation: 1,
|
|
22
22
|
// backgroundColor: const Color(0xFFF6F6F6),
|
|
23
23
|
backgroundColor: const Color(0xFFEAE9E9),
|
|
24
24
|
foregroundColor: const Color(0xFF9A1111),
|
lib/routes/home_screen.dart
CHANGED
|
@@ -14,8 +14,7 @@ class HomeScreen extends GoRouteData {
|
|
|
14
14
|
|
|
15
15
|
@override
|
|
16
16
|
Page buildPage(BuildContext context, GoRouterState state) {
|
|
17
|
-
final selectedBook =
|
|
18
|
-
|
|
17
|
+
final selectedBook = selectedBible.value.firstWhere((it) => book == it.name);
|
|
19
18
|
final verses = selectedBook.chapters[chapter].verses;
|
|
20
19
|
return NoTransitionPage(
|
|
21
20
|
child: Container(
|
|
@@ -27,10 +26,7 @@ class HomeScreen extends GoRouteData {
|
|
|
27
26
|
Header(book: selectedBook.index, chapter: chapter, verses: verses),
|
|
28
27
|
Flexible(
|
|
29
28
|
child: ListView.builder(
|
|
30
|
-
padding: const EdgeInsets.symmetric(
|
|
29
|
+
padding: const EdgeInsets.symmetric(vertical: 20),
|
|
31
|
-
// horizontal: 20,
|
|
32
|
-
vertical: 20,
|
|
33
|
-
),
|
|
34
30
|
itemCount: verses.length,
|
|
35
31
|
itemBuilder: (BuildContext context, int index) {
|
|
36
32
|
final v = verses[index];
|
pubspec.lock
CHANGED
|
@@ -219,13 +219,29 @@ packages:
|
|
|
219
219
|
source: hosted
|
|
220
220
|
version: "10.0.0"
|
|
221
221
|
html:
|
|
222
|
-
dependency:
|
|
222
|
+
dependency: "direct dev"
|
|
223
223
|
description:
|
|
224
224
|
name: html
|
|
225
225
|
sha256: "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a"
|
|
226
226
|
url: "https://pub.dev"
|
|
227
227
|
source: hosted
|
|
228
228
|
version: "0.15.4"
|
|
229
|
+
http:
|
|
230
|
+
dependency: "direct dev"
|
|
231
|
+
description:
|
|
232
|
+
name: http
|
|
233
|
+
sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525"
|
|
234
|
+
url: "https://pub.dev"
|
|
235
|
+
source: hosted
|
|
236
|
+
version: "1.1.0"
|
|
237
|
+
http_parser:
|
|
238
|
+
dependency: transitive
|
|
239
|
+
description:
|
|
240
|
+
name: http_parser
|
|
241
|
+
sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
|
|
242
|
+
url: "https://pub.dev"
|
|
243
|
+
source: hosted
|
|
244
|
+
version: "4.0.2"
|
|
229
245
|
image:
|
|
230
246
|
dependency: transitive
|
|
231
247
|
description:
|
pubspec.yaml
CHANGED
|
@@ -25,6 +25,8 @@ dev_dependencies:
|
|
|
25
25
|
integration_test:
|
|
26
26
|
sdk: flutter
|
|
27
27
|
flutter_lints: ^2.0.0
|
|
28
|
+
html: ^0.15.4
|
|
29
|
+
http: ^1.1.0
|
|
28
30
|
|
|
29
31
|
flutter:
|
|
30
32
|
|
scripts/scrape.dart
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import 'dart:convert'; // Contains the JSON encoder
|
|
2
|
+
import 'package:http/http.dart'; // Contains a client for making API calls
|
|
3
|
+
import 'package:html/parser.dart'; // Contains HTML parsers to generate a Document object
|
|
4
|
+
|
|
5
|
+
void main() async {
|
|
6
|
+
var client = Client();
|
|
7
|
+
Response response = await client.get(Uri.parse('https://www.wordproject.org/bibles/kn/02/2.htm'));
|
|
8
|
+
var document = parse(utf8.decode(response.bodyBytes));
|
|
9
|
+
for (var (index, node) in document.getElementById('textBody')!.children[2].nodes.indexed) {
|
|
10
|
+
print(index);
|
|
11
|
+
print(node);
|
|
12
|
+
}
|
|
13
|
+
}
|