build.gradle 1.4 KB

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