android - Cannot Receive App Intent Type Nearby Notification - Beacons -


i registered beacon (simulated app on android device , of type eddystone-uid) , tried set nearby notifications google beacon platform dashboard.

when created notification of type "app intent", not received on device when close 1 acting beacon. however, if set nearby notification of type "web url", displayed on device within range of beacon.

when setting notification of type app intent, provide following details: 1. intent scheme (same scheme in code below) 2. package name of app - same what's in app's manifest file left intent path field blank not mandatory.

this intent filter in app's manifest:

       <intent-filter>             <action android:name="android.intent.action.main" />              <category android:name="android.intent.category.launcher" />             <category android:name="android.intent.category.default"/>             <category android:name="android.intent.category.browsable"/>             <data android:scheme="app" />         </intent-filter> 

i tried looking @ several blogs , videos i'm unable figure out problem. can please point out mistake?

thanks.


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -