does android.intent.action.PACKAGE_ADDED requires users permission? -


i implementing heyzap , requires me add

<receiver android:name="com.heyzap.sdk.ads.packageaddedreceiver">  <intent-filter>   <data android:scheme="package"/>   <action android:name="android.intent.action.package_added"/>  </intent-filter> </receiver> 

do these lines in androidmanifest.xml require user permission update or update google play users automatically? user permission not problem. admob voluntaristicaly changed rules without prior notification , force me use "new admob" , wish move users possible admob.

does following permission required?

<uses-permission android:name="android.permission.broadcast_package_added" /> 

there broadcast_package_removed permission in sdk , heyzap not mention permission users on stackoverflow mention it.

you don't need add permission. read how can actions: package_removed , package_added thread more.


you can try 1 more thing is, add exported , enable option true receiver manifest, , try.

like

<receiver android:name="com.heyzap.sdk.ads.packageaddedreceiver" android:exported="true" android:enabled="true"> 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -