사진을 찍을때 바로 어떤 작업을 하려고 하는데, 
	 
	        <receiver android:name="com.example.resize.Photos" android:exported="true">
	            <intent-filter>
	<action android:name="android.hardware.action.NEW_PICTURE" />
	<action android:name="com.android.camera.NEW_PICTURE" /> 
	<data android:mimeType="image/*" /> 
	            </intent-filter>
	            <intent-filter>
	<action android:name="photup.intent.action.PHOTO_TAKEN" /> 
	</intent-filter>
	            <intent-filter>
	<action android:name="com.google.android.apps.plus.NEW_PICTURE" /> 
	</intent-filter>
	            <intent-filter>
	<action android:name="android.camera.NEW_PICTURE" /> 
	</intent-filter>
	            <intent-filter>
	<action android:name="android.intent.action.CAMERA_BUTTON" />
	</intent-filter>
	            <intent-filter>
	<action android:name="com.unitedcoders.android.broadcasttest.SHOWTOAST"/>
	</intent-filter>
	        </receiver>
	 
	이런 바로 작업을 해도 안들어오네요. 혹시 사진찍을때 바로 onReceive()타게 할 수 있는 방법 아시는 분 계시나요??