build.gradle 1023 B

1234567891011121314151617181920212223242526272829303132333435
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 27
  4. defaultConfig {
  5. applicationId "com.amitshekhar.tflite"
  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. aaptOptions {
  19. noCompress "tflite"
  20. noCompress "lite"
  21. }
  22. }
  23. dependencies {
  24. implementation fileTree(dir: 'libs', include: ['*.jar'])
  25. implementation 'com.android.support:appcompat-v7:27.1.0'
  26. compile 'com.wonderkiln:camerakit:0.13.1'
  27. compile 'org.tensorflow:tensorflow-lite:+'
  28. testImplementation 'junit:junit:4.12'
  29. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  30. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  31. }