App not showing up in App Store after a week of ready for sale - app-store-connect

Last week I submitted my 3rd app to the App Store and everything went smoothly. However, after the status became "ready for sale" it has not shown up on the App Store after an entire week.
I read on these forums that it takes at most a day, so is something wrong here?
Thanks!
Ps: In reply to comments, "availability" is set to 8th of August 2015, and the app is set to be available in every territory.

Related

Trying to make an auto-generated day based mobile app

I'm new to React Native and, in fact, even to development, because I've never been a developer before. I've been learning for a few months and I have some app ideas.
So ... because this is my level and I really don't know how I could do that, please don't hate me, I just want to ask you about this.
I would like to build something similar to a list of activities, but “aware of the time”. For example.. I would like to have a new list of activities with the same tasks every day. If it is 23:59, the progress made that day will be saved in the database, and at 00:00 a new list will be generated for the new day. If the user does not use the application for one, two or three days, the "empty progress" will still be recorded.
So.. again, please don't hate me, I think that would be the backend part. What can I use with React Native to achieve this type of behaviour and how?

New deprecation date?

All GCM pages I can find show April 11th as the earliest GCM services will stop. Yesterday I received an email stating it was now May 29th. I don't see this date anywhere though, is there a place I can get it confirmed?
Edit: May 29th is the official.
Home Page's banner was just updated:
"API's... will be removed as soon as May 29, 2019"

Sitefinity personalization by Time of Day

I have created several "user segments" and added corresponding personalized versions of content blocks in a page. For some simple segments, for instance, that just check if the user has visited a specific page, it works flawlessly.
But for others, specifically when adding the "Time of day" characteristic, it fails to select any of the user segments and displays the default content.
I've created a segment that just checks if the time of day is "between 3AM and 11:30 AM" and I set its priority to "1." My understanding is that, because it is the top priority item, that even though there are other segments that could apply, this is the one that will be chosen if the current time of day is in that time frame. But its not working.
Any thoughts on how I may be misunderstanding the process? or tips/struggles others have overcome working w/ Sitefinity personalization? Thanks!
EDIT: if I set the Time of Day segment criteria to "IS NOT" between 12:00 AM and 11:59 PM then it works. In other words, matching the time of day is always returning false unless I specifically check if its false, in which case it is and the personalized content displays. What the heck?
I tested the case with 10.2 and everything is working fine. I found this closed bug in the feedback portal. Review your version. In case that you cannot upgrade you can try to implement your own criteria.
So it turns out that this problem only exists for me when connecting to the webserver while running the VPN that we've been using throughout development. I have not narrowed down what about that process could possibly be causing the problem, but at this point it seems that it's not so much a sitefinity issue or configuration problem on our server end.

itunes connect sales reports won't go further than October 30th

I'm trying to view the Sales and Trends for my apps in iTunes Connect. I am only able to see sales up until 30th October, when I try to change the dates to include all days up to 5th November it does nothing.
It's quite possible that I had no sales in the time period 30th October - 4th November, but yesterday I had three new apps approved and released, I know that some of my friends have downloaded them so there should be some data to show.
Is there anything I can do to fix this? I've emailed Apple but their reply can take 3 days apparently, and I'm anxious to get up to date figures for my new app.
Update
It magically seems to work for me today. And it seems that I had some sales in the period 30th October - 5th November, so the issue can't be due to no sales.
I was having the same problem. I cleared out my browser history and cache and it is now working. If that doesn't work for you, try another browser. I usually use Chrome. Before clearing out Chrome's cache/history, I decided to try Safari. No luck. Then I tried Firefox and it worked there.
It appears like there is no sales data for the days after October 31; iTunes Connect does not allow me to display any date in November. I contacted support and will share the results later on.
Is there anything I can do to fix this?
I use iTunes Connect app from Apple https://itunes.apple.com/app/itunes-connect/id376771144?mt=8 - it works perfectly fine (while I see the same outdated results in browser)
This doesn't 'fix' the problem, but if you create a new user within your account, it appears to allow you to query to the current date. (Nov 5th). Time will tell if this reduces back to Oct 30th. HTH

How to limit daily-usage even if user sets his clock back?

I have an IOS app that needs to track duration of free usage per day. Once it crosses a threshold, the user would have to purchase the app or wait for the next day to unlock his free-usage minutes for that day.
Is there a native way to detect if the user has set his clock back? Assume there is no Internet connection to sync with a time server
UIApplicationDelegate can get the following method called on significant time changes:
- (void)applicationSignificantTimeChange:(UIApplication *)application
You can try that one. From my point of view, I'd recommend to check current date on every application launch or willBecomeActive and store those dates as list somewhere securely. If current date is different from the last date, add it to your list. If list has more than 30 items (or how many you need) disable trial functionality.