How to install Android N ( Version 7) on Nexus 5


You can install Android N (AOSP) build on your Nexus 5 and use the functionality such as multi windows support, quick notification reply on your Nexus 5 as well. 

Before going ahead, I would remind you that by following this method will void your device warranty/guaranty. There are chances that your device may get bricked (unusable). So make sure you follow the steps correctly and do not stop the process in between.


Requirements:

  • Working android SDK platform tools ( fastboot and dab)
  • Updated USB driver for your device installed on computer.
  • USB debugging enabled on device. Check this for how to enable USB debugging on mobile.
  • Download recovery from TWRP 
  • Download latest Android N (AOSP) image from xda-dev forum, you can choose any other image shared on forum.

Unlocking Bootloader

  • Once you have enabled USB debugging on device and connected device to computer execute below command on command prompt or terminal
    • adb reboot bootloader
  • Once your device restarted, check if the device is in fastboot by executing below command
    • fastboot devices
  • Above command should show your device serial number. If the device serial number is displayed then execute below command
    • fastboot oem unlock
  • A disclaimer will display on the device that must be accepted. Use the volume keys to cycle through the options. Pressing the power button should confirm your selection.
  • Reboot the device from menu if device does not rebooted automatically. Now the bootloader should be unlocked. After reboot if you see the unlocked icon on the bottom of boot screen menu. 
Installing TWRP recovery

  • Connect your device to computer via USB.
  • On command prompt or terminal execute below command
    • adb reboot bootloader
  • Check if the device is on fastboot mode like above. 
  • Make sure the recovery image is in the directory from where you are executing commands.
  • If the device is in fastboot mode, flash recovery entering below command
    • fastboot flash recovery recovery_image_file_name.img
  • Once the flash completes successfully, make sure you reboot the device. 
  • To check if the recovery completed successfully, reboot device in recovery mode, you should see the TWRP recovery menu.
  • In order to manually go to recovery mode -> Powered down the device. Now hold the Volume Down and Volume Up buttons. Then press and hold the Power button until a boot menu appears. Navigate using the volume keys and select RECOVERY using the Power key.
Installing Android N(AOSP)

  • Copy the Android image zip to SD card, you can use the below command to do the same after connecting your device to computer via USB. ( USB debugging is still on)
    • adb push android_image_file_name.zip /sdcard/ 
  • Reboot your device to recovery mode
In TWRP there is an option to backup. You should create a backup before installing custom ROM so that you can go back if anything goes wrong.
Once you have taken a backup:
  • Select Wipe and then Factory Reset.
  • Select Install.
  • Navigate to /sdcard and select the android_image_file_name.zip package.
  • Follow the on-screen notices to install the package.
Once installation has finished, return to the main menu and select Reboot, then System. The device will now boot into Android N.

You can follow the xda-dev forum for troubleshooting if required.



How to enable USB debugging on Android devices

USB debugging has a number of uses on Android devices. To enable USB debugging you should first enable Developer options. Developer options have some setting relevant ro advanced users and developers.

Developer options is hidden by default, and can be activated with the following steps:

  • From Settings, select About phone (or About tablet).
  • Tap the Build number entry seven times. On the seventh tap, you will be notified that "You are now a developer."
  • Return to Settings. Developer options should now be visible just above the About phone ( or About tablet).
Now to enable USB debugging click on the Developer options -> USB debugging (Android debugging). Some devices might require Developer options to be on before clicking on USB debugging.


Design an Parking lot system

Let's consider below are the requirements for parking lot. Based on these requirements we will have to design a parking lot.

Requirements
  • The parking lot has multiple slots.
  • The parking lot can park motorcycles, cars, and buses.
  • The parking lot has small slots, compact slots, and large slots.
  • A motorcycle can park in any slot.
  • A car can park in either a single compact slot or a single large slot.
  • A bus can park only in a single large slot.

We can devise below use cases from above requirement.

Use cases
  • Any vehicle enters and asks for free parking slot ID.
  • If any appropriate parking slot is available, vehicle will get assigned parking slot and that parking slot will be blocked for parking till vehicle leaves the slot.
  • Any vehicle when leaves the parking slot, the same slot will be free for parking other vehicles.
  • If appropriate parking slot (to fit the vehicle) is not available, parking lot will return parking full message.

Lets break up the use cases in different module of functionality.

Parking Lot
  • Parking lot has multiple slots.
  • Parking lot can display is parking is full.
  • Parking lot can tell if given vehicle can be parked or not.
  • Parking lot can allot slot for vehicle.
  • Parking lot can clear allotted slot for vehicle.
  • Parking lot has Parking slot allotter.

Parking slot allotter
  • Parking slot allotter allots the parking slot based  on below algorithm
    • motorcycle can park in any slot
    • car can park in either a single compact slot or a single large slot.
    • bus can park only in a single large slot.
  • If no slot is free for vehicle return, Parking Full message.

Parking Slot
  • Parking slot has type.
  • Parking slot has status.
  • Parking slot has ID.
  • Parking slot can tell if given vehicle can be fit in the slot.

Vehicle
  • Vehicle has a size (small, compact, large), which states how much space required to park
  • Vehicle has type.
  • Vehicle has park and leave parking functionality. 

Slot Type
  • Small
  • Compact
  • Large

Vehicle Type
  • Motorcycle
  • Car
  • Bus

Slot Status
  • Free
  • Occupied


We need to take care that we should not derive individual vehicle type from vehicle, like Car, Bus etc.. Because tomorrow if slot is supporting 10 additional types of vehicle there will be class explosion and we are not much interested in vehicle types here but we are only interested in size of vehicle. Same analogy applies for the parking slot.

Elevator system design

Let's first start with the use cases or requirements of the elevator. There are multiple modules/ systems involved in complete elevator system. We will break down the uses cases as per the individual system.

High Level Requirements:

  1. User should able to request the elevator from the floor.
  2. Once elevator reaches the requested floor, User should get in and should able to choose destination floor.
  3. Once destination is chosen by user, elevator should move to destination floor. 
  4. Once elevator reaches destination floor, user leaves elevator.


User
  • Presses the button on particular floor to request the elevator. 
  • Inside elevator cabin (referred as Cabin here after) user presses the required floor button.
  • Leaves the cabin once elevator reaches particular floor.
Floor
  • Floor has ID which indicates which floor it is.
  • Floor has buttons to request the elevator.
  • Floor has a display which indicates current location of the lift.
Buttons
  • Button get illuminated when pressed indicating the action is performed.
  • Button should stop illuminating once action is complete. 
  • When pressed, button places request for elevator for particular floor.
Cabin
  • Cabin can move up or down as requested by controller.
  • Cabin has set of buttons which tells user which all floors elevator can go.
  • Cabin has button to close/open door.
  • Cabin has door.
  • Cabin commands door to open.
  • Cabin commands door to close.
  • Cabin has weight limit, which indicate how many passengers it can carry.
Door
  • Door can be opened or closed as requested.
  • Once door is open it closes automatically after certain delay.
Elevator Controller
  • Elevator controller start up or stops the elevator.
  • Elevator controller has status of the elevator.
  • Elevator controller accepts request from floor and cabin buttons.
  • Elevator controller commands cabin to move to particular floor.
  • Elevator controller commands cabin to stop.
  • Elevator controller updates status to each floor.
Elevator Request
  • Stores all elevator requests.
  • Has a scheduling algorithm which decides, which request should be served next.
  • Each request has direction, floor id. 

Elevator Status
  • Cabin State
  • Current floor
  • Directions
Cabin State
  • Moving
  • Idle
  • Under Maintenance
Direction
  • Up
  • Down
Now we have got the requirements and also modeled in different artifacts, we can build the UML diagram of the same. 

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...