build.gradle 447 B

12345678910111213141516171819202122
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 25
  4. defaultConfig {
  5. minSdkVersion 15
  6. targetSdkVersion 25
  7. }
  8. buildTypes {
  9. release {
  10. minifyEnabled false
  11. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  12. }
  13. }
  14. }
  15. dependencies {
  16. api fileTree(dir: 'libs', include: ['*.jar'])
  17. api project(path: ':faceplatform-release')
  18. }