Month: July 2014

  • java.lang.SecurityException: Permission Denial: Intent android

    When i deploy into android devices, suddenly it’s not running automatically and i got this: 1java.lang.SecurityException: Permission Denial: Intent To solve, please add “android:exported=”true” and make sure no duplicate activity in your Manifest.xml. 123456<application         android:allowBackup="true"         android:icon="@drawable/ic_launcher"         android:label="@string/app_name"         android:theme="@style/CustomActionBarTheme"   […]

  • Generate facebook android key hash

    Here is snippet to generate facebook android key hash : 1keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 -binary | openssl base64