You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def flutter_root
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), FILE)
unless File.exist?(generated_xcode_build_settings_path)
raise "#{generated_xcode_build_settings_path} must exist. Run flutter pub get"
end
File.foreach(generated_xcode_build_settings_path) do |line|
matches = line.match(/FLUTTER_ROOT=(.*)/)
return matches[1].strip if matches
end
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end
target 'Runner' do
use_frameworks! :linkage => :static
use_modular_headers!
Firebase ve AdMob SDK sürümleri
pod 'Firebase/Auth', '11.13.0'
pod 'Firebase/Core', '11.13.0'
pod 'Firebase/Firestore', '11.13.0'
pod 'Firebase/Messaging', '11.13.0'
pod 'Google-Mobile-Ads-SDK', '~> 12.2.0'
flutter_install_all_ios_pods(File.dirname(File.realpath(FILE)))
end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['SWIFT_VERSION'] = '5.0'
end
end
ObjC bağımlılıkları için linker ayarı
installer.pods_project.build_configurations.each do |config|
config.build_settings['OTHER_LDFLAGS'] = '$(inherited) -ObjC'
end
end
name: voicememoai
description: "A new Flutter project."
publish_to: 'none'
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
import UIKit
import Flutter
import FirebaseCore
import GoogleMobileAds
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
}
}
platform :ios, '13.0'
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}
FLUTTER_ROOT yolunu doğru biçimde bul
def flutter_root
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), FILE)
unless File.exist?(generated_xcode_build_settings_path)
raise "#{generated_xcode_build_settings_path} must exist. Run flutter pub get"
end
File.foreach(generated_xcode_build_settings_path) do |line|
matches = line.match(/FLUTTER_ROOT=(.*)/)
return matches[1].strip if matches
end
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end
Flutter Pod Helper dosyasını çağır
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
target 'Runner' do
use_frameworks! :linkage => :static
use_modular_headers!
Firebase ve AdMob SDK sürümleri
pod 'Firebase/Auth', '11.13.0'
pod 'Firebase/Core', '11.13.0'
pod 'Firebase/Firestore', '11.13.0'
pod 'Firebase/Messaging', '11.13.0'
pod 'Google-Mobile-Ads-SDK', '~> 12.2.0'
flutter_install_all_ios_pods(File.dirname(File.realpath(FILE)))
end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
ObjC bağımlılıkları için linker ayarı
installer.pods_project.build_configurations.each do |config|
config.build_settings['OTHER_LDFLAGS'] = '$(inherited) -ObjC'
end
end
name: voicememoai
description: "A new Flutter project."
publish_to: 'none'
version: 1.0.0+1
environment:
sdk: ">=3.8.0 <4.0.0"
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.8
google_fonts: ^6.2.1
particles_flutter: ^1.0.1
flutter_svg: ^2.1.0
record: ^6.0.0
speech_to_text: ^7.0.0
permission_handler: ^12.0.0+1
stop_watch_timer: ^3.2.2
audio_waveforms: ^1.3.0
firebase_core: ^3.14.0
cloud_firestore: ^5.6.8
firebase_auth: ^5.5.4
uuid: ^4.5.1
shared_preferences: ^2.5.3
intl: ^0.20.2
share_plus: ^11.0.0
path_provider: ^2.1.5
cross_file: ^0.3.4+2
flutter_localization: ^0.3.2
google_mobile_ads: ^6.0.0
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^5.0.0
flutter_launcher_icons: ^0.13.1
flutter:
uses-material-design: true
assets:
- assets/background.svg
- assets/logo.png
- assets/pause.png
- assets/play-button.png
- assets/stop.png
- assets/notebook.png
- assets/watch.png
- assets/save.png
- assets/delete.png
- assets/mic.json
- assets/share.png
flutter_icons:
ios: true
android: false
image_path: "assets/logo.png"
Beta Was this translation helpful? Give feedback.
All reactions