This project is inspired by the really cool google-play-scraper node projejct.
It is purly written in Java and uses JavaRx and Retrofit.
Add it as dependency. Fist add the repository and then the compile dependeny:
repositories {
mavenCentral()
maven { url "https://raw.githubusercontent.com/joecks/google-play-scraper-java/master/release/" }
}
compile 'de.halfreal.googleplayscraper:googleplayscraper-java:1.0.2'
GooglePlayApi api = new GooglePlayApi();
api.search("Clipboard Actions", "en", "us", 3)
.onNext(/** Do something on the next list**/);
Scraps google play for 60 search results in 3 queries:
Observable<List<App>> list = search("Clipboard Actions", "en", "us", 3);