build.gradle 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion "25.0.3"
  5. defaultConfig {
  6. applicationId "community.peers.internetradio"
  7. minSdkVersion 14
  8. targetSdkVersion 25
  9. versionCode 3
  10. versionName '2.1'
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. debug {
  19. debuggable true
  20. }
  21. }
  22. productFlavors {
  23. }
  24. lintOptions {
  25. disable 'MissingTranslation'
  26. }
  27. }
  28. dependencies {
  29. compile fileTree(include: ['*.jar'], dir: 'libs')
  30. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  31. exclude group: 'com.android.support', module: 'support-annotations'
  32. })
  33. compile 'com.android.support:appcompat-v7:25.3.1'
  34. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  35. compile 'com.android.volley:volley:1.0.0'
  36. compile 'com.android.support:support-core-utils:25.3.1'
  37. compile 'com.android.support:design:25.3.1'
  38. compile 'com.google.code.gson:gson:2.8.0'
  39. // compile 'com.github.wseemann:FFmpegMediaMetadataRetriever:1.0.14'
  40. testCompile 'junit:junit:4.12'
  41. }