build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 26
  4. defaultConfig {
  5. applicationId "com.noa.realtime"
  6. minSdkVersion 16
  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 fileTree(dir: 'libs', include: ['*.jar'])
  21. implementation 'com.android.support:appcompat-v7:26.1.0'
  22. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  23. testImplementation 'junit:junit:4.12'
  24. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  25. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  26. compile 'com.github.kevinsawicki:http-request:6.0'
  27. compile 'com.tylerjroach:eventsource:1.2.11'
  28. compile 'com.google.code.gson:gson:2.2.4'
  29. }