EWTD

build_app

Feb 9th, 2024
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1.  
  2. plugins {
  3. id 'com.android.application'
  4. id 'org.jetbrains.kotlin.android'
  5. id 'kotlin-kapt'
  6. id 'androidx.navigation.safeargs.kotlin'
  7. id 'kotlin-parcelize'
  8. }
  9.  
  10. android {
  11. compileSdk 32
  12.  
  13. defaultConfig {
  14. applicationId "com.example.calculator"
  15. minSdk 21
  16. targetSdk 32
  17. versionCode 1
  18. versionName "1.0"
  19.  
  20. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  21. }
  22.  
  23. buildTypes {
  24. release {
  25. minifyEnabled false
  26. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  27. }
  28. }
  29. compileOptions {
  30. sourceCompatibility JavaVersion.VERSION_1_8
  31. targetCompatibility JavaVersion.VERSION_1_8
  32. }
  33. kotlinOptions {
  34. jvmTarget = '1.8'
  35. }
  36. }
  37.  
  38. dependencies {
  39.  
  40. implementation 'androidx.core:core-ktx:1.7.0'
  41. implementation 'androidx.appcompat:appcompat:1.4.2'
  42. implementation 'com.google.android.material:material:1.6.1'
  43. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  44. implementation 'net.objecthunter:exp4j:0.4.8'
  45. testImplementation 'junit:junit:4.13.2'
  46. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  47. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  48.  
  49. }
  50.  
  51. dependencies {
  52.  
  53. implementation 'androidx.core:core-ktx:1.7.0'
  54. implementation 'androidx.appcompat:appcompat:1.4.2'
  55. implementation 'com.google.android.material:material:1.6.1'
  56. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  57. implementation 'net.objecthunter:exp4j:0.4.8'
  58. testImplementation 'junit:junit:4.13.2'
  59. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  60. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  61. }
Add Comment
Please, Sign In to add comment