Skip to content

Instantly share code, notes, and snippets.

@rohandalvi
Last active August 29, 2015 14:19
Show Gist options
  • Save rohandalvi/fac326fa326b588442ad to your computer and use it in GitHub Desktop.
Save rohandalvi/fac326fa326b588442ad to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "rohandalvi.com.find"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'LICENSE.txt'
}
}
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile files('build/google-places-api-java.jar')
compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment