0

I downloaded the git hub for gdax-java to my MacBook.

I don’t see any .jar file or a .aar file to import into my android studio app

There is no gradle dependency listed in the repository

How do I use this api in my android studio app?

I even tried ./gradlew jar and I get this error Could not target platform: 'Java SE 11' using tool chain: 'JDK 8 (1.8)'.

Why is this so difficult to implement?

Dean-O
  • 1,143
  • 4
  • 18
  • 35
  • Does this answer your question? [Implementation of gdax-java as a library](https://stackoverflow.com/questions/45787085/implementation-of-gdax-java-as-a-library) – Morrison Chang Nov 20 '20 at 02:36
  • I tried that too and I get Could not target platform: 'Java SE 11' using tool chain: 'JDK 8 (1.8)'. – Dean-O Nov 20 '20 at 13:08

1 Answers1

0

Here is what I had to do. https://dzone.com/articles/installing-openjdk-11-on-macos

Then the steps of ./gradlew build and ./gradlew jar worked and I could add the jar to the libs folder following these steps. How to add a jar in External Libraries in android studio

It would be nice if the ./gradlew steps would be indicated in the github

Dean-O
  • 1,143
  • 4
  • 18
  • 35