Continuous Integration (CI) is a practice in software development when it’s encouraged to submit your code to the main repository very often – up to several times a day. Thus everyone the code is tested[…]
Tag: Java
Hello World for Android from command line
Today we will create application for a Android device using command line tools. Most books start with Hello World using Android Studio, but to better understand all the moving parts it’s better do everything manually.[…]
JUnit, unit test for Java
In one of the previous posts about Ant we mentioned that Ant supports JUnit unit test. Now let’s talk about JUnit itself. Basic tutorial is available at the source, so we will go a little[…]
Ant
If, after reading Java post, someone is curious if it’s possible to use makefile to compile Java applications – the answer would be yes. But there are better ways to do it. One of them[…]
Java, Hello World
Compiling Java sources won’t produce executable which could be run independently. It produces binary code which is executed by Java. So in order to run Java program you need Java to be installed. Just to[…]