Projekt Schafkopfpunktezähler: Erster Prototyp einer App, die dem Benutzer die Notwendigkeit des Punktezählens beim Schafkopfspiel abnimmt.
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 1007B

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 27
  4. defaultConfig {
  5. applicationId "project.schafkopfzaehler_2"
  6. minSdkVersion 19
  7. targetSdkVersion 26
  8. versionCode 1
  9. versionName "1.0"
  10. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. implementation 'com.android.support:appcompat-v7:27.1.1'
  21. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  22. implementation 'com.android.support:design:27.1.1'
  23. implementation 'com.squareup.retrofit2:retrofit:2.5.0'
  24. implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
  25. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  26. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  27. }