This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def change_deployment_target(installer) | |
installer.pods_project.targets.each do |target| | |
target.build_configurations.each do |config| | |
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 11.0 | |
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0' | |
end | |
end | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
@main | |
struct MyApp: App { | |
var body: some Scene { | |
WindowGroup { | |
Text("SwiftUI\n完全に理解した") | |
.overlay { | |
Path(UIBezierPath(roundedRect: CGRect( | |
x: -60, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/react-native-sqlite-storage/react-native.config.js b/node_modules/react-native-sqlite-storage/react-native.config.js | |
index dc150a9..7dcf0ef 100644 | |
--- a/node_modules/react-native-sqlite-storage/react-native.config.js | |
+++ b/node_modules/react-native-sqlite-storage/react-native.config.js | |
@@ -1,9 +1,7 @@ | |
module.exports = { | |
dependency: { | |
platforms: { | |
- ios: { | |
- project: './platforms/ios/SQLite.xcodeproj' |