Skip to content

Instantly share code, notes, and snippets.

@MarkJr94
Created April 5, 2014 23:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarkJr94/9999334 to your computer and use it in GitHub Desktop.
Save MarkJr94/9999334 to your computer and use it in GitHub Desktop.
Android studio probs
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion '19.0.1'
defaultConfig {
minSdkVersion 14
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
debuggable true
packageNameSuffix 'com.meetclover.app'
}
debug {
debuggable true
jniDebugBuild false
runProguard false
packageNameSuffix 'com.meetclover.app'
}
}
}
repositories {
maven { url 'http://clinker.47deg.com/nexus/content/groups/public' }
}
dependencies {
compile 'com.android.support:support-v4:+'
compile 'com.android.support:support-v13:+'
compile 'com.google.android.gms:play-services:4.3.+'
compile 'com.github.castorflex.verticalviewpager:library:19.0.1'
compile 'de.timroes.android:EnhancedListView:0.3.2@aar'
compile ('com.fortysevendeg.swipelistview:swipelistview:1.0-SNAPSHOT@aar') {
transitive = true
}
compile files('libs/socialauth-android-3.1.jar')
compile files('libs/socialauth-4.4.jar')
compile files('libs/Parse-1.3.9.jar')
compile files('libs/gson-2.2.4.jar')
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
}
allprojects {
repositories {
mavenCentral()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment