mirror of
				https://github.com/InsanusMokrassar/MicroUtils.git
				synced 2025-11-03 21:51:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			360 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			360 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
plugins {
 | 
						|
    id "org.jetbrains.kotlin.multiplatform"
 | 
						|
    id "org.jetbrains.kotlin.plugin.serialization"
 | 
						|
    id "com.android.library"
 | 
						|
}
 | 
						|
 | 
						|
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64Project"
 | 
						|
 | 
						|
kotlin {
 | 
						|
    sourceSets {
 | 
						|
        commonMain {
 | 
						|
            dependencies {
 | 
						|
                api project(":micro_utils.colors.common")
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |