summaryrefslogtreecommitdiff
path: root/resources/intentionDescriptions/InsertApiCodeIntentionAction/before.xml.template
diff options
context:
space:
mode:
authorYi Zhang <yizhan@google.com>2015-10-13 14:23:24 +0800
committerYi Zhang <yizhan@google.com>2015-10-27 14:43:50 +0800
commit634e7e4b4946919c549783e6646b422890ec0dd7 (patch)
tree8f4ad730d8ff19e8f3a15e13a8eb930c894df3fc /resources/intentionDescriptions/InsertApiCodeIntentionAction/before.xml.template
parent88bcdbe3f21beea2e90b6dc19a3d220e38e7bd25 (diff)
downloadappindexing-634e7e4b4946919c549783e6646b422890ec0dd7.tar.gz
Add App Indexing API creation tool - a generator and an intention
action. Change-Id: Id50bc3c95cae012b2a0b0e5936f2767689a0c80f
Diffstat (limited to 'resources/intentionDescriptions/InsertApiCodeIntentionAction/before.xml.template')
-rw-r--r--resources/intentionDescriptions/InsertApiCodeIntentionAction/before.xml.template15
1 files changed, 15 insertions, 0 deletions
diff --git a/resources/intentionDescriptions/InsertApiCodeIntentionAction/before.xml.template b/resources/intentionDescriptions/InsertApiCodeIntentionAction/before.xml.template
new file mode 100644
index 0000000..16cb528
--- /dev/null
+++ b/resources/intentionDescriptions/InsertApiCodeIntentionAction/before.xml.template
@@ -0,0 +1,15 @@
+<manifest>
+ <application>
+ <activity android:name=".MainActivity" >
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+ <data
+ android:host="www.example.com"
+ android:pathPrefix="/main"
+ android:scheme="http" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>