Skip to main content

Iteration 7 (3 August – 9 August)


I completed following features in this iteration

  • Messaging - send a text message in a task
  • Location Access - give the GPS location by google play services.
  • Sharing - sharing files through WiFi - direct and Bluetooth.
  • Scan the tags - user can scan QR code and get data using ZXing bar-code reader
  • Use Gallery - user can select pictures in storage.


Comments

Popular posts from this blog

Introduction to GitLab - Initial configuration

In order to use GitLab, the user has to install git in your PC. reference: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git Git can be downloaded using the following URL reference: https://git-scm.com/downloads Then the user can check out the code using the given URL to the git repository. copy the URL and use it in git-bash or IntelliJ Idea. you have to use the URL without changing. I have installed IntelliJ Idea in my local PC. I am trying to clone the uploaded repository to a separate location. I have tried to checkout using the following screen There was an issue as “permission denied (publickey gssapi-keyex gssapi-with-mic) ”. The solution is to add an ssh key to GitLab account. Go to .ssh folder in c://users/xxx/ folder. Then open command window (Ex : git bash) Then type ssh-keygen Then open id_rsa.pub and put the ssh key in the giltlab account. Profile setting -> SSH Keys Reference:  https://...

REST VS SOAP

SOAP and REST both allow you to create your own API. API stands for Application Programming Interface. It makes it possible to transfer data from an application to other applications. An API receives requests and sends back responses through internet protocols such as HTTP, SMTP, and others.  Many popular websites provide public APIs for their users, for example, Google Maps has a  public REST API  that lets you customize Google Maps with your own content. There are also many APIs that have been created by companies for internal use. There are significant differences between SOAP and RESTful web services. The bullets below break down the features of each web service based on personal experience. REST RESTful web services are stateless. You can test this condition by restarting the server and checking if interactions survive. For most servers, RESTful web services provide a good caching infrastructure over an HTTP GET method. This can improve the performance...

Reverse nested - ElasticSearch

https://www.elastic.co/guide/en/elasticsearch/reference/1.4/search-aggregations-bucket-reverse-nested-aggregation.html GET app_default/review/_search {   "query": {     "bool": {       "must": [         {           "match": {             "entityId": "CitizenMLondonBankside"           }         },         {           "match": {             "entityType": "Hotel"           }         },         {           "nested": {             "path": "details",             "query": {               "range": {               ...