Skip to main content

Hello World!

Hi, welcome to my blog.

I'm going to use this space to write about how to build Android apps and share my background and some lessons learned for the past 4 years working as an Android developer.

Software development is growing very fast, with tons of new languages, frameworks, components released so, we the developers have to be up to date and take advantage of the latest technologies and tools if we want to succeed. That is my goal with this project to help people out there trying to come into this space.

If you are new to Android development you come to the right place. Stay tuned, in my first blog series I'll be writing about Kotlin for Android Development and I'll teach you how to build your first app.

I am very excited to start this journey and be able to connect with you. I want to know what your next app idea is. Leave a comment down below and don't forget to hit the subscribe button.

I'll leave here a picture of me back in 2016 at the Google I/O.




Comments

Popular posts from this blog

How to use gradle to find dependency tree

A quick guide to creating an easy to read report of your dependency tree using Gradle.  Inspecting Dependencies  Gradle provides enough tools to navigate large dependency graphs and solve situations that can lead to  dependency hell . You can choose to render the full graph of dependencies as well as identify the selection reason and origin for a dependency. Listing dependencies in your project Rendering the dependency tree is particularly useful if you'd like to identify which dependencies have been resolved at runtime and get valuable information in case any dependency conflict resolution occurred. The dependency report will contain declared and transitive dependencies. Every Gradle project provides the task dependencies for rendering the so-called dependency report from the command line. By default, the dependency report presents dependencies for all configurations. To print information for a specific configuration, you need to provide the optional parameter