Skip to content

Instantly share code, notes, and snippets.

@ddewaele
Last active December 21, 2015 08:39
Show Gist options
  • Select an option

  • Save ddewaele/6279491 to your computer and use it in GitHub Desktop.

Select an option

Save ddewaele/6279491 to your computer and use it in GitHub Desktop.

Screenshot :

Project overview :

Gradle file :

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.5.+'
    }
}
apply plugin: 'android'

repositories {
    mavenCentral()
}

android {
    compileSdkVersion 17
    buildToolsVersion "17.0.0"

    defaultConfig {
        minSdkVersion 7
        targetSdkVersion 17
    }
}

dependencies {
    compile 'com.android.support:support-v4:18.0.0'
    compile 'com.google.android.gms:play-services:3.1.36'

}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment