build.gradle 1012 B

12345678910111213141516171819202122232425262728293031
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 27
  4. defaultConfig {
  5. applicationId "de.tu_darmstadt.informatik.tk.olir"
  6. minSdkVersion 15
  7. targetSdkVersion 27
  8. versionCode 1
  9. versionName "1.0"
  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. }
  18. }
  19. dependencies {
  20. implementation 'com.android.support:design:27.1.0'
  21. compile project(':aFileChooser')
  22. compile fileTree(include: ['*.jar'], dir: 'libs')
  23. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  24. exclude group: 'com.android.support', module: 'support-annotations'
  25. })
  26. compile 'com.android.support:appcompat-v7:27.1.0'
  27. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  28. testCompile 'junit:junit:4.12'
  29. }