Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. repositories {
  4. jcenter()
  5. maven { url 'https://maven.fabric.io/public' }
  6. }
  7.  
  8. android {
  9. compileSdkVersion 23
  10. buildToolsVersion "23.1.0"
  11.  
  12. useLibrary 'org.apache.http.legacy'
  13.  
  14. defaultConfig {
  15. applicationId ""
  16. minSdkVersion 11
  17. targetSdkVersion 23
  18. }
  19.  
  20. lintOptions {
  21. abortOnError false
  22. }
  23.  
  24. signingConfigs {
  25. release {
  26. storeFile file("./ceflixKeyStore")
  27. storePassword ""
  28. keyAlias ""
  29. keyPassword ""
  30. }
  31. }
  32.  
  33. buildTypes {
  34. release {
  35. signingConfig signingConfigs.release
  36. minifyEnabled false
  37. proguardFiles getDefaultProguardFile('proguard-project.txt'), 'proguard-rules.txt'
  38. }
  39. }
  40. }
  41.  
  42. dependencies {
  43. compile project(':volley')
  44. compile project(':viewpagerindicator')
  45. compile 'com.android.support:appcompat-v7:23.+'
  46. compile 'com.google.code.gson:gson:2.5'
  47. compile 'com.google.android.gms:play-services:6.5.+'
  48. compile 'com.android.support:design:23.+'
  49. compile 'com.android.support:cardview-v7:23.+'
  50. compile 'com.android.support:recyclerview-v7:23.+'
  51. compile files('libs/httpmime-4.2-beta1.jar')
  52. compile('com.twitter.sdk.android:twitter:1.6.0@aar') {
  53. transitive = true;
  54. }
  55. compile('com.twitter.sdk.android:tweet-ui:1.2.0@aar') {
  56. transitive = true;
  57. }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement