I am trying to make an android app in which i can take or choose 2 pics from the gallery and send them to a server. The code: private static final int SELECT_PICTURE = 1; private String selectedImagePath; private int TAKE_PHOTO_CODE = 0; private Uri outputFileUri; public void getit() { Intent intentpic= new Intent(); intentpic.setAction(Intent.ACTION_GET_CONTENT); [...]
The post Android – Sending 2 files to a server appeared first on BlogoSfera.