Vanalite 3f62c96cd0 feat: Init mobile app from current Tauri framework
Feat:
- Using Tauri framework by default
- Add new configuration to initiate mobile app and its command for dev
- Add dependencies needed for mobile build
Test:
- Confirm to be built successfully
2025-09-15 19:47:08 +07:00

22 lines
593 B
Ruby

# Uncomment the next line to define a global platform for your project
target 'jan-mobile_iOS' do
platform :ios, '13.0'
# Pods for jan-mobile_iOS
end
target 'jan-mobile_macOS' do
platform :osx, '11.0'
# Pods for jan-mobile_macOS
end
# Delete the deployment target for iOS and macOS, causing it to be inherited from the Podfile
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
config.build_settings.delete 'MACOSX_DEPLOYMENT_TARGET'
end
end
end