Created
March 2, 2015 20:39
-
-
Save jonathanpeppers/1c26c505e7544e8bb38a to your computer and use it in GitHub Desktop.
Xamarin.Android FAKE example
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
let androidPrameters = [ | |
("Configuration", "Release") | |
("AndroidKeyStore", "True") | |
("AndroidSigningKeyStore", "PathToOurKeystore.keystore") | |
("AndroidSigningStorePass", "OurPassword") | |
("AndroidSigningKeyAlias", "OurKeyAlias") | |
("AndroidSigningKeyPass", "OurPassword") | |
] | |
//Other variables | |
Target "android" (fun () -> | |
MSBuild "" "SignAndroidPackage" androidPrameters [ androidProject ] |> ignore | |
TeamCityHelper.PublishArtifact (androidDir + "/bin/Release/*-Signed.apk") | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment