This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Reference: http://www.xgeek.net/salesforce/a-way-to-make-thread-sleep-in-apex/ | |
public class ApexUtil { | |
/********************************************************** | |
* Helper Method: wait | |
* @param Integer millisec : time for wait (millisecond) | |
*********************************************************/ | |
public static void wait(Integer millisec) { | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo add-apt-repository ppa:openjdk-r/ppa | |
sudo apt-get update | |
sudo apt-get install openjdk-8-jre | |
# install openjdk | |
sudo apt-get install openjdk-8-jdk | |
# download android sdk | |
wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz |