This file contains hidden or 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 | |
| # author Marek Vavrecan (vavrecan@gmail.com) | |
| # show usage | |
| [ $# -eq 0 ] && { echo "Usage: $0 [apk path] [source namespace] [target namespace]"; exit 1; } | |
| APK_PATH="$1" | |
| NAMESPACE_FROM="$2" | |
| NAMESPACE_TO="$3" |
This file contains hidden or 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
| //Code sanitized to protect the foolish. | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using System.Reflection; | |
| using System.Web.UI; | |
| namespace Mobile.Web.Control | |
| { | |
| /// <summary> |
NewerOlder