SpinBower Member Licensed User Longtime User May 18, 2014 #1 Hi, I am using the In App Billing V3 service and just realized that there is no release resources function included. Is there anyway this can happen?
Hi, I am using the In App Billing V3 service and just realized that there is no release resources function included. Is there anyway this can happen?
Erel B4X founder Staff member Licensed User Longtime User May 18, 2014 #2 There is nothing special to release. The object will be released when there are no more live references available. Upvote 0
There is nothing special to release. The object will be released when there are no more live references available.
SpinBower Member Licensed User Longtime User May 18, 2014 #3 Erel said: There is nothing special to release. The object will be released when there are no more live references available. Click to expand... Well my app has been running for 7 hours like this! It only used the billing service once then it is dormant. Attachments Screenshot_2014-05-18-08-29-16.png 126.3 KB · Views: 124 Upvote 0
Erel said: There is nothing special to release. The object will be released when there are no more live references available. Click to expand... Well my app has been running for 7 hours like this! It only used the billing service once then it is dormant.
Erel B4X founder Staff member Licensed User Longtime User May 18, 2014 #4 Try this: B4X: Dim r As Reflector r.Target = Billing1 'billing manager object r.Target = r.GetField("helper") r.RunMethod("dispose") Upvote 0
Try this: B4X: Dim r As Reflector r.Target = Billing1 'billing manager object r.Target = r.GetField("helper") r.RunMethod("dispose")
SpinBower Member Licensed User Longtime User May 18, 2014 #5 Erel said: Try this: B4X: Dim r As Reflector r.Target = Billing1 'billing manager object r.Target = r.GetField("helper") r.RunMethod("dispose") Click to expand... That worked, thanks! Upvote 0
Erel said: Try this: B4X: Dim r As Reflector r.Target = Billing1 'billing manager object r.Target = r.GetField("helper") r.RunMethod("dispose") Click to expand... That worked, thanks!