SyncMarket
You can manage your application's version update or get your market information more simply.
This Library used Jsoup.
Including in your project
build.gradle
repositories {
mavenCentral() // or jcenter() works as well
}
dependencies {
compile 'com.skydoves.syncmarket:syncmarket:1.0.6'
}
or Maven
<dependency>
<groupId>com.skydoves.syncmarket</groupId>
<artifactId>syncmarket</artifactId>
<version>1.0.6</version> </dependency>
Usage
Permission
Need below permissions in AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
Initialize
Next you have to call initialize method as below as follows
SyncMarket.init(this);
Useage
and then use like this using rx
TextView tv_ver = (TextView)findViewById(R.id.tv_ver);
SyncMarket.getVersionObservable()
.subscribe(ver -> tv_ver.setText(ver));
Note
If you call "get...()" Method, then return your published app's information from Google Play Store.
From : https://play.google.com/store/apps/details?id= + (packageName)
If your application is not published yet or not connected internet, then return string none or do nothing.
Method list
SyncMarket.getVersionObservable();
// emit the last published version from Google Play Store
SyncMarket.getDownloadsObservable();
// emit downloads range from Google Play Store
SyncMarket.getRecentChangesObservable();
// emit the last published date from Google Play Store as string array
SyncMarket.getDownloadsObservable();
// emit require minimum device api level from Google Play Store
SyncMarket.getPublishedDateObservable();
// emit the last published date from Google Play Store
SyncMarket.getMarketUrl();
// get application's google playstore url
SyncMarket.gotoMarket();
// intent your application's Google Play Store Page
SyncMarket.isNetworkAvailable();
// check is network is available?
// you don't have to call this method if you called init method. but you can set and testing. SyncMarket.setPackageName(String s);
SyncMarket.setTimeout();
// you can set networking timeout.
Proguard rules for release
-keep public class org.jsoup.** {
public *;
}
License
The MIT License (MIT) Copyright (c) 2017 skydoves Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.