Sendet
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.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdkVersion 30
  6. buildToolsVersion "30.0.3"
  7. defaultConfig {
  8. applicationId "com.example.erdbebensender"
  9. minSdkVersion 29
  10. targetSdkVersion 30
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. compileOptions {
  22. sourceCompatibility JavaVersion.VERSION_1_8
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. }
  25. }
  26. dependencies {
  27. compileOnly "org.projectlombok:lombok:1.18.20"
  28. implementation 'androidx.appcompat:appcompat:1.3.0'
  29. implementation 'com.google.android.material:material:1.3.0'
  30. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  31. implementation 'androidx.navigation:navigation-fragment:2.3.5'
  32. implementation 'androidx.navigation:navigation-ui:2.3.5'
  33. testImplementation 'junit:junit:4.+'
  34. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  35. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  36. implementation 'com.android.volley:volley:1.2.0'
  37. }