-1

How can i use these given below libraries in eclipse. No jar file is found when i extract these zip files. Are these can only be used with android studio ?

https://github.com/ReactiveX/RxJava

https://github.com/square/sqlbrite

Thanks.

Muhammad Irfan
  • 1,447
  • 4
  • 26
  • 56
  • 1
    You can use Ivy or Gradle plugins in Eclipse and use their dependency management capabilities in your project. They will download all necessary files. – akarnokd May 21 '15 at 16:46
  • why someone has given me -1 even though if it is so basic question. I will put bounty on it. – Muhammad Irfan May 21 '15 at 18:19

2 Answers2

2

Variants:

  1. Clone and build jars yourself -> attach to the project.
  2. Go to maven central and download jars: RxJava, SqlBrite.
  3. Switch to Gradle + Android Studio or use Maven/Ivy in Eclipse or other IDE.
Artem Zinnatullin
  • 4,305
  • 1
  • 29
  • 43
0

I use Android Studio. I add the following to the dependencies in module build.gradle, then like @akarnokd said, the IDE downloads it automatically.

compile 'com.squareup.sqlbrite:sqlbrite:0.2.1'

candy
  • 190
  • 1
  • 5