Timothy Reynolds built the Project Omni (Flutter Chat) app as a Free app. This Service is provided by Timothy Reynolds at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to […]
Posted by Tim |
Monday, 9 September 2018 |
General
NOTE: These instructions for upgrading an existing project with Kotlin support is for codebases that are using Gradle 4 (Gradle Plugin version 3.x.x) To provide support for Kotlin in a project that only has Java support, try the following: add the latest Kotlin version number as a static variable in the buildscript section add the Kotlin class path to dependencies […]
Posted by Tim |
Thursday, 10 October 2017 |
General
Here is the second script in my series of articles that centers around bash scripts for Android development in Android Studio. Eventually I will combine all of these bash scripts into one main file and have actions launched based on the shell arguments passed to the shell script. The script below uses the now familiar loop that will iterate through […]
Posted by Tim |
Thursday, 10 October 2017 |
General
Here’s a script I created for connecting a device to adb through wifi (wireless connection). For the best results connect only one device through USB to adb and then run this script. I’ve been able to connect up to four devices wirelessly by using this script. Note that when the script is run, the devices ip address will be saved […]
I’m putting together a bunch of bash scripts that I use while developing Android apps with Android Studio. This first script will iterate through each relevant line that is outputted from the adb devices command. So if multiple devices are connected to adb, then all are listed. I’m using the -e argument with grep to search for the patterns that […]
I recently updated to Android Studio 2.3 which now includes gradle plugin 3.3. After upgrading I tried compiling and ran into issues with one of the classes that had data binding implemented. I came across data binding errors that looked like: error: package com.myproject.com.databinding does not exist Through some research I was able to get the error resolved by adding […]
Posted by Tim |
Tuesday, 12 December 2014 |
General
Here’s a basic bash script that will determine the estimated time it will take to compress a directory using .tar.gz. NOTE: If you have a basic linux installation then you will need to install the pv utility for monitoring piped data. # install on fedora/centos $: yum install pv # install on ubuntu/debian $: apt-get install pv It will show […]
Posted by Tim |
Wednesday, 1 January 2014 |
General
I ordered my Nexus 5 directly from Google last Thursday. I knew I would be checking shipping detail updates constantly. I was horrified to learn that my order would not ship until this Monday. Thankfully the ground shipping got the phone to my house by Wednesday, while I kept on hitting refresh on the UPS tracking site to get constant […]
All configuration options for vim are stored in the user’s home directory in a file named .vimrc The script code is below but there are somethings you’ll want to do before setting it up. You’ll need to create directories for the following: backups, colors, swaps and undo. Execute this command to set up the directories in the terminal ( The […]
I needed a way to a way to mount a php project on a LAMP stack running Ubuntu in vmware. I didn’t want to jump through the hoops of setting up WebDav, so I found a way to mount the volume using ssh. Here’s a great article that guides you through the process. Getting the ssh mount to work on […]