build.gradle 558 B

12345678910111213141516171819202122232425
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.3"
  5. defaultConfig {
  6. minSdkVersion 19
  7. targetSdkVersion 29
  8. versionCode 1
  9. versionName "1.1.0"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. //proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. implementation files('libs/facesdk.jar')
  20. implementation files('libs/baidu_license.jar')
  21. api files('libs/ast.jar')
  22. }