mirror of
https://github.com/LightningMcK/schafkopfzaehler.git
synced 2025-03-19 05:04:21 +00:00
- Realized with retrofit: * added api interface * Created POJO-Class to convert JSON Answer - Connection and sending to server works - TODO: * Wait for server to answer (lab set up takes way too long) * Get response and show it to user
28 lines
546 B
Groovy
28 lines
546 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.2.1'
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|