mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:39:37 -05:00 
			
		
		
		
	* fix: exclude albums filter in backup provider * refactor: Separate builder methods for Top Control App Bar buttons * fix: Show download button only for Remote only assets * fix(mobile): Force Refresh duration is too low to trigger it consistently * feat(mobile): Make Buttons dynamic in Home Selection DraggableScrollableSheet * feat(mobile): Manual Asset upload * refactor(mobile): Replace _showToast with ImmichToast calls * refactor(mobile): home_page selectionAssetState handling * chore(mobile): min and initial size of DraggableScrollState increased This is to prevent the buttons in the bottom sheet getting clipped behind the 3 way navigation buttons in the default density of Android devices * feat(mobile): notifications for manual upload progress * wording --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.8 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 {
 | 
						|
 | 
						|
      // Required for flutter_local_notification
 | 
						|
      if #available(iOS 10.0, *) {
 | 
						|
        UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
 | 
						|
      }
 | 
						|
 | 
						|
      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)
 | 
						|
  }
 | 
						|
    
 | 
						|
}
 |