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.

build.gradle 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.3"
  5. defaultConfig {
  6. applicationId "com.example.meinwald"
  7. minSdkVersion 16
  8. targetSdkVersion 29
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. implementation fileTree(dir: "libs", include: ["*.jar"])
  22. implementation 'androidx.appcompat:appcompat:1.2.0'
  23. implementation 'com.google.android.material:material:1.2.0'
  24. implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
  25. implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
  26. implementation 'androidx.navigation:navigation-fragment:2.3.0'
  27. implementation 'androidx.navigation:navigation-ui:2.3.0'
  28. implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
  29. implementation 'com.google.firebase:firebase-database:19.3.0'
  30. implementation 'com.android.volley:volley:1.1.1'
  31. implementation 'com.google.firebase:firebase-messaging:20.2.0'
  32. implementation 'com.google.android.gms:play-services-maps:17.0.0'
  33. implementation 'com.google.android.libraries.places:places:2.2.0'
  34. testImplementation 'junit:junit:4.12'
  35. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  36. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  37. compile 'com.google.maps.android:android-maps-utils:0.6.2'
  38. }