Here is sample code for uploading image files to cloud storage bucket in google cloud platform Step 1 Create a google cloud project in cloud (https://console.cloud.google.com/) enable cloud storage Step 2: Create a new web application project I am using Eclipse with Java for App engine Project Step 3: create a POST web service method the below code for upload image to the existing bucket in google cloud and the uploaded image url will be returned Code @Path("/addres") @POST @Consumes(MediaType.MULTIPART_FORM_DATA) public String addRestaurant( @FormDataParam("imgname") String imagename, @FormDataParam("file") InputStream uploadedInputStream, @FormDataParam("file") FormDataContentDisposition restImages ) throws IOException { try { // Create your service object Storage storage = St...
Hi Step 1: Develop Map Application using android studio Step 2: For Map viewing we need to have google api key .in order to get api key we need to register application in google api console https://console.developers.google.com/apis/ Step 3; For getting SHA1 Key please follow the steps 1) Go the java installed folder location , open cmd Eg: C:\Program Files\Java\jdk1.7.0_04\bin 2) Type Windows keytool -list -v -keystore "CHANGE WITH OUR KEYSTORE LOC" -alias ALIASNAME -storepass PASSWORD -keypass PASSWORD Mac & Linux keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android Ref: http://www.truiton.com/2015/04/obtaining-sha1...