This requires the latest version of apktool.
apktool d $APK_PATH -o $OUTPUT_FOLDER
# Open the apktool.yml text file
# Alter the versionCode and versionName entries
# now rebuild!
apktool build $OUTPUT_FOLDER
using System; | |
using System.Collections.Generic; | |
namespace OperatorTest { | |
public interface ICalculator { } | |
public interface ICalculator<T> : ICalculator { | |
T Add(T a, T b); | |
T Divide(T a, T b); | |
T Multiply(T a, T b); |
// Filename: HttpServer.cs | |
// Author: Benjamin N. Summerton <define-private-public> | |
// License: Unlicense (http://unlicense.org/) | |
using System; | |
using System.IO; | |
using System.Text; | |
using System.Net; | |
using System.Threading.Tasks; |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Example", | |
"type": "node", | |
"request": "launch", | |
"runtimeExecutable": "node", | |
"runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"], |
### Keybase proof | |
I hereby claim: | |
* I am ajpinedam on github. | |
* I am pinedax (https://keybase.io/pinedax) on keybase. | |
* I have a public key ASB0L3NixFlrBkhvvmH-mv9gpIugP4VUn7B7kuXRc52dXgo | |
To claim this, I am signing this object: |
public class PowersOf2 | |
{ | |
static void Main() | |
{ | |
// Display powers of 2 up to the exponent of 8: | |
foreach (int i in Power(2, 8)) | |
{ | |
Console.Write("{0} ", i); | |
} | |
} |
This requires the latest version of apktool.
apktool d $APK_PATH -o $OUTPUT_FOLDER
# Open the apktool.yml text file
# Alter the versionCode and versionName entries
# now rebuild!
apktool build $OUTPUT_FOLDER
git config --global alias.co checkout // move between branches or checkout a file | |
git config --global alias.st status // Status of the repository | |
git config --global alias.last 'log -1' // Last commit | |
git config --global alias.bn 'checkout -b' // Create branch and move to it | |
git config --global alias.cm 'commit -m' // Commit with Message | |
git config --global alias.ca 'clean -dfx' // Clean unwanted changes using .gitignore | |
git config --global alias.ul 'reset --soft HEAD~1' // Unload last commit |
One of the best ways to investigate a problematic Xamarin.Android Binding is to first ensure you have the proper tooling available:
i386 : iPhone Simulator | |
x86_64 : iPhone Simulator | |
iPhone1,1 : iPhone | |
iPhone1,2 : iPhone 3G | |
iPhone2,1 : iPhone 3GS | |
iPhone3,1 : iPhone 4 | |
iPhone3,2 : iPhone 4 GSM Rev A | |
iPhone3,3 : iPhone 4 CDMA | |
iPhone4,1 : iPhone 4S | |
iPhone5,1 : iPhone 5 (GSM) |