mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 11:07:10 -05:00 
			
		
		
		
	* add additional request headers * improve interface * move headers under advanced settings * refactor * refactor --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			378 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			378 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
.PHONY: build watch create_app_icon create_splash build_release_android
 | 
						|
 | 
						|
build:
 | 
						|
	dart run build_runner build --delete-conflicting-outputs
 | 
						|
 | 
						|
watch:
 | 
						|
	dart run build_runner watch --delete-conflicting-outputs
 | 
						|
 | 
						|
create_app_icon:
 | 
						|
	flutter pub run flutter_launcher_icons:main
 | 
						|
 | 
						|
create_splash:
 | 
						|
	flutter pub run flutter_native_splash:create
 | 
						|
 | 
						|
build_release_android:
 | 
						|
	flutter build appbundle
 |