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>
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
pluginManagement {
 | 
						|
    repositories {
 | 
						|
        google()
 | 
						|
        mavenCentral()
 | 
						|
        gradlePluginPortal()
 | 
						|
    }
 | 
						|
}
 | 
						|
dependencyResolutionManagement {
 | 
						|
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
 | 
						|
    repositories {
 | 
						|
        google()
 | 
						|
        mavenCentral()
 | 
						|
        maven("https://jitpack.io")
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
include(":app")
 |