2
0

build.gradle 953 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. compileSdkVersion 29
  6. // buildToolsVersion "30.0.2"
  7. defaultConfig {
  8. minSdkVersion 22
  9. targetSdkVersion 29
  10. versionCode 1
  11. versionName "1.0"
  12. }
  13. buildTypes {
  14. // release {
  15. // minifyEnabled false
  16. // proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. // buildConfigField 'boolean', 'USE_AIKL', 'true'
  18. // }
  19. // debug {
  20. // debuggable true
  21. // jniDebuggable true
  22. // buildConfigField 'boolean', 'USE_AIKL', 'true'
  23. // }
  24. }
  25. compileOptions {
  26. sourceCompatibility JavaVersion.VERSION_1_8
  27. targetCompatibility JavaVersion.VERSION_1_8
  28. }
  29. namespace 'com.baidu.idl.main.facesdk.facesdkbrary'
  30. }
  31. dependencies {
  32. implementation fileTree(dir: "libs", include: ["*.jar"])
  33. api project(path: ':modules:facelibrary')
  34. }