how can i reactivate an app on the play console? - flutter

I uploaded my first flutter app to publish on the Google Play Console. Since I wasn't happy with the result, I removed it with the aim of re-uploading it. Can someone please tell me how to get a removed app back?
I had the hope that it would be back after a new release. After the release, the app was approved even though it is considered removed, but everything remains inactive. I would be very happy about your tips. Google seems to have completely stopped support

In the Google Play console:
Select Advanced Settings in the left nav bar.
Under the App Availability tab, select Published.
Click the Save Changes button.

Open Google play console .. choose the application then From Release .. Choose Setup>>Advanced settings App Availability .. Choose published then save changes

Related

How to get rid of the (Beta) from the app name on google play

I have deployed a flutter app on the google play as a production mode, which is this link, https://play.google.com/store/apps/details?id=yurikanamba.lovealapp
(sorry the social login doesn't work now)
I can see the latest update from the link, like screenshots, but I can still see the word (beta) right next to the app name like this.
I sent this link to some of my friends, but they cannot see the (beta) like I do.
Do you know why I can see that and how to get rid of the (beta) right next to the app name?
I guess I should disable the Beta project in our App releases on google console, but there is nothing I can deactivate my beta release...
I have got the same problem:
First I published my app as a public beta version then I released it to production track. However, when using my developer profile I'm still seeing this Beta title.
I have a tried to unregister from testers list, then cleared my browser cache (desktop and mobile), my Google cache but I'm still seeing it.
Try this anyway, it might work for you.
The only solution I found is to use another account that was not listed as beta tester, but it seems that for profiles who have been (or still are) beta testers, "Beta" won't go away from your app title.

Facebook Developers Error 500

When I go to app settings (basic) and I try to add platorm (android) and I set everything correct way, I press save changes.. This button goes to disabled mode for like 4 seconds and then I can press it again.. In console I get error 500 and changes are not saved - I cant add android platform.
Any ideas?
It somehow happends only when I use package name that is already on google play.. If I use some random, I can save it. I think we can say its just Facebook bug.

Samsung Legacy 2014 TV not updating application

I have followed the steps given in http://developer.samsung.com/tv/develop/legacy-platform-library/art00121/index, and the application appears on the Smart Hub on the TV. However, when I make some changes in the application, and package it again selecting "Update the packaged files on the server", do a "Apps Sync" and run the application, the updates are not reflected.
I have tried changing the application name and version in config.xml. Only the application name changes in smart hub, but the application when opened is what was installed the first time on the TV.
If a new project is made and the same steps are followed, the new application appears on the smart hub, but an update to it has the same problem.
Am I missing something while packaging the same application for a second time?
Not sure if this is useful but I believe the device seems to cache the files. I had the same issue today and was quite frustrating.
I managed to find two solutions:
1) shut down the device and re-launch again (connect to server and the Apps Sync)
2) when you export the app in the IDE, make sure you name the package name differently + title & description need to be different too.
By doing this, Apps Sync will add another app (so you'll have two of the same app, but just click on the last one that appears in the apps list - hope that makes sense). If you want to remove the apps, simply access the widgetlist.xml which will be in the root of your server and then remove the apps references from there.
I hope that helps.

Set default app as ON in Active Screen ios xcode

Now i am using swift to code my app. I used share extentions and it runs well.
But I have a problem.
app set default value in active screen as OFF. I want to set default as ON. Do you have any solution?
Thank you
By default, share extensions are turned off until the user manually enables them with the More... menu. That's just how iOS works and there is nothing you can do about it, other than instruct your user to open the share dialog and hit More to enable your app.
Only apps like Vimeo which have an agreement with Apple can default to visible in the share menu.
Source + more information.

new iphone - how to delete app off of Developer Device

really simple question. tried googling
I just got a new iPhone 4S and restored from backup. A development app doesn't show up but now that am deploying app to device, the old one shows up (for example, an old display.png is shown). Is there a way to fully delete this from the iPhone? Similar to just rm -rf in the simulator? If I go into the Organizer, I can see that I can 'delete' the application but it clearly lives on with the wrong default.png (and probably wrong sqlite db). How can I fully remove this?
thx
If you are deleting the app from the device only, then you just delete it like any other app, either as you already know through the organizer, or by long pressing and clicking the 'x' on the icon.
If you have an issue with resources persisting after they have been replaced and you are building directly to the device, you may need to remove transient directories from your disk.
Transient directories for building are located in your home directory:
~/Library/Developer/Xcode/DerivedData.
Remove the transient directory for your application and this will guarantee that all old resources are removed from the new build.
Well, you have tried all the way and other answer describe you how to delete the app from device, *and still if you are getting the same issue*, then i would suggest you to use following alternate way :
1 ) Connect your device to your iTunes
2 ) Click on Apps in your LIBRARY section
3 ) Delete your app by right click
It will surely help you. :)
Press-and-hold on the app icon on the device, then click the X button and select delete.
Then in XCode, navigate to the Product menu and select Clean.
Rebuild the app onto your device, and everything should work just fine (provided you perform the steps in this order). :)
Hope this helps!