build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. externalNativeBuild {
  12. cmake {
  13. cppFlags '-std=c++11 -frtti -fexceptions -lz'
  14. abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
  15. }
  16. }
  17. }
  18. buildTypes {
  19. release {
  20. minifyEnabled true
  21. proguardFiles 'proguard-rules.pro'
  22. }
  23. }
  24. buildFeatures {
  25. buildConfig = false
  26. }
  27. lintOptions {
  28. abortOnError false
  29. }
  30. repositories {
  31. flatDir {
  32. dirs 'libs'
  33. }
  34. }
  35. dexOptions {
  36. preDexLibraries = false
  37. }
  38. externalNativeBuild {
  39. cmake {
  40. path "CMakeLists.txt"
  41. }
  42. }
  43. }
  44. dependencies {
  45. implementation "org.jetbrains.kotlin:kotlin-stdlib:$KOTLIN_VERSION"
  46. implementation 'androidx.core:core-ktx:1.3.2'
  47. }