build.gradle 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (c) 2018.
  3. *
  4. * This file is part of MovieDB.
  5. *
  6. * MovieDB is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * MovieDB is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with MovieDB. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. apply plugin: 'com.android.application'
  20. android {
  21. compileSdkVersion 25
  22. buildToolsVersion '27.0.3'
  23. defaultConfig {
  24. applicationId "org.notabug.lifeuser.moviedb"
  25. minSdkVersion 15
  26. targetSdkVersion 25
  27. versionCode 211
  28. versionName "2.1.1"
  29. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  30. }
  31. buildTypes {
  32. release {
  33. minifyEnabled false
  34. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  35. }
  36. }
  37. }
  38. dependencies {
  39. implementation fileTree(include: ['*.jar'], dir: 'libs')
  40. androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
  41. exclude group: 'com.android.support', module: 'support-annotations'
  42. })
  43. implementation 'com.android.support:appcompat-v7:25.4.0'
  44. implementation 'com.android.support:design:25.4.0'
  45. implementation 'com.squareup.picasso:picasso:2.71828'
  46. implementation 'com.android.support:cardview-v7:25.4.0'
  47. implementation 'com.android.support:recyclerview-v7:25.4.0'
  48. implementation 'com.android.support:percent:25.4.0'
  49. implementation 'de.hdodenhof:circleimageview:2.2.0'
  50. implementation 'com.android.support:support-v4:25.4.0'
  51. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  52. implementation 'org.apmem.tools:layouts:1.10@aar'
  53. testImplementation 'junit:junit:4.12'
  54. }