首页 > 解决方案 > Xamarin: Is there any way for my testers to download my app from AppCenter without the need to login to AppCenter First?

问题描述

When I used HockeyApp (which is no longer an option), I could just copy the download link to my app and send it to my testers, and when I published a mandatory update to the app on hockeyapp, they got a dialog in the app and pressed Ok, and the app started downloading without the need of being logged in anywhere.

Now that I've migrated to AppCenter, I can't find a way for this to work. What happens now is that when a user opens the app and there is an update to it available, the app opens a browser with a URL to install the app, and requires each tester to login to AppCenter before downloading it. Is there any way to solve this so all users (testers) don't need to create an account at AppCenter now?

This is the only code I use for this atm:

AppCenter.Start(Constants.Secret, typeof(Crashes), typeof(Distribute), typeof(Analytics));

标签: xamarinvisual-studio-app-centervisual-studio-app-center-distribute

解决方案


https://docs.microsoft.com/en-us/appcenter/distribution/groups

Check out the documentation, it mentions that you can set "Allow public access" setting for a distribution group and then you'll have a public download link which will not require signing in:

In addition to this, a public download link is displayed underneath the distribution group name at the top of the distribution group page. Anyone, including testers who aren't explicitly added to the distribution group, can access the release without signing in using the public download link.


推荐阅读