mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-11-04 08:43:52 +01:00 
			
		
		
		
	
		
			Some checks are pending
		
		
	
	Android CI / Run tests and generate APK (push) Waiting to run
				
			* chore: migrate groovy build files to Kotlin DSL and upgrade AGP chore: use version catalog to manage dependencies chore: move plugins to version catalog remove deprecated way of enabling build-config and redundant code chore: setup triplet-play plugin configuration refactor: move dependency block and tasks to the end of build file refactor: move dependency block and mark redundant dependencies * cleanup: remove redundant dependencies from build file * cleanup: remove git utils file as the functions moved to build file --------- Co-authored-by: Nicolas Raoul <nicolas.raoul@gmail.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			493 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			493 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
// Top-level build file where you can add configuration options common to all sub-projects/modules.
 | 
						|
plugins {
 | 
						|
    alias(libs.plugins.android.application) apply false
 | 
						|
    alias(libs.plugins.jetbrains.kotlin.android) apply false
 | 
						|
    alias(libs.plugins.github.triplet.play) apply false
 | 
						|
    alias(libs.plugins.getkeepsafe.dexcount)
 | 
						|
}
 | 
						|
 | 
						|
subprojects{
 | 
						|
    tasks.withType<Test>().configureEach {
 | 
						|
        jvmArgs = (jvmArgs ?: emptyList()) + listOf("--add-opens=java.base/java.lang=ALL-UNNAMED")
 | 
						|
    }
 | 
						|
} |