build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. plugins {
  2. id 'com.android.library'
  3. id 'kotlin-android'
  4. }
  5. android {
  6. compileSdkVersion COMPILE_SDK_VERSION
  7. buildToolsVersion BUILD_TOOLS_VERSION
  8. defaultConfig {
  9. minSdkVersion MIN_SDK_VERSION
  10. targetSdkVersion TARGET_SDK_VERSION
  11. if (COMMON_LIB_DEV_ENABLE) {
  12. externalNativeBuild {
  13. cmake {
  14. cppFlags '-std=c++11 -frtti -fexceptions -lz'
  15. abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
  16. }
  17. }
  18. }
  19. }
  20. buildTypes {
  21. release {
  22. minifyEnabled MINIFY_ENABLE
  23. proguardFiles 'proguard-rules.pro'
  24. }
  25. }
  26. ndkVersion NDK_VERSION
  27. buildFeatures {
  28. buildConfig = false
  29. }
  30. lintOptions {
  31. abortOnError false
  32. }
  33. repositories {
  34. flatDir {
  35. dirs 'libs'
  36. }
  37. }
  38. dexOptions {
  39. preDexLibraries = false
  40. }
  41. if (COMMON_LIB_DEV_ENABLE) {
  42. externalNativeBuild {
  43. cmake {
  44. path "CMakeLists.txt"
  45. }
  46. }
  47. }
  48. }
  49. dependencies {
  50. implementation 'androidx.core:core-ktx:1.3.2'
  51. }