Newer
Older
music / app / build.gradle
@lukas lukas on 16 Aug 2022 1 KB add chord view
  1. plugins {
  2. id 'com.android.application'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5.  
  6. android {
  7. compileSdk 32
  8.  
  9. defaultConfig {
  10. applicationId "com.lukas.music"
  11. minSdk 26
  12. targetSdk 32
  13. versionCode 1
  14. versionName "1.0"
  15.  
  16. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  17. externalNativeBuild {
  18. cmake {
  19. cppFlags ''
  20. }
  21. }
  22. }
  23.  
  24. buildTypes {
  25. release {
  26. minifyEnabled false
  27. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  28. }
  29. }
  30. compileOptions {
  31. sourceCompatibility JavaVersion.VERSION_1_8
  32. targetCompatibility JavaVersion.VERSION_1_8
  33. }
  34. kotlinOptions {
  35. jvmTarget = '1.8'
  36. }
  37. externalNativeBuild {
  38. cmake {
  39. path file('src/main/cpp/CMakeLists.txt')
  40. version '3.18.1'
  41. }
  42. }
  43. buildFeatures {
  44. viewBinding true
  45. }
  46. }
  47.  
  48. dependencies {
  49.  
  50. implementation 'androidx.core:core-ktx:1.7.0'
  51. implementation 'androidx.appcompat:appcompat:1.3.0'
  52. implementation 'com.google.android.material:material:1.6.1'
  53. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  54. implementation 'androidx.gridlayout:gridlayout:1.0.0'
  55. testImplementation 'junit:junit:4.13.2'
  56. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  57. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  58. }