Questions tagged [trial]
216 questions
4
votes
1 answer
UWP - Incorrect behaviour when Trial Expired
According to documentation when trial is expired and user opens the app, a message would be shown. But my app closes after showing splash screen without any message in this case.
There is the same question on the Microsoft's forum, but I can't…

Natalya Kovalova
- 61
- 6
4
votes
1 answer
Paypal recurring billing with a trial and discount code
I have a membership website where membership costs $19.99/month. I'd like to give my users 2 weeks trial period AND a discunt for the first month of payment after that. That is:
User purchases a membership which costs $19.99/month
I give the user 2…

Mathew
- 554
- 4
- 11
4
votes
2 answers
Windows Phone 8 LicenseInformation after app purchase
Update: Going further with my investigation, I just submitted a test app in beta store to just show the values of CurrentApp.LicenseInformation.IsActive and CurrentApp.LicenseInformation.IsTrial. Both returns false. Is this a normal behavior?
I…

user2693908
- 109
- 5
4
votes
3 answers
Best place/area to store file for Trail period
I need to have a trial period (7 days) in my application. From this I came to know that you can do that by keeping permanent file, database or shared preference.
Where do I keep that file so that the user isn't able to see/delete it.
If I put that…

Mohammed Azharuddin Shaikh
- 41,633
- 14
- 96
- 115
3
votes
5 answers
In app purchases and trial runs?
I am building an app for a client that will have 30 days of content for free, thereafter you are required to buy a subscription via in app store purchases.
However, I have read that you will get rejected if you have trials.
Don’t set time limits on…

zardon
- 2,910
- 6
- 37
- 58
3
votes
1 answer
How do I run twisted trial on all tests in a directory?
How do I run trial so that it executes all tests within a directory? All my unit tests pass if I run trial on each file individually, but if I try something like...
trial test/
on the test directory, it gives me one "PASSED", and the following…

tbischel
- 6,337
- 11
- 51
- 73
3
votes
1 answer
Google play subscription and free trial for mobile app automatically cancels/ends
We have a new application recently released on Google Play. The initial group of testers subscribed for a free 60-day trial. Over the past month, their subscription has been automatically removed/ended multiple times making them resubscribe. We…

Canaan
- 33
- 4
3
votes
1 answer
How to create a good trial experience in Windows Phone 7?
I found this handy piece of code to determine if my app is in trial mode, with the added benefit of being able to test trial behavior in the emulator...
public bool IsTrial
{
get
{
#if DEBUG
return true;
#endif
…

Steve Wortham
- 21,740
- 5
- 68
- 90
3
votes
3 answers
How to advance clock and going through all the events
Reading this answer (point 2) to a question related to Twisted's task.Clock for testing purposes, I found very weird that there is no way to advance the clock from t0 to t1 while catching all the callLater calls within t0 and t1.
Of course, you…

synack
- 1,699
- 3
- 24
- 50
3
votes
2 answers
Twisted Trial: How to test a MultiService with a client in it -- Reactor was unclean
I've inherited a Twisted MultiService that I'm trying to add tests to, but whatever I do, I end up with a DirtyReactorAggregateError. The service connects to a server with a twisted.application.internet.TCPClient. I think the error is because the…

Peter
- 375
- 1
- 4
- 16
3
votes
2 answers
Google Inapp purchasing and trial period
I am building an application which I wish to upload to the app store as a paid app. But i would like to post it as a trial app for a set amount of time. I looked at all the options in the app billing version 3. I have found a few problems.
If I…

Hannibalbarca202
- 31
- 2
3
votes
4 answers
Managing the demo version of software
I have a software product written in VB6. It is a paid software product and it has a demo version for 1 month.There is no separate setup file for demo version.The software on entering the product key turns demo to a full version.I used to write the…

Navaneet
- 1,367
- 1
- 19
- 44
3
votes
1 answer
How to test LoopingCall()?
Within my code, I use task.LoopingCall() to run some deferred function every second. I want to make sure that that function returns the right values for a certain number of things. So, I thought I could use a task.clock() and call the advance()…

Sardathrion - against SE abuse
- 17,269
- 27
- 101
- 156
3
votes
2 answers
upgrade trial to full version
I want to publish a trial of my app. In this app, the user has to save a lot of values in the sharedPreferences. If he decides to buy the full version, would the trial be deinstalled, and the sheredPreferences would be deleted too? Does anyone know…

user1655806
- 396
- 1
- 3
- 15
3
votes
5 answers
Prime number in C
int prime(unsigned long long n){
unsigned val=1, divisor=7;
if(n==2 || n==3) return 1; //n=2, n=3 (special cases).
if(n<2 || !(n%2 && n%3)) return 0; //if(n<2 || n%2==0 || n%3==0) return 0;
for(; divisor<=n/divisor; val++,…

Painguy
- 565
- 6
- 13
- 25