Skip to main content

Android Manual Installation

Manual Installation

Installing Mono for Android for Windows involves six steps:

Step 1 - Install the Java JDK

Download and install the Java 1.6 (Java 6) or Java 1.7 (Java 7) JDK.  The JRE is not sufficient.  The Android SDK requires the 32 bit JDK, that is, select "Windows" for your platform, not "Windows x64".

Step 2 - Install the Android SDK

Download the Android SDK from Google:
  • Download Windows SDK installer (e.g. installer_r10-windows.exe) from: http://developer.android.com/sdk/index.html
  • Run the installer.
  • Run the SDK Manager after install.
  • Install at least:
    • Android SDK Tools, revision 16 or greater
    • Android SDK Platform-tools, revision 10 or greater
  • Install one or more SDK Platforms, such as:
    • SDK Platform Android 1.6, API 4, revision 3
    • SDK Platform Android 2.2, API 8, revision 2

Note: Available versions are updated frequently and these versions are just suggestions. Normally it is easiest to use the Update All... button.
sdkmanager.png
If you receive an error message when opening the SDK Setup application that states "Failed to fetch URL https://...", you should check the "Force https://... sources to be fetched using http://..." option under "Misc" in the "Settings" list before returning to the "Available Packages" list.

Step 3 - Configure Your Simulator

The Android Simulator can be run in a variety of configuration to simulate different devices.   You should configure at least one to get started.   You do this by selecting the "Virtual Devices" option from the Android SDK installer:
windows-android-virtual-device.PNG
Select "New" in this dialog box, and then configure your device.   This is a good starting configuration:
newavd.png
Do not be scared by the following message, this is Android's SDK way of telling you that everything is OK, and everything will be alright:
windows-android-user-friendly-message.PNG
Once you do this, you are done configuring the emulator. There is nothing left to do in the Android SDK Setup application.

Note: You should not start the emulator from the Android SDK Setup application.  The Mono for Android addin will handle this for you.

Step 4 - Install Mono for Android for Windows

Download and install the Mono for Android Windows installer from http://android.xamarin.com/DownloadTrial


Step 5 - Install MonoDevelop for Windows

Mono for Android currently requires the latest 2.6 beta version of MonoDevelop. You can download it from http://monodevelop.com/Download


Step 6 - Install Mono for Android MonoDevelop addin

The latest MonoDevelop beta includes the Mono for Android MonoDevelop addin, but it may be the case that a newer version of the addin is available.

To make sure you are using the latest one go to the Tools->Addin Manager dialog, and go to Updates. In case a newer version exist, a Mobile development node will appear, containing a "Mono for Android development" element. Select it and click on the "Update" button on the right.


Configuring the Addin

After installing the addin, you will have to tell it where you have installed the Android SDK.
Open the Tools->Options dialog, go to the Other category, and select the Mono for Android SDKs option panel, and specify the Android SDK location.
options.jpeg

Comments

Popular posts from this blog

Restore Database from .idb & .frm files in MySQL

  Prerequisites:                Backup of .ibd and .frm files: Ensure you have all the relevant .ibd (InnoDB data files) and .frm (table definition files) for the tables you want to restore. MySQL Server: Ensure you have a running instance of MySQL server where you want to restore the database. Step 1: Stop Current Running MySQL Service Step 2: Copy ibdata1, ib_logfile0 and ib_logfile1 files from Old Mysql forlder Which is exist (C:\ProgramData\MySQL\MySQL Server x.x\Data).   Step 3: Copy your Database Folder which you want to restore and paste into your current mysql instance data folder.   Step 4: Change the configuration of my.ini file Add  –innodb_force_recovery=6 after the [mysqld] (please search inside my.ini file [mysqld]). Step 5: S tart the mysql service. Step 6: After recovering the database please remove the line innodb_force_recovery=6 from my.ini configuration an...

How to Get Back Asus Zenphone 5 from Soft Brick

Dear Folks, Very Warm Welcome, Now I'm Writing this post for those who have facing hard bricked problem in #AsusZenphone5. Before some days same problem i have faced and i was fully fade up with my phone and i go too many shops for  repairing the phone but they charged too much for this. then i decided too solve it. So when your phone is in USB Logo mode or Asus Logo Mode Then it's confirmed your phone has been bricked. So, let’s start! There are some files, please prepare to download :   IntelAndroidDrvSetup1.5.0.exe Asus USB Driver. Download  here  Asus Zenfone 5 RAW firmware. Download   here   xfstk-downloader-setup-1.5.1.exe   iSocUSB-Driver-Setup-1.0.4.exe Recovery Image. Download  here ADB + Fastboot. Download  here Instruction :  install above driver as per ranking. follow these instruction while installing: Right click on setup Select run as administrator  Note  : while installing isoc drive...

How to configure Glowroot with Liferay

 Dear Folks, First of all we need to know what is Glowroot and what can we get from it. Features Trace capture for slow requests and errors Continuous profiling (with very handy filtering) Response time breakdown charts Response time percentile charts SQL capture and aggregation Service call capture and aggregation MBean attribute capture and charts Configurable alerting Historical rollup of all data (1m, 5m, 30m, 4h) with configurable retention Full support for async requests that span multiple threads Responsive UI with mobile support Optional central collector Step 1: Download Glowroot from Official website and extract that zip into your drive (                     Like: C:\glowroot). Now open your Liferay workspace and in the Servers tab double click on your server and click on the Browse External properties button and write your glowroot file path with javaagent. (Ex:-  -javaagent:path/to/glowroot.jar) After tha...