Tutorials

Launchkit: the new acquisition of google

Table of contents:

Anonim

It has become habitual for Google, from time to time, to buy small companies. Some of these to reinforce the services it offers and others to cover more markets in the technological field. This time you have chosen to purchase LaunchKit, to make life easier for your Android developers, but of… What exactly is LaunchKit? If you still don't know, keep reading and you will find out.

LaunchKit, la nueva adquisición de Google

LaunchKit es un conjunto de herramientas que le facilitan al desarrollador tareas del lanzamiento y seguimiento de sus aplicaciones móviles. Dichas herramientas están basadas en la web y ahora son de código abierto, lo que permitirá a cualquiera tener su propia instancia. Sin embargo, su cofundador Brenden Mulligan anunció que el servicio oficial continuará funcionando por un año, mientras se hace la integración al Developer Product Group de Google.

Como resultado, ahora se encuentran disponibles los siguientes productos:

  • Screenshot Builder: Crea vistosas capturas de pantalla de la aplicación, perfectas para colocar en la Play Store. Además, permite exportarlas en varias resoluciones o escoger entre diversos diseños, fuentes y colores.App Website Builder: Crea fácilmente una página web para su sitio, con logos y contenidos efectivos, basado en diseños simples y atractivos.Review Monitor: Es un monitor de comentarios de la aplicación, integrado a Slack y al buzón de correo. Adicionalmente, podría enlazarse a la cuenta de Twitter y generar un tweet por cada excelente comentario (5 estrellas) recibido.Sales Reporter: Envía informes de ventas o descargas diarias de la aplicación, disponible para Slack y/o buzón de correo. Lo más relevante es su fácil configuración y la sencillez de los reportes.

También puedes leer: Cómo redimensionar fotos en Ubuntu con ImageMagick

Instalación de LaunchKit en Ubuntu

Si eres desarrollador, seguramente te estás preguntando ¿Cómo obtener LaunchKit?, a continuación están los pasos para su instalación en Ubuntu:

  1. En primer lugar instalamos Vagrant, esto lo podemos realizar por consola ejecutando el siguiente comando:

    sudo dpkg -i vagrant_1.8.4_x86_64.deb Seguido de eso, instalamos VirtualBox, desde la consola ejecutamos las siguientes líneas: (al finalizar la instalación, no es necesario abrir la aplicación, puedes cerrarla si esta se abre):

    echo " deb http://download.virtualbox.org/virtualbox/debian trusty contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list sudo apt-get update sudo apt-get install virtualbox-5.0 The next step is the installation of ansible, in this case we have two options

    From GitHub:

sudo apt-get update sudo apt-get install python-pip python-dev git -y sudo pip install PyYAML jinja2 paramiko git clone https://github.com/ansible/ansible.git git submodule update --init --recursive cd ansible sudo make install sudo mkdir / etc / ansible sudo cp ~ / ansible / examples / hosts / e

Or from repositories:

sudo apt-get install software-properties-common sudo apt-add-repository ppa: ansible / ansible sudo apt-get update sudo apt-get install ansible

  • We continue with obtaining and configuring LaunchKit, the first thing we do by cloning the repository on GitHub, while the configuration consists of setting variables, such as access keys to APIS or SMTP servers (for more details consult the official documentation).

    git clone https://github.com/LaunchKit/LaunchKit.git cd LaunchKit Finally, we proceed to start LaunchKit (this may take time):

    vagrant up --provision

    And ready! the instance should be running at http: // localhost: 9100 /

As always we recommend reading our tutorials and if you have any questions, you can contact us.

Tutorials

Editor's choice

Back to top button