Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. apply plugin: 'kotlin-android'
  4.  
  5. apply plugin: 'kotlin-android-extensions'
  6.  
  7. android {
  8. compileSdkVersion 29
  9. buildToolsVersion "29.0.1"
  10. defaultConfig {
  11. applicationId "com.junga.socketio_android"
  12. minSdkVersion 22
  13. targetSdkVersion 29
  14. versionCode 1
  15. versionName "1.0"
  16. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  17. }
  18. buildTypes {
  19. release {
  20. minifyEnabled false
  21. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  22. }
  23. }
  24. }
  25.  
  26. dependencies {
  27. implementation fileTree(dir: 'libs', include: ['*.jar'])
  28. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  29. implementation 'androidx.appcompat:appcompat:1.0.2'
  30. implementation 'androidx.core:core-ktx:1.0.2'
  31. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  32. testImplementation 'junit:junit:4.12'
  33. androidTestImplementation 'androidx.test:runner:1.2.0'
  34. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  35.  
  36.  
  37. //Added
  38. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  39. implementation 'com.google.code.gson:gson:2.8.5'
  40. implementation "org.jetbrains.anko:anko:0.10.8"
  41.  
  42. //Socket.io
  43. implementation('io.socket:socket.io-client:1.0.0') {
  44. exclude group: 'org.json', module: 'json'
  45. }
  46.  
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement