build.gradle 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 34
  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. kotlinOptions {
  30. jvmTarget = '1.8'
  31. }
  32. buildFeatures {
  33. compose true
  34. }
  35. composeOptions {
  36. kotlinCompilerExtensionVersion '1.5.1'
  37. }
  38. packaging {
  39. resources {
  40. excludes += '/META-INF/{AL2.0,LGPL2.1}'
  41. }
  42. }
  43. }
  44. dependencies {
  45. implementation 'androidx.core:core-ktx:1.12.0'
  46. implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
  47. implementation 'androidx.activity:activity-compose:1.7.0'
  48. implementation platform('androidx.compose:compose-bom:2023.08.00')
  49. implementation 'androidx.compose.ui:ui'
  50. implementation 'androidx.compose.ui:ui-graphics'
  51. implementation 'androidx.compose.ui:ui-tooling-preview'
  52. implementation 'androidx.compose.material3:material3'
  53. testImplementation 'junit:junit:4.13.2'
  54. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  55. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  56. androidTestImplementation platform('androidx.compose:compose-bom:2023.08.00')
  57. androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
  58. debugImplementation 'androidx.compose.ui:ui-tooling'
  59. debugImplementation 'androidx.compose.ui:ui-test-manifest'
  60. implementation project(':cli')
  61. }