You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RxMagneto 2 brings some breaking changes from version 1. The entire library is re-written using RxJava 2. All the Observables are now changed into Singles, so there will be some re-work for you. You also do NOT need to perform these operations in the background thread as it is automatically done for you.
43
+
44
+
The core functionality of the library remains the same. Every feature in the new version of this library works in the same way and returns the same result as the previous version.
Gets the verified Play Store URL of the specified package. You can NOT make this call in the main thread of the application.
110
+
Gets the verified Play Store URL of the specified package. It automatically performs the operation in a background thread, so that you do NOT need to explicitly do it.
Gets the latest version of the specified package from Play Store. You can NOT make this call in the main thread of the application.
118
+
Gets the latest version of the specified package from Play Store. It automatically performs the operation in a background thread, so that you do NOT need to explicitly do it.
Check if an update is available for the specified package from Play Store. You can NOT make this call in the main thread of the application.
126
+
Check if an update is available for the specified package from Play Store. It automatically performs the operation in a background thread, so that you do NOT need to explicitly do it.
Gets the no. of downloads of the specified package from Play Store. You can NOT make this call in the main thread of the application.
134
+
Gets the no. of downloads of the specified package from Play Store. It automatically performs the operation in a background thread, so that you do NOT need to explicitly do it.
Gets the last published date of the specified package from Play Store. You can NOT make this call in the main thread of the application.
142
+
Gets the last published date of the specified package from Play Store. It automatically performs the operation in a background thread, so that you do NOT need to explicitly do it.
Gets the OS requirements of the specified package from Play Store. You can NOT make this call in the main thread of the application.
150
+
Gets the OS requirements of the specified package from Play Store. It automatically performs the operation in a background thread, so that you do NOT need to explicitly do it.
Gets the content rating of the specified package from Play Store. You can NOT make this call in the main thread of the application.
158
+
Gets the content rating of the specified package from Play Store. It automatically performs the operation in a background thread, so that you do NOT need to explicitly do it.
Gets the app rating of the specified package from Play Store. You can NOT make this call in the main thread of the application.
166
+
Gets the app rating of the specified package from Play Store. It automatically performs the operation in a background thread, so that you do NOT need to explicitly do it.
Gets the no. of app ratings of the specified package from Play Store. You can NOT make this call in the main thread of the application.
174
+
Gets the no. of app ratings of the specified package from Play Store. It automatically performs the operation in a background thread, so that you do NOT need to explicitly do it.
Gets the recent changelog (as array) of the specified package from Play Store. You can NOT make this call in the main thread of the application.
182
+
Gets the recent changelog (as array) of the specified package from Play Store. It automatically performs the operation in a background thread, so that you do NOT need to explicitly do it.
Gets the recent changelog (as string) of the specified package from Play Store. You can NOT make this call in the main thread of the application.
190
+
Gets the recent changelog (as string) of the specified package from Play Store. It automatically performs the operation in a background thread, so that you do NOT need to explicitly do it.
0 commit comments