fixes latest commit, for DEV
This commit is contained in:
parent
aac7278f58
commit
8f5e0177b2
6 changed files with 43 additions and 9 deletions
30
ZicMoove/ZicMoove.Droid/SendFileActivity.cs
Normal file
30
ZicMoove/ZicMoove.Droid/SendFileActivity.cs
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
using Android.App;
|
||||
using Android.Content;
|
||||
using Android.OS;
|
||||
using Android.Runtime;
|
||||
using Android.Views;
|
||||
using Android.Widget;
|
||||
|
||||
namespace ZicMoove.Droid
|
||||
{
|
||||
[Activity(Label = "SendFileActivity")]
|
||||
[MetaData("android.service.chooser.chooser_target_service", Value = Constants.ApplicationName + ".YavscChooserTargetService")]
|
||||
[IntentFilter(new[] { "android.intent.action.SEND" },
|
||||
Categories = new[] { "android.intent.category.DEFAULT" },
|
||||
Icon = "@drawable/icon",
|
||||
Label = Constants.SendToApp)]
|
||||
public class SendFileActivity : Activity
|
||||
{
|
||||
protected override void OnCreate(Bundle savedInstanceState)
|
||||
{
|
||||
base.OnCreate(savedInstanceState);
|
||||
|
||||
// Create your application here
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue