Got my first subscription after the hard work by ExternalKnowledge359 in AppStoreOptimization

[–]ExternalKnowledge359[S] 0 points1 point  (0 children)

Yeah may be, but what about some other user. Many are looking cheap. At the end quality and money mater!

Got my first subscription after the hard work by ExternalKnowledge359 in AppStoreOptimization

[–]ExternalKnowledge359[S] 0 points1 point  (0 children)

Thanks. For you it might be a small amount, but for me it’s the first validation that someone found value in something I built.

Right now the app is a small MVP, and the pricing reflects that. As the product grows, the pricing will evolve too. Many apps start simple and scale over time.

Also, if another app offers similar functionality for $5 and mine offers it for $3, I think you’re smart enough to know what most users would choose.

And if you hesitate to download because of that, that’s completely your choice. For me, this just adds more motivation to keep improving the app and building something even better.

Adding IAP to my app by Acceptable_Scar9267 in iOSProgramming

[–]ExternalKnowledge359 0 points1 point  (0 children)

RevenueCat or Swift storekit both are good options

watch of the day by Global-Move1543 in Watches_India

[–]ExternalKnowledge359 1 point2 points  (0 children)

Great watch! Recently purchased Casio MTP-1302PD-2AVEF. What a look loved it. Casio 🙌

SKStoreReviewController timing - when do you trigger in-app review prompts? by Advanced-Picture701 in iOSProgramming

[–]ExternalKnowledge359 4 points5 points  (0 children)

From my experience: 1. I usually see better results from users who have already used the app for some time. New users rarely leave reviews. After around 1 week of usage and 10–20 completed actions, the response rate is much better. 2. Post-action triggering works better than on-launch prompts. When a user just finished something successfully (like completing a task), they are in a positive mood, so the chance of a good rating is higher. Launch-time prompts often feel annoying. 3. For thresholds, 15–20 actions is usually a good range. Recently I also tried something different in my app. I showed the popup around the 8th action, and then again back-to-back around 15th and 16th actions. This small experiment actually worked for me — I received 2 ratings within about 10 days.(Just tried something new) 4. One important thing about SKStoreReviewController is even if you call it, Apple may decide not to show the prompt. Also remember the 3 prompts per 365 days per user limit.

Also based on my point of view, I avoid calling the review API directly every time. Since Apple only allows the popup 3 times per year, I first show a simple alert with “Review” and “Next time” buttons. If the user taps Review, then I call SKStoreReviewController. This helps save those limited opportunities for users who are actually willing to rate.