Skip to content

Instantly share code, notes, and snippets.

@rohandalvi
Created April 21, 2015 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rohandalvi/044b0e636aa6a4f17eed to your computer and use it in GitHub Desktop.
Save rohandalvi/044b0e636aa6a4f17eed to your computer and use it in GitHub Desktop.
App gradle file
apply plugin: 'com.android.application'
android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.example.dalvir.find"
minSdkVersion 15
targetSdkVersion 20
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile files('src/main/google-places-api-java.jar')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment