Skip to content

Instantly share code, notes, and snippets.

@dansiegel
Created April 24, 2018 18:10
Show Gist options
  • Save dansiegel/96248c06388ea43b1e8f88f08d0fac63 to your computer and use it in GitHub Desktop.
Save dansiegel/96248c06388ea43b1e8f88f08d0fac63 to your computer and use it in GitHub Desktop.
Mobile BuildTools Secrets
secrets.json
using AwesomeApp.Helpers;
namespace AwesomeApp
{
public class Foo
{
public void DoFoo()
{
if(Secrets.SomeBool)
{
Console.WriteLine(Secrets.SomeVar);
}
}
}
}
{
"SomeVar": "A Value",
"SomeBool": true,
"SomeInt": 1,
"SomeDouble": 2.0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment