build.gradle 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. plugins {
  2. id 'com.android.application'
  3. id 'com.google.gms.google-services'
  4. }
  5. android {
  6. namespace 'com.example.programingquiz'
  7. compileSdk 32
  8. defaultConfig {
  9. applicationId "com.example.programingquiz"
  10. minSdk 23
  11. targetSdk 32
  12. versionCode 1
  13. versionName "1.0"
  14. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26. }
  27. dependencies {
  28. implementation platform('com.google.firebase:firebase-bom:31.1.1')
  29. implementation 'com.google.android.gms:play-services-auth:20.4.0'
  30. implementation 'com.android.volley:volley:1.2.1'
  31. implementation 'com.google.firebase:firebase-auth'
  32. implementation 'androidx.appcompat:appcompat:1.5.1'
  33. implementation 'com.google.firebase:firebase-analytics'
  34. implementation 'androidx.appcompat:appcompat:1.5.1'
  35. implementation 'com.google.android.material:material:1.7.0'
  36. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  37. testImplementation 'junit:junit:4.13.2'
  38. androidTestImplementation 'androidx.test.ext:junit:1.1.4'
  39. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
  40. }