Skip to content

Commit

Permalink
Add support for Google app indexing.
Browse files Browse the repository at this point in the history
Lint raises a warning when indexing support is absent. In addition, some
sources indicate that Google gives compliant apps better search rankings.

This will resolve #1.
  • Loading branch information
rarcher committed Apr 11, 2017
1 parent df5091f commit 996ad45
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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:scheme="model" />
<data android:scheme="modelnumber" />
<data android:scheme="serialnumber" />
</intent-filter>
</activity>
</application>
</manifest>

0 comments on commit 996ad45

Please sign in to comment.