Skip to content

vkusenko/SignalR-Client-Android

Repository files navigation

SignalR Client For Android

Android SignalR Client for Asp.Net Core SignalR server

Samples

https://github.com/vkusenko/SignalR-Client-Android/tree/master/app

How to use

The first way

  1. download this repo
  2. import module "aspnetsignalr" to project
  3. add module "aspnetsignalr" to the app dependencies
  • implementation project(':aspnetsignalr')

The second way

  1. download *.aar file from aars directory
  2. copy to libs directory in your project
  3. put code to Top level Gradle file
allprojects {
   repositories {
       google()
       jcenter()
       // For module with aar file in it
       flatDir {
           dirs 'libs'
       }
   }
}
  1. add module "aspnetsignalr" to the app dependencies
  • implementation(name: 'aspnetsignalr-1*', ext: 'aar')
  1. add module "aspnetsignalr" dependencies to the app dependencies
  • implementation 'org.java-websocket:Java-WebSocket:1.3.8*'
  • implementation 'com.google.code.gson:gson:2.8.5*'

About

Android SignalR Client for Asp.Net Core SignalR server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages