This commit is contained in:
Lizandro Guarnizo
2024-05-21 10:26:19 -05:00
parent 8b34e7d12d
commit e27955d671
23 changed files with 1103 additions and 396 deletions
+1 -1
View File
@@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>11.0</string>
<string>12.0</string>
</dict>
</plist>
+38
View File
@@ -0,0 +1,38 @@
<?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>CLIENT_ID</key>
<string>245204384533-nv7e2n7d4vj5kfkc55mlmiiju0ch2qhn.apps.googleusercontent.com</string>
<key>REVERSED_CLIENT_ID</key>
<string>com.googleusercontent.apps.245204384533-nv7e2n7d4vj5kfkc55mlmiiju0ch2qhn</string>
<key>ANDROID_CLIENT_ID</key>
<string>245204384533-04oabs744hp8fjbdreijp4h16nvfmeti.apps.googleusercontent.com</string>
<key>API_KEY</key>
<string>AIzaSyDUhnkNkeEPkqcwVo5EWr63q3oEX6bDGic</string>
<key>GCM_SENDER_ID</key>
<string>245204384533</string>
<key>PLIST_VERSION</key>
<string>1</string>
<key>BUNDLE_ID</key>
<string>com.example.prosappco</string>
<key>PROJECT_ID</key>
<string>prosapp-5747a</string>
<key>STORAGE_BUCKET</key>
<string>prosapp-5747a.appspot.com</string>
<key>IS_ADS_ENABLED</key>
<false></false>
<key>IS_ANALYTICS_ENABLED</key>
<false></false>
<key>IS_APPINVITE_ENABLED</key>
<true></true>
<key>IS_GCM_ENABLED</key>
<true></true>
<key>IS_SIGNIN_ENABLED</key>
<true></true>
<key>GOOGLE_APP_ID</key>
<string>1:245204384533:ios:1d58f5624d0df4859f871c</string>
<key>DATABASE_URL</key>
<string>https://prosapp-5747a-default-rtdb.firebaseio.com</string>
</dict>
</plist>
+1 -1
View File
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
platform :ios, '11.0'
platform :ios, '12.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
+659 -304
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -165,7 +165,7 @@
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1430;
LastUpgradeCheck = 1510;
ORGANIZATIONNAME = "";
TargetAttributes = {
97C146ED1CF9000F007C117D = {
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1430"
LastUpgradeVersion = "1510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
+3 -1
View File
@@ -1,6 +1,7 @@
import UIKit
import Flutter
import GoogleMaps
import Firebase
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
@@ -8,6 +9,7 @@ import GoogleMaps
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
FirebaseApp.configure()
GeneratedPluginRegistrant.register(with: self)
// Inicializa Google Maps SDK para iOS con tu clave de API de Google Maps
@@ -15,4 +17,4 @@ import GoogleMaps
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}
}
+14 -1
View File
@@ -78,6 +78,19 @@
<key>aps-environment</key>
<string>development</string>
<key>FirebaseAppDelegateProxyEnabled</key>
<string>NO</string>
<false/>
<key>NSLocalNotificationsUsageDescription</key>
<string>¡La aplicación te enviará notificaciones locales para mantenerte informado!</string>
<key>NSRemoteNotificationsUsageDescription</key>
<string>¡La aplicación te enviará notificaciones remotas para mantenerte informado!</string>
<key>UIUserNotificationTypes</key>
<string>(UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound)</string>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
<false/>
<key>UISceneConfigurations</key>
<dict/>
</dict>
</dict>
</plist>