| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | 
							- plugins {
 
-     id("com.android.application") version BuildPluginsVersion.AGP apply false
 
-     id("com.android.library") version BuildPluginsVersion.AGP apply false
 
-     kotlin("android") version BuildPluginsVersion.KOTLIN apply false
 
-     id("org.jlleitschuh.gradle.ktlint") version BuildPluginsVersion.KTLINT
 
-     id("com.github.ben-manes.versions") version BuildPluginsVersion.VERSIONS_PLUGIN
 
- }
 
- allprojects {
 
-     repositories {
 
-         google()
 
-         maven { setUrl("https://www.jitpack.io") }
 
-         maven { setUrl("https://plugins.gradle.org/m2/") }
 
-         jcenter()
 
-     }
 
- }
 
- subprojects {
 
-     apply {
 
-         plugin("org.jlleitschuh.gradle.ktlint")
 
-     }
 
-     ktlint {
 
-         debug.set(false)
 
-         version.set(Versions.KTLINT)
 
-         verbose.set(true)
 
-         android.set(false)
 
-         outputToConsole.set(true)
 
-         ignoreFailures.set(false)
 
-         enableExperimentalRules.set(true)
 
-         filter {
 
-             exclude("**/generated/**")
 
-             include("**/kotlin/**")
 
-         }
 
-     }
 
- }
 
- buildscript {
 
-     dependencies {
 
-         classpath("com.github.zellius:android-shortcut-gradle-plugin:0.1.2")
 
-         classpath("com.google.gms:google-services:4.3.3")
 
-         classpath("com.jaredsburrows:gradle-license-plugin:0.8.80")
 
-     }
 
-     repositories {
 
-         google()
 
-         jcenter()
 
-     }
 
- }
 
- tasks.register("clean", Delete::class) {
 
-     delete(rootProject.buildDir)
 
- }
 
 
  |