Hi all.
This is simple library for easy access to app data from Google Play and the Apple iTunes
Is very simple:
AppStore
Author: Devil-App
Version: 1.02
This is simple library for easy access to app data from Google Play and the Apple iTunes
Is very simple:
AppStore
Author: Devil-App
Version: 1.02
- appstore
Methods:- IsInitialized As Boolean
Tests whether the object has been initialized. - Initialize (package_name As String, store As String, yourkey As String, Module As Object, EventName As String) As String
B4X:'Easy access to app data from Google Play and the Apple iTunes: 'You have 2 parameters: 'Initialize(package_name As String, store As String, yourkey As String, Me, "check_short") 'package_name --> Play Store: "com.devil.app.antispy" : AppStore: "6018" 'store --> "google" if you want search this in Play Store or "apple" if you want search this in AppStore 'Example: 'Dim store As appstore 'store.Initialize("com.devil.app.antispy", "google", "Fe5pwHzYKdmshHMC2Kq7NUIN0X3Ap1J54u4jsn62nFgdNmBJX9", Me, "check_value") '..... 'Sub check_value(valore As typeLevel) 'Log(valore.average) 'Log(valore.count) 'Log(valore.coverimage) 'Log(valore.description) 'Log(valore.developer) 'Log(valore.fiveStar) 'Log(valore.fourStar) 'Log(valore.fulldescrition) 'Log(valore.id) 'Log(valore.Istalls) 'Log(valore.lastUpdated) 'Log(valore.maturityRating) 'Log(valore.MinimunOsVersion) 'Log(valore.oneStar) 'Log(valore.price) '.... 'End Sub '******
B4X:Sub Activity_Create(FirstTime As Boolean) Activity.LoadLayout("1") Dim store As appstore store.Initialize("com.devil.app.antispy", "google", "Fe5pwHzYKdmshHMC2Kq7NUIN0X3Ap1J54u4jsn62nFgdNmBJX9", Me, "check_value") End Sub Sub check_value(valore As typeLevel) Dim carica_img As UniversalImageLoader carica_img.Initialize("") carica_img.loadimg(valore.coverimage, ImageView1) Label1.Text = "Average Rating: " & valore.average Label2.Text = "Description: " & valore.description Label3.Text = "Developer..: " & valore.developer Log(valore.count) Log(valore.fiveStar) Log(valore.fourStar) Log(valore.fulldescrition) Log(valore.id) Log(valore.Istalls) Log(valore.lastUpdated) Log(valore.maturityRating) Log(valore.MinimunOsVersion) Log(valore.oneStar) Log(valore.price) End Sub
You have this result:
For get your Key HERE
LIBRARY
- Unzip the attached file ( AppStore1.02-Library.zip ) and copy AppStore.jar and AppStore.xml to the libraries folder
- AppStore-Example1.02.zip is simple B4A ( for this example you must utilize also UniversalImageLoader By DonManfred )- LAST UPDATE REL.1.02 - 25 March 2016
- IsInitialized As Boolean
Attachments
Last edited: