Advertisement
Guest User

Untitled

a guest
May 9th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.27 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 28
  5.     defaultConfig {
  6.         applicationId "de.uni.due.abrc"
  7.         minSdkVersion 27
  8.         targetSdkVersion 28
  9.         versionCode 1
  10.         versionName "1.0"
  11.         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12.     }
  13.     buildTypes {
  14.         release {
  15.             minifyEnabled false
  16.             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17.         }
  18.     }
  19.     compileOptions {
  20.         sourceCompatibility = '1.8'
  21.         targetCompatibility = '1.8'
  22.     }
  23. }
  24.  
  25. dependencies {
  26.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  27.     implementation 'com.android.support:appcompat-v7:28.0.0'
  28.     implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  29.     testImplementation 'junit:junit:4.12'
  30.     testImplementation 'org.junit.jupiter:junit-jupiter-api:5.2.0'
  31.     androidTestImplementation 'com.android.support.test:runner:1.0.2'
  32.     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  33.     implementation project(":abrclib")
  34.     implementation 'io.github.controlwear:virtualjoystick:1.10.1'
  35.     implementation 'com.smartbotkit:serial-android:1.0.0-SNAPSHOT'
  36.  
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement