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 | |
ZIP_FILE=`echo $1 | sed 's/.apk/.zip/'` | |
KEYSTORE=~/workspace/we7-Android/Main/release.keystore | |
cp $1 $ZIP_FILE | |
zip -d $ZIP_FILE META-INF/* | |
mv $ZIP_FILE tmp.unsigned.apk | |
echo Resigning APK |
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
(function ($){ | |
var check=false, isRelative=true; | |
$.elementFromPoint = function(x,y) | |
{ | |
if(!document.elementFromPoint) return null; | |
if(!check) | |
{ | |
var sl; |