I have already tried this code, but i didn\'t saw photo shared in my account.
File file = new File(\"sdcard/1346249742258.jpg\");
String photoUri = null;
pho
Don't use absolute path.
OnActivityResult() use this after capturing image from camera.
Uri photoUri = intent.getData();
Intent shareIntent = ShareCompat.IntentBuilder.from(this)
.setText("Hello From Google+!")
.setType("image/jpeg")
.setStream(photoUri)
.getIntent()
.setPackage("com.google.android.apps.plus");
startActivity(shareIntent);
This is working for me.