Tools icon indicating copy to clipboard operation
Tools copied to clipboard

Ruby gem

Open rahlusmorsi opened this issue 5 years ago • 2 comments

I see you've setup a Ruby gemspec for agora_dynamic_key and have referenced rubygems. Do you have plans in the near future to publish this gem there? If it should already be there, I am unable to locate it.

Screen Shot 2020-05-05 at 5 11 15 PM

rahlusmorsi avatar May 05 '20 22:05 rahlusmorsi

I published the gem using this source code https://rubygems.org/gems/agora_dynamic_key

Usage example: https://gist.github.com/abelorian/200696537b8b4e1bee5ac2caeb7f624a

abelorian avatar Jun 10 '20 17:06 abelorian

They don't have maven packages for Java too. It's quite hard to manage them by hand and copy them. I also need to copy and load one Agora library using LD_LIBRARY_PATH and this is also cumbersome to manage. So this one will make it two as I'll need to build this one as well. :(

I want to standartize my process and forget about low level details but there wasn't enough effort to do it easy for devs to use these libraries.

Invertisment avatar Mar 22 '21 10:03 Invertisment

@Invertisment SDK can be obtained automatically via Maven's dependency management by adding the following configuration in the application's Project Object Model (POM) file:

<dependency>
    <groupId>io.agora</groupId>
    <artifactId>authentication</artifactId>
    <version>2.0.0</version>
</dependency>

sunshinexcode avatar May 31 '24 08:05 sunshinexcode