March 2018
Intermediate to advanced
376 pages
7h 25m
English
Now that we have our Android Keystore ready and prepped for use, we can look at the Visual Studio project. In order to automate this in the build system, we need to configure the project to use our Keystore credentials:
<PropertyGroup Condition="'$(Configuration)' == 'Release'"> <AndroidKeyStore>True</AndroidKeyStore> <AndroidSigningKeyStore>myandroid.keystore</AndroidSigningKeyStore> <AndroidSigningStorePass>yourpassword</AndroidSigningStorePass> <AndroidSigningKeyAlias>myaliasdroidpub</AndroidSigningKeyAlias> <AndroidSigningKeyPass>yourpassword</AndroidSigningKeyPass> </PropertyGroup> ...