[Fixed] : “Could not find com.android.tools.build:aapt2” Error

You import a project in the new version of Android Studio and get the following error (while running or building) Could not find com.android.tools.build:aapt2:3.3.0-5013011. Searched in the following locations: … Required by: project :app The problem is the missing dependency. Beginning with Android Studio 3.2 Canary 11, the source for AAPT2 (Android Asset Packaging Tool…

Read More
GCM Test Tool

GCM Notifications Test Tool

  Here is a nifty little tool to help developers test GCM notifications. While developing GCM or Google Cloud Messaging Notifications in Android applications, it is important to have a simple server to test if client code is working correctly. This free GCM notifications test tool below does exactly that – allows you to easily…

Read More

Viewing Unpushed Git Commits

You can view changes you have made in your local repository which haven’t been pushed to the origin (remote) repository using the following command: git log origin/<yourbranchname> In case your local branch has been configured with an upstream branch, then you can use the below shorthand: git log @{u}.. or git log @{upstream}.. If you…

Read More