build.gradle 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 16
  8. targetSdkVersion 25
  9. versionCode 2
  10. versionName "2.0"
  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. }
  23. dependencies {
  24. compile fileTree(dir: 'libs', include: ['*.jar'])
  25. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  26. exclude group: 'com.android.support', module: 'support-annotations'
  27. })
  28. compile 'com.android.support:appcompat-v7:25.3.1'
  29. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  30. compile 'com.android.volley:volley:1.0.0'
  31. compile 'com.android.support:support-core-utils:25.3.1'
  32. compile 'com.android.support:design:25.3.1'
  33. compile 'com.google.code.gson:gson:2.8.0'
  34. // compile 'com.github.wseemann:FFmpegMediaMetadataRetriever:1.0.14'
  35. testCompile 'junit:junit:4.12'
  36. }