diff options
Diffstat (limited to 'WatercolorGames.Pong/Properties')
| -rw-r--r-- | WatercolorGames.Pong/Properties/AndroidManifest.xml | 5 | ||||
| -rw-r--r-- | WatercolorGames.Pong/Properties/AssemblyInfo.cs | 41 |
2 files changed, 46 insertions, 0 deletions
diff --git a/WatercolorGames.Pong/Properties/AndroidManifest.xml b/WatercolorGames.Pong/Properties/AndroidManifest.xml new file mode 100644 index 0000000..887cf6b --- /dev/null +++ b/WatercolorGames.Pong/Properties/AndroidManifest.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="WatercolorGames.Pong" android:versionCode="1" android:versionName="1.0" android:installLocation="auto"> + <uses-sdk android:minSdkVersion="23" /> + <application android:label="WatercolorGames.Pong"></application> +</manifest>
\ No newline at end of file diff --git a/WatercolorGames.Pong/Properties/AssemblyInfo.cs b/WatercolorGames.Pong/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..1efb0ab --- /dev/null +++ b/WatercolorGames.Pong/Properties/AssemblyInfo.cs @@ -0,0 +1,41 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Android.App; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("WatercolorGames.Pong")] +[assembly: AssemblyProduct("WatercolorGames.Pong")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("35d5f325-e46a-410b-ab70-1b9accd0b118")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] + +// Add some common permissions, these can be removed if not needed +[assembly: UsesPermission(Android.Manifest.Permission.Internet)] +[assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] |
