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
package ${PACKAGE_NAME}; | |
import android.app.Service; | |
import android.content.Intent; | |
import android.os.IBinder; | |
#parse("File Header.java") | |
public class ${NAME} extends Service { | |
private int mServiceId; |
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
#!/bin/bash | |
############################################### | |
# How to use from terminal: | |
# $> mirakle.sh on – to enable | |
# $> mirakle.sh off – to disable | |
############################################### | |
MIRAKLE_INIT_SCRIPT_DIR="${HOME}/.gradle/init.d/" | |
MIRAKLE_INIT_SCRIPT_FILE="${MIRAKLE_INIT_SCRIPT_DIR}/mirakle_init.gradle" |
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
#!/bin/bash | |
# Script adb+ | |
# Usage | |
# You can run any command adb provides on all your currently connected devices | |
# ./adb+ <command> is the equivalent of ./adb -s <serial number> <command> | |
# | |
# Examples | |
# ./adb+ version | |
# ./adb+ install -r ./apidemo.apk | |
# ./adb+ uninstall com.example.android.apis |