DeveloperTools – TecAdmin https://tecadmin.net How to guide for System Administrator's and Developers Sun, 11 Sep 2022 02:52:34 +0000 en-US hourly 1 https://wordpress.org/?v=6.1.1 How to View HTTP Headers in Google Chrome https://tecadmin.net/how-to-view-http-headers-in-google-chrome/ https://tecadmin.net/how-to-view-http-headers-in-google-chrome/#respond Sun, 11 Sep 2022 02:52:34 +0000 https://tecadmin.net/?p=31655 Google Chrome DevTools (developer tools) is the browser’s built-in comprehensive toolkit for developers. Which provides a large number of information that is useful for the developers for debugging purposes. You can also find the website’s request headers and response header values directly with dev tools. View HTTP Headers in Chrome Follow the below steps to [...]

The post How to View HTTP Headers in Google Chrome appeared first on TecAdmin.

]]>
Google Chrome DevTools (developer tools) is the browser’s built-in comprehensive toolkit for developers. Which provides a large number of information that is useful for the developers for debugging purposes. You can also find the website’s request headers and response header values directly with dev tools.

View HTTP Headers in Chrome

Follow the below steps to open developer tools in Google Chrome and view HTTP header values.

  1. Open DevTools: You can open Google Chrome’s developer tools with two methods. Choose any one method:
    • Right-click on the browser and click Inspect
    • Press F12 function button in the keyboard.

  2. View HTTP headers: Open the target website in the browser. The developer tools will show you a large number of details that is helpful for the developers. Once the website is loaded, you can find header values as shown below:

    View HTTP Headers in Google Chrome
    Viewing the HTTP Headers in Google Chrome

The post How to View HTTP Headers in Google Chrome appeared first on TecAdmin.

]]>
https://tecadmin.net/how-to-view-http-headers-in-google-chrome/feed/ 0
Complete Setup Guide for Android SDK / ADT Bundle on Ubuntu https://tecadmin.net/complete-setup-guide-for-android-sdk-adt-bundle-on-ubuntu/ https://tecadmin.net/complete-setup-guide-for-android-sdk-adt-bundle-on-ubuntu/#comments Sun, 15 Jun 2014 04:21:43 +0000 https://tecadmin.net/?p=5470 The Android SDK is a software development kit which provides API libraries and necessary developer tools necessary for building Android application’s. Android SDK is officially provided by android developers. This article will help you for quickly configuring ADT (Android Developer Tools) Bundle for developing apps on your Linux system. ADT has all the essential SDK [...]

The post Complete Setup Guide for Android SDK / ADT Bundle on Ubuntu appeared first on TecAdmin.

]]>
The Android SDK is a software development kit which provides API libraries and necessary developer tools necessary for building Android application’s. Android SDK is officially provided by android developers.

This article will help you for quickly configuring ADT (Android Developer Tools) Bundle for developing apps on your Linux system. ADT has all the essential SDK components with Eclipse IDE for your Android app development.

adt-android

ADT Bundle includes all the things we required to start application development. It including followings –

    • Eclipse + ADT plugin
    • Android SDK Tools
    • Android Platform-tools
    • The latest Android platform
    • The latest Android system image for the emulator

Step 1: Install Java

Java is the primary requirement for installing Android SDK (ADT). If you don’t have java install use below commands else you may skip it.

$ sudo add-apt-repository ppa:webupd8team/java
$ sudo apt-get update
$ sudo apt-get install oracle-java8-installer
$ sudo apt-get install oracle-java8-set-default

Step 2: Download ADT (Android Developer Tools)

We can download latest ADT version from official android developer website. Also we can use the following commands to download ADT 22.6.2 version

For 32bit-

$ cd ~/Downloads/
$ wget http://dl.google.com/android/adt/22.6.2/adt-bundle-linux-x86-20140321.zip

For 64bit-

$ cd ~/Downloads/
$ wget http://dl.google.com/android/adt/22.6.2/adt-bundle-linux-x86_64-20140321.zip

After downloading ADT tools, extract it to your desired place in system. Keep remember to not to move any files to other location from extracted source.

$ unzip adt-bundle-linux*.zip

Step 3: Start ADT (Android Developer Tools)

In the extracted files, you will get two directories (eclipse and sdk). Navigate to eclipse directory and double-click on eclipse file to start Eclipse IDE as pr below screenshot.

adt-start-eclipse

Now select the workspace where you want to save you projects files in system. You may also check the check box for automatically loading this workspace on next time load without prompting.

adt-setup-workspace

At this stage Eclipse is ready to use, you can start developing your application’s using Eclipse with Android SDK.
android-adt-start

Now you can start building the awesome android apps, If you are new in Android development, you can start from here.

Step 4: Install or Update Required Packages

While working with Android SDK, You may need to install more additional packages or libraries required for your application. ADT provides Android SDK Manager utility to do this. To start SDK Manager – Click Android SDK Manager under Windows menu. It will open a window like below, here you can select the required packages and install or upgrade them as per your need.

android-sdk-manager

The post Complete Setup Guide for Android SDK / ADT Bundle on Ubuntu appeared first on TecAdmin.

]]>
https://tecadmin.net/complete-setup-guide-for-android-sdk-adt-bundle-on-ubuntu/feed/ 2