mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 11:07:10 -05:00 
			
		
		
		
	* chore(mobile): upgrade flutter sdk * gha * update kotlin * refactor * ios build * remove patch files * not touching openapi pubpsec file
		
			
				
	
	
		
			24 lines
		
	
	
		
			437 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			437 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
allprojects {
 | 
						|
    ext.kotlin_version = '1.9.24' 
 | 
						|
 | 
						|
    repositories {
 | 
						|
        google()
 | 
						|
        mavenCentral()
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
rootProject.buildDir = '../build'
 | 
						|
subprojects {
 | 
						|
    project.buildDir = "${rootProject.buildDir}/${project.name}"
 | 
						|
}
 | 
						|
subprojects {
 | 
						|
    project.evaluationDependsOn(':app')
 | 
						|
}
 | 
						|
 | 
						|
tasks.register("clean", Delete) {
 | 
						|
    delete rootProject.buildDir
 | 
						|
}
 | 
						|
 | 
						|
tasks.named('wrapper') {
 | 
						|
    distributionType = Wrapper.DistributionType.ALL
 | 
						|
} |