From 6c04fd1bf151932af1a988bae38a9c9c48f773f2 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Fri, 4 Aug 2023 02:12:51 +0100 Subject: [PATCH] feat: add google play policy privacy --- .../Pages/Privacy/GooglePlay.cshtml | 31 +++++++++++++++++++ .../Pages/Privacy/GooglePlay.cshtml.cs | 7 +++++ 2 files changed, 38 insertions(+) create mode 100644 oliverbooth.dev/Pages/Privacy/GooglePlay.cshtml create mode 100644 oliverbooth.dev/Pages/Privacy/GooglePlay.cshtml.cs diff --git a/oliverbooth.dev/Pages/Privacy/GooglePlay.cshtml b/oliverbooth.dev/Pages/Privacy/GooglePlay.cshtml new file mode 100644 index 0000000..452c86f --- /dev/null +++ b/oliverbooth.dev/Pages/Privacy/GooglePlay.cshtml @@ -0,0 +1,31 @@ +@page "/privacy/google-play" +@model OliverBooth.Pages.Privacy.GooglePlay +@{ + ViewData["Title"] = "Google Play Privacy Policy"; +} +

@ViewData["Title"]

+

Last Updated: 26 May 2023

+

This Privacy Policy describes how your personal information is collected, used, and shared when you use or interact with applications that I publish on the Google Play Store.

+ +

Introduction

+

I am committed to protecting your privacy and ensuring the security of any information you provide to me when using my applications. This Privacy Policy outlines my practices regarding the collection, use, and disclosure of information I may gather from users of my applications.

+ +

Information I Collect

+

I do not collect any personally identifiable information about you when you use my applications. I do not use any cookies or similar tracking technologies that can identify individual users.

+

However, please note that my applications may make use of third party integrations such as Google Play Services or others. I am not responsible for the privacy practices or content of these third-party services. I encourage you to review the privacy policies of those third-party services before providing any personal information.

+ +

Use of Information

+

Since I do not collect any personal information about you, I do not use it for any purpose.

+ +

Disclosure of Information

+

I do not share any personal information about you because I do not collect any such information.

+

However, please be aware that my applications contains links to third-party websites and services. I am not responsible for the privacy practices or content of these third-party sites. I encourage you to review the privacy policies of those third-party sites before providing any personal information.

+ +

Security

+

I prioritize the security of your personal information and take reasonable precautions to protect it. However, please be aware that no method of transmission over the internet or electronic storage is 100% secure, and I cannot guarantee absolute security.

+ +

Changes to this Privacy Policy

+

I may update this Privacy Policy from time to time to reflect changes in my practices or for other operational, legal, or regulatory reasons. I encourage you to review this Privacy Policy periodically for any updates. The revised policy will be effective immediately upon posting.

+ +

Contact Me

+

If you have any questions or concerns about this Privacy Policy or my privacy practices, please get in touch.

\ No newline at end of file diff --git a/oliverbooth.dev/Pages/Privacy/GooglePlay.cshtml.cs b/oliverbooth.dev/Pages/Privacy/GooglePlay.cshtml.cs new file mode 100644 index 0000000..12995c2 --- /dev/null +++ b/oliverbooth.dev/Pages/Privacy/GooglePlay.cshtml.cs @@ -0,0 +1,7 @@ +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace OliverBooth.Pages.Privacy; + +public class GooglePlay : PageModel +{ +}