Jared Burrows Blog
Software Development and Course Notes
Pages
(Move to ...)
Home
Burrows Apps
Course Notes
▼
Showing posts with label
Java
.
Show all posts
Showing posts with label
Java
.
Show all posts
Saturday, July 19, 2014
How to use the same C++ code for Android and iOS?
›
Best tutorial on using C++ code with iOS and Android Please read this wonderful StackOverflow post: http://stackoverflow.com/a/...
2 comments:
Tuesday, July 3, 2012
How to install Eclipse on Ubuntu
›
How to install Eclipse Open your terminal: sudo apt-get install eclipse This is will install the stable version from the repositori...
How to switch your Java version on Ubuntu
›
How to easily change your Java version This is how you can get the versions you are using now: java -version javac -version javaws ...
How to install Java 7 on Ubuntu
›
How to install Java 7 - fastest way Add this repository: sudo add-apt-repository ppa:webupd8team/java Update your package list: ...
Tuesday, May 8, 2012
How to Reverse Engineer Android Malware
›
Reverse Engineer Android Malware Tools you may need for decompiling Android malware: apktool – a tool used for manipulating .apk files...
Thursday, September 1, 2011
Android - FREE Samples
›
Free Code and Projects I used Google to find these, very helpful for learning new layouts and different android features. GitHub http...
1 comment:
Monday, May 30, 2011
HelloWorld in Java
›
For a pure Java HelloWorld: HelloWorld.java public class HelloWorld { public static void main(String[] args) { System.out.println(...
HelloWorld in Android
›
1) Download Eclipse IDE: http://www.eclipse.org/downloads/ 2) Download Android SDK for Eclipse: http://developer.android.com/sdk/index.htm...
Home
View web version