You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using Demo.iOS;
|
|
using Foundation;
|
|
using Xamarin.Forms;
|
|
|
|
[assembly: Dependency(typeof(BaseUrl_iOS))]
|
|
|
|
namespace Demo.iOS
|
|
{
|
|
public class BaseUrl_iOS : IBaseUrl
|
|
{
|
|
public string Get()
|
|
{
|
|
return NSBundle.MainBundle.BundlePath;
|
|
}
|
|
}
|
|
} |