build.gradle 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. plugins {
  2. id 'com.android.application'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5. android {
  6. namespace 'com.eastpolar.hookcli'
  7. compileSdk 34
  8. defaultConfig {
  9. applicationId "com.eastpolar.hookcli"
  10. minSdk 24
  11. targetSdk 29
  12. versionCode 1
  13. versionName "1.0"
  14. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  15. vectorDrawables {
  16. useSupportLibrary true
  17. }
  18. }
  19. buildTypes {
  20. release {
  21. minifyEnabled false
  22. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  23. }
  24. }
  25. compileOptions {
  26. sourceCompatibility JavaVersion.VERSION_1_8
  27. targetCompatibility JavaVersion.VERSION_1_8
  28. }
  29. packagingOptions {
  30. jniLibs {
  31. useLegacyPackaging = true
  32. }
  33. }
  34. kotlinOptions {
  35. jvmTarget = '1.8'
  36. }
  37. buildFeatures {
  38. compose true
  39. }
  40. composeOptions {
  41. kotlinCompilerExtensionVersion '1.5.1'
  42. }
  43. packaging {
  44. resources {
  45. excludes += '/META-INF/{AL2.0,LGPL2.1}'
  46. }
  47. }
  48. }
  49. dependencies {
  50. implementation 'androidx.core:core-ktx:1.12.0'
  51. implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
  52. implementation 'androidx.activity:activity-compose:1.7.0'
  53. implementation platform('androidx.compose:compose-bom:2023.08.00')
  54. implementation 'androidx.compose.ui:ui'
  55. implementation 'androidx.compose.ui:ui-graphics'
  56. implementation 'androidx.compose.ui:ui-tooling-preview'
  57. implementation 'androidx.compose.material3:material3'
  58. testImplementation 'junit:junit:4.13.2'
  59. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  60. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  61. androidTestImplementation platform('androidx.compose:compose-bom:2023.08.00')
  62. androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
  63. debugImplementation 'androidx.compose.ui:ui-tooling'
  64. debugImplementation 'androidx.compose.ui:ui-test-manifest'
  65. implementation project(':cli')
  66. }