Skip to content

Instantly share code, notes, and snippets.

@hwchong
Created October 26, 2015 02:32
Show Gist options
  • Select an option

  • Save hwchong/8c9d11d59cb899aea49d to your computer and use it in GitHub Desktop.

Select an option

Save hwchong/8c9d11d59cb899aea49d to your computer and use it in GitHub Desktop.

Revisions

  1. Hon Weng Chong created this gist Oct 26, 2015.
    22 changes: 22 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    // Top-level build file where you can add configuration options common to all sub-projects/modules.
    buildscript {
    ext.kotlin_version = '1.0.0-beta-1038'
    ext.app_compat_version = "23.1.0"
    ext.anko_version = "0.7.2"
    repositories {
    jcenter()
    }
    dependencies {
    classpath 'com.android.tools.build:gradle:1.3.0'
    // 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
    }