justin2000

Untitled

Oct 28th, 2015
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.33 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 22
  5.     buildToolsVersion "22.0.1"
  6.  
  7.     defaultConfig {
  8.         applicationId "com.naman.materiox"
  9.         minSdkVersion 15
  10.         targetSdkVersion 22
  11.         versionCode 1
  12.         versionName "1.0"
  13.     }
  14.     buildTypes {
  15.         release {
  16.             minifyEnabled false
  17.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18.         }
  19.     }
  20. }
  21.  
  22. repositories {
  23.     maven { url "https://jitpack.io" }
  24. }
  25. dependencies {
  26.     compile fileTree(include: ['*.jar'], dir: 'libs')
  27.     compile('com.mikepenz:materialdrawer:3.0.5@aar') {
  28.         transitive = true
  29.     }
  30.     compile 'com.android.support:appcompat-v7:22.+@aar'
  31.     compile 'com.android.support:support-v4:22.+@aar'
  32.     compile 'com.android.support:cardview-v7:22.+@aar'
  33.     compile 'com.android.support:palette-v7:22.+@aar'
  34.     compile 'com.android.support:recyclerview-v7:22.+@aar'
  35.     compile 'com.afollestad:material-dialogs:0.7.4.1'
  36.     compile 'com.melnykov:floatingactionbutton:1.3.0'
  37.     compile 'com.balysv:material-ripple:1.0.1'
  38.     compile 'com.squareup.picasso:picasso:2.5.2'
  39.     compile 'com.squareup.okhttp:okhttp:2.3.0'
  40.     compile 'com.squareup.okhttp:okhttp-urlconnection:2.3.0'
  41.     compile 'com.google.android.apps.muzei:muzei-api:2.0'
  42. }
Advertisement
Add Comment
Please, Sign In to add comment