Advertisement
Guest User

build.gradle

a guest
Aug 21st, 2014
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.08 KB | None | 0 0
  1. buildscript {
  2.     repositories {
  3.         mavenCentral()
  4.     }
  5.     dependencies {
  6.         classpath 'com.android.tools.build:gradle:0.12.2'
  7.     }
  8. }
  9. apply plugin: 'android'
  10.  
  11. repositories {
  12.     mavenCentral()
  13.     maven { url 'http://JRAF.org/static/maven/2' }
  14. }
  15.  
  16. android {
  17.     compileSdkVersion 19
  18.     buildToolsVersion '19.1.0'
  19.  
  20.     defaultConfig {
  21.         minSdkVersion 14
  22.         targetSdkVersion 19
  23.     }
  24.  
  25.     productFlavors {
  26.         x86 {
  27.             ndk {
  28.                 abiFilter "x86"
  29.             }
  30.         }
  31.         arm {
  32.             ndk {
  33.                 abiFilters "armeabi-v7a", "armeabi"
  34.             }
  35.         }
  36.         fat
  37.     }
  38. }
  39.  
  40. dependencies {
  41.     // Support Libraries
  42.     compile fileTree(dir: 'libs', include: '*.jar')
  43.     compile 'com.android.support:support-v13:20.0.0'
  44.     compile 'com.android.support:support-v4:20.0.0'
  45.     compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
  46.     compile 'com.github.chrisbanes.actionbarpulltorefresh:extra-abs:0.9.9'
  47.     compile project(':CountryPicker')
  48.     compile project(':mp-framework-and')
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement