11
Apr2018
How to determine and set your default java version on OSX
[korey@localhost ~]$ cd /Library/Java/JavaVirtualMachines
[korey@localhost /Library/Java/JavaVirtualMachines]$ ls -al
This will give you a list of JDKs that you have installed.
To set the default java version to 1.8.0_131 for example, use the following command:
[korey@localhost ~]$ /usr/libexec/java_home -v 1.8.0_131 --exec javac -version
Related link read more
21
Feb2013
Automating Android Builds
- If you started your project from Eclipse, you may not have the Ant build file and supporting properties file in your project
- If you want to sign your application with a key, the default build keeps prompting you for the keystore password
Both of these are relatively easy to over come and here is a great article on StackOverflow. My only goal here is capture it all in one place.
Environment Setup
The first thing to do, is to make sure that your android SDK folder is on your path. In order to do that, just update your local .bash_profile in your home folder to include the following paths:
#!/bin/sh
export PATH=$PATH:$HOME:$HOME/Documents/Development/android-sdk-macosx/tools:\
$HOME/Documents/Development/android-sdk-macosx/platform-tools
export ANDROID_HOME=/Users/Kouroche/Documents/Development/android-sdk-macosx
Note the \ in the first export command. It is there to split the command over two lines, but you don’t need that in there. This will not only add the Android SDK to your path, but also define ANDROID_HOME which is used by the build file (more on that later).
At this point, you will either have to logout and login again, or source .bash_profile to make sure the changes took effect. To verify, run the following command from your home folder:
$ android list targets
Build files
In order to add the build files to your project, you can either create a new project from the command line and copy those build files to your project, or you could update you project from the command line to add in the build files.Creating a new project
In order to create a new project from the command line, run the following command:
$ android create project --target --name MyFirstApp \
--path /MyApp --activity MainActivity \
--package com.acme.myapp
The app name nor the package matter. The only thing you may want to match to your current application is the <target-id>.
Once the project is created, copy over the following files to the root of your own project and then delete this app folder.- ant.properties – This is where you store your project specific properties for Ant
- build.xml – This is the generic build file provided by the Android SDK and will most likely not need changing
- local.properties – This file contains the path to your SDK, but I prefer not to copy it over since it may get checked in by mistake.
- progaurd-project.txt – This file contains ProGaurd rules if you choose to obfuscate your code, and more can be found here about that.
- project.properties – This file contains the target for your project and is most likely already part of your project.
Updating your existing project
This is probably your best bet since it is less of a hack and should add the same set of files to your project.
$ android update project --name --target \
--path
Once again, make sure to use the same <target-id>
Customizing the build
Now that you can use Ant to build your project, you may want to customize the build process to meet your needs. For example, I always include a build ID somewhere in the application so users can report which build they are on when reporting issues, or you may want your release build to point to a different backend server than your debug build. In any case, the Android SDK makes this also very easy. Looking at the build file, it optionally imports a custom_rules.xml file that you can create in your project root folder to hook into the build process. The build file even lists out the targets for your to include. Here is a sample one I created:
What this does, is to update the build ID in my constants class, and also update the backend server my app talks to depending on whether it is a release build or not.
Signing the app
One of the issues I mentioned early on, for the need to have build automation, was having to provide a password each time the app needed to be signed. Well, the key to solving this problem is the ant.properties file which includes your project specific properties. Unfortunately, i have not found a way around having to include your password in plaintext in some form or fashion so that it can be used, but if your an individual or have a designated build person or machine, you can lock the file down pretty good. So, to get back to the issue at hand, include the following four lines in your ant.properties file and you are good to go:
key.store=
key.store.password=
key.alias=
key.alias.password=
If you have been building with Eclipse for while and don’t recall your keystore alias, an easy way is to go through the export process in Eclipse to release the app and see what the keystore alias is.
The build command
OK, so now that it is all set, the easy part is building the application. You can run either of the following commands to build the app for debug or release respectively.
$ ant debug
or
$ ant release
Good luck.
read more
7
Mar2012
Another Blow to J2EE
5
Oct2010
GAE: Querying on Child objects using parent Key
@Inheritance(strategy = InheritanceStrategy.SUBCLASS_TABLE)
public abstract class A {
}
public class B extends A {
List<D>members;
}
@Inheritance(strategy = InheritanceStrategy.SUBCLASS_TABLE)
public abstract class C extends A {
B owner;
}
public class D extends C {
boolean active;
}
public class E extends C {
String otherProp;
}
As you can see A is my base object with some properties that I want all my objects to have. Now i want to get all Cs that are active and belong to a particular B. Well, the short answer is you cannot and that is because the relationship is not directly on the child class but is on its super class. This must be a bug!!!
Solution is to move the property down to both D and E, then I can do the query I want and get on with the rest of my life.
JDO:
Key ownerKey = KeyFactory.stringToKey(ownerKeyString);
String queryStr = "select from " + C.class.getName() +
" where owner == ownerParam && active == true";
Query q = pm.newQuery(queryStr);
q.declareVariables(B.class.getName() + " ownerParam");
myCs = (List<C>)q.execute(ownerKey);
Here is a thread where I was discovering this. read more
5
Oct2010
Get going with Tomcat & Eclipse on OSX
- Get the latest tomcat: http://tomcat.apache.org/index.html. You need to make sure you get the tar or zip file.
- Move the download to /usr/local/.
- Start a super shell:
- If you downloaded the tar, you may have noticed the warning that it will not work with OSX tar command, so make sure to use gnutar which comes with OSX.
- Now you can change owner ship on this new folder so you can start and stop tomcat without having to sudo, but I left it as is.
- Create a link to the folder so that you make your life eaiser in the long term when you install newer versions:
- Go back to your home folder and create a new script :
- Now you can start and stop tomcat from your home folder
$ sudo sh
$ gnutar xzvf apache-tomcat-6.0.26.tar.gz
$ ln -s apache-tomcat-6.0.26 tomcat
#!/bin/sh
export CATALINA_HOME=/usr/local/tomcat
export JAVA_HOM=/usr
if [ "$1" == "start" ] ; then
$CATALINA_HOME/bin/startup.sh
else
$CATALINA_HOME/bin/shutdown.sh
fi
$ sudo ./tomcat.sh start <== To start
$ sudo ./tomcat.sh <== To stop
- Go to Eclipse Preferences ->Server -> Runtime Environments
- Click Add and select the right Tomcat Version
- Put in /usr/local/tomcat for the Tomcat Installation directory (the link we created above)
- Click Finish and you should be setup
-
Good Luck! read more