Reputation: 969
I develope a litte Android Application for SDK 22+
Now I want to use a API to a website.
The API is written in Java and use maven for build.
I am absolutly new in maven.
Is there a way to use the maven api in my gradle based android studio project?
I'm testing since two days to import this api, but without success.
UPDATE 1
The API I want to use is the api-themoviedb
I want to use SDK 22 because of the apache HttpClient support.
I tried to merge the api with my project. But I didnt had success.
Upvotes: 1
Views: 42
Reputation: 3274
In your build.gradle for your app, add
compile 'com.omertron:themoviedbapi:4.0'
Upvotes: 1