Advertisement
Guest User

Untitled

a guest
Dec 8th, 2017
525
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 26
  5. defaultConfig {
  6. applicationId 'ai.inbi.wonderful_face_recognition_robot'
  7. minSdkVersion 19
  8. targetSdkVersion 26
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. /* externalNativeBuild {
  13. cmake {
  14. cppFlags "-frtti -fexceptions"
  15. abiFilters 'x86', 'armeabi', 'armeabi-v7a', 'mips'
  16. //abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'arm64-v8a', 'mips', 'mips64'
  17. }
  18. }*/
  19. }
  20. sourceSets.main {
  21. jniLibs.srcDir 'libs'
  22. }
  23.  
  24.  
  25.  
  26. buildTypes {
  27. release {
  28. minifyEnabled false
  29. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  30. }
  31. }
  32. /*externalNativeBuild {
  33. cmake {
  34. path "CMakeLists.txt"
  35. }
  36. }*/
  37. productFlavors {
  38. }
  39. }
  40.  
  41. repositories {
  42. flatDir {
  43. dirs 'libs'
  44. }
  45. }
  46.  
  47. buildscript {
  48. repositories {
  49. mavenCentral()
  50. }
  51. dependencies {
  52. classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
  53. }
  54. }
  55.  
  56.  
  57. dependencies {
  58. implementation fileTree(dir: 'libs', include: ['*.jar'])
  59. implementation 'com.android.support:appcompat-v7:26.1.0'
  60. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  61. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  62. exclude group: 'com.android.support', module: 'support-annotations'
  63. })
  64. testCompile 'junit:junit:4.12'
  65. //compile project(':openCVLibrary300')
  66. compile 'com.koushikdutta.async:androidasync:2.1.7'
  67.  
  68. compile(name:'QihanOpenSDK_1.1.8.0', ext:'aar')
  69. compile 'com.jakewharton:butterknife:8.5.1'
  70. annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement