mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:29:32 -05:00 
			
		
		
		
	* adds onboarding * fixed error where login was taking you to permission page * fixed a bad rebase and added more checks to not start backup service on login if no gallery permission * forgot the permission handler import in AppDelegate * reverts album selection page * change to ref watch * added device_info_plus to podspec * removed unused import --------- Co-authored-by: Marty Fuhry <marty@fuhry.farm>
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Swift
		
	
	
	
	
	
import UIKit
 | 
						|
import shared_preferences_foundation
 | 
						|
import Flutter
 | 
						|
import BackgroundTasks
 | 
						|
import path_provider_ios
 | 
						|
import photo_manager
 | 
						|
import permission_handler_apple
 | 
						|
 | 
						|
@UIApplicationMain
 | 
						|
@objc class AppDelegate: FlutterAppDelegate {
 | 
						|
    
 | 
						|
  override func application(
 | 
						|
    _ application: UIApplication,
 | 
						|
    didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
 | 
						|
  ) -> Bool {
 | 
						|
 | 
						|
      GeneratedPluginRegistrant.register(with: self)
 | 
						|
      BackgroundServicePlugin.registerBackgroundProcessing()
 | 
						|
 | 
						|
      BackgroundServicePlugin.register(with: self.registrar(forPlugin: "BackgroundServicePlugin")!)
 | 
						|
            
 | 
						|
      BackgroundServicePlugin.setPluginRegistrantCallback { registry in
 | 
						|
          if !registry.hasPlugin("org.cocoapods.path-provider-ios") {
 | 
						|
              FLTPathProviderPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.path-provider-ios")!)
 | 
						|
          }
 | 
						|
          
 | 
						|
          if !registry.hasPlugin("org.cocoapods.photo-manager") {
 | 
						|
              PhotoManagerPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.photo-manager")!)
 | 
						|
          }
 | 
						|
          
 | 
						|
          if !registry.hasPlugin("org.cocoapods.shared-preferences-foundation") {
 | 
						|
              SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.shared-preferences-foundation")!)
 | 
						|
          }
 | 
						|
 | 
						|
          if !registry.hasPlugin("org.cocoapods.permission-handler-apple") {
 | 
						|
              PermissionHandlerPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.permission-handler-apple")!)
 | 
						|
          }
 | 
						|
      }
 | 
						|
      
 | 
						|
      return super.application(application, didFinishLaunchingWithOptions: launchOptions)
 | 
						|
  }
 | 
						|
    
 | 
						|
}
 |