Skip to content

Instantly share code, notes, and snippets.

@Rayjax
Created March 15, 2016 10:36
Show Gist options
  • Save Rayjax/c2043e776cc58495cd55 to your computer and use it in GitHub Desktop.
Save Rayjax/c2043e776cc58495cd55 to your computer and use it in GitHub Desktop.

Revisions

  1. Rayjax created this gist Mar 15, 2016.
    30 changes: 30 additions & 0 deletions build.gradle
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,30 @@
    apply plugin: 'com.android.application'
    apply plugin: 'com.google.gms.google-services'

    android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
    applicationId "com.example.andrea.blank_test"
    minSdkVersion 15
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
    }
    buildTypes {
    release {
    minifyEnabled false
    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
    }
    }

    dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.2.0'
    compile 'com.android.support:design:23.2.0'
    compile 'com.google.android.gms:play-services:8.3.0'
    compile 'com.google.maps.android:android-maps-utils:+'
    }