Skip to content

Instantly share code, notes, and snippets.

@tmack8001
Last active August 29, 2015 14:06
Show Gist options
  • Save tmack8001/f04c8857a3eafaa2b4ce to your computer and use it in GitHub Desktop.
Save tmack8001/f04c8857a3eafaa2b4ce to your computer and use it in GitHub Desktop.
Include com.github.amlcurran.showcaseview:library:5.0.0
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 'android-L'
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.tmack.sermonstream"
minSdkVersion 'L'
targetSdkVersion 'L'
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
// You must install or update the Support Repository through the SDK manager to use this dependency.
compile 'com.android.support:support-v4:20.0.0'
compile 'com.android.support:appcompat-v7:20.0.0'
compile 'com.android.support:mediarouter-v7:18.0.0'
// include picasso for image loading, maybe switch out for volley later
compile 'com.squareup.picasso:picasso:2.3.2'
// include ShowcaseView
compile 'com.github.amlcurran.showcaseview:library:5.0.0' // also tried 5.1.0-SNAPSHOT
compile 'com.google.android.gms:play-services:5.2.08'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment