Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 28
  5. defaultConfig {
  6. applicationId "unipd.se18.ocrcamera"
  7. minSdkVersion 21
  8. targetSdkVersion 28
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12.  
  13. javaCompileOptions {
  14. annotationProcessorOptions {
  15. includeCompileClasspath false
  16. }
  17. }
  18. }
  19. buildTypes {
  20. release {
  21. minifyEnabled false
  22. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  23. }
  24. }
  25.  
  26. //Start - For android testing
  27. testOptions {
  28. unitTests.returnDefaultValues = true
  29. }
  30. //End - For android testing
  31. }
  32.  
  33. dependencies {
  34. implementation fileTree(dir: 'libs', include: ['*.jar'])
  35. implementation 'com.android.support:appcompat-v7:28.0.0'
  36. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  37. testImplementation 'junit:junit:4.12'
  38. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  39. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  40.  
  41. //for json testing
  42. testImplementation 'org.json:json:20140107'
  43.  
  44. implementation 'com.google.firebase:firebase-core:16.0.4'
  45. implementation 'com.google.firebase:firebase-ml-vision:18.0.1'
  46. implementation 'com.android.support:design:28.0.0'
  47.  
  48. //for Levenshtein string comparison
  49. implementation 'info.debatty:java-string-similarity:1.1.0'
  50.  
  51. //CameraKIt dependencies
  52. implementation 'com.camerakit:camerakit:1.0.0-beta3.9'
  53. implementation 'com.camerakit:jpegkit:0.1.0'
  54. implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.61'
  55. implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:0.24.0'
  56.  
  57. //for csv parsing
  58. implementation "com.opencsv:opencsv:4.4"
  59.  
  60. //for automatic text correction
  61. implementation 'com.github.universal-automata:liblevenshtein:3.0.0'
  62.  
  63. //FTP dependencies
  64. implementation 'commons-net:commons-net:3.6'
  65. }
  66. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement