Skip to content

Instantly share code, notes, and snippets.

View Jacobvu84's full-sized avatar
🎯
Focusing

Jacob Vu Jacobvu84

🎯
Focusing
  • VietNam
View GitHub Profile
#!/bin/bash
export PATH="$PATH:/usr/local/bin/"
export JAVA_HOME=$(/usr/libexec/java_home)
export PATH="$PATH:$JAVA_HOME/bin"
export M2_HOME="/Applications/apache-maven-3.6.0"
export PATH="$PATH:$M2_HOME/bin"
export ANDROID_HOME="/Users/Jacob/Library/Android/sdk"
export PATH="${PATH}:$ANDROID_HOME/platform-tools"
export PATH="${PATH}:$ANDROID_HOME/emulator"
@Jacobvu84
Jacobvu84 / iOSPushNotification
Created September 12, 2019 03:10
Swipe open the notification shade on the device
public class iOSPushNotification extends AppiumObject implements Interaction {
private String show;
public iOSPushNotification(String show) {
this.show = show;
}
@Override