Online employee's attendance system
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.4 KiB

1 year ago
1 year ago
  1. plugins {
  2. id 'com.android.application'
  3. id 'org.jetbrains.kotlin.android'
  4. id 'com.google.gms.google-services'
  5. }
  6. android {
  7. namespace 'com.example.attendance'
  8. compileSdk 33
  9. defaultConfig {
  10. applicationId "com.example.attendance"
  11. minSdk 24
  12. targetSdk 33
  13. versionCode 1
  14. versionName "1.0"
  15. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  16. }
  17. buildTypes {
  18. release {
  19. minifyEnabled false
  20. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  21. }
  22. }
  23. compileOptions {
  24. sourceCompatibility JavaVersion.VERSION_1_8
  25. targetCompatibility JavaVersion.VERSION_1_8
  26. }
  27. kotlinOptions {
  28. jvmTarget = '1.8'
  29. }
  30. }
  31. dependencies {
  32. implementation 'androidx.core:core-ktx:1.7.0'
  33. implementation 'androidx.appcompat:appcompat:1.6.1'
  34. implementation 'com.google.android.material:material:1.8.0'
  35. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  36. implementation 'com.google.firebase:firebase-auth-ktx:21.0.3'
  37. implementation 'com.google.firebase:firebase-database-ktx:20.1.0'
  38. testImplementation 'junit:junit:4.13.2'
  39. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  40. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  41. implementation 'de.hdodenhof:circleimageview:3.1.0'
  42. }