Skip to content
Snippets Groups Projects
Select Git revision
  • c8ff04616cd3f6d0cb8d34ca1dbd6c0eabf68733
  • master default
  • patch-1
3 results

build.gradle

Blame
  • Forked from Android 2017 / OD-System
    Source project has a limited visibility.
    build.gradle 567 B
    // Top-level build file where you can add configuration options common to all sub-projects/modules.
    
    buildscript {
        repositories {
            jcenter()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:2.2.3'
            classpath 'com.google.gms:google-services:3.0.0' // Firebase
    
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }
    }
    
    allprojects {
        repositories {
            jcenter()
        }
    }
    
    task clean(type: Delete) {
        delete rootProject.buildDir
    }