Skip to main content

Privacy Policy for Worship Jesus

 

Privacy Policy for Worship Jesus

Effective Date: January 16, 2026

At Worship Jesus, we are committed to providing a transparent experience. This Privacy Policy describes how we handle information when you use our mobile application.

1. Information Collection and Use

While we (the developers) do not personally collect or store your private data, our app uses third-party services that may collect information used to identify you.

  • Lyrics & User Content: All lyrics are in the public domain. Any lyrics you add manually via the dialog box are stored locally on your device. We do not have access to, or control over, these lyrics.

  • Third-Party SDKs: Our app integrates the following services which may collect data (such as IP addresses, Advertising IDs, and usage statistics) to provide ads and analytics:

    • Google Play Services

    • AdMob (for advertisements)

    • Firebase Analytics (to understand app performance)

For more information, please visit the Google Privacy & Terms.

2. Permissions & Features

To provide full functionality, the app requires the following permissions:

  • Camera: Used solely for scanning QR codes to import lyrics. We do not capture or store any images or videos.

  • Storage/Files: Used to import or export lyrics as JSON files.

  • Internet Access: Required for AdMob to display advertisements and for Firebase to provide basic app performance analytics.

3. Sharing Lyrics

The app allows you to share lyrics via:

  • QR Code: Generated and scanned locally on your device.

  • External Apps: You can export lyrics as JSON files and share them via WhatsApp, Telegram, Bluetooth, Google Drive, etc.

Note: When you share content through third-party apps, those apps' own privacy policies apply. We are not responsible for the security of data once it leaves our application.

4. How to Opt-Out

You can limit the data collected by our third-party partners by:

  • Resetting your Advertising ID in your Android device settings.

  • Disabling "Personalized Ads" in your Google Account settings.

5. Security

We value your trust. Since we do not store your personal data on our own servers, your information is as secure as your mobile device. However, remember that no method of transmission over the internet or electronic storage is 100% secure.

6. Children’s Privacy

Our app does not knowingly collect personally identifiable information from children under 13. If you are a parent and you are aware that your child has provided personal information to the third-party services we use, please contact the service provider directly.

7. Changes to This Policy

We may update this Privacy Policy periodically. We recommend reviewing this page occasionally for any changes.

8. Contact Us

If you have any questions regarding this policy, please contact us at: webnwork@gmail.com

Comments

Popular posts from this blog

Generate Multi Domain SSL Certificate by useing cert bot tool from Let's Encrypt.

 We are using cert bot tool to generate / create multi domain certificate from Let's Encrypt CA. we are using following command  create CSR config file to generate CSR: Example of csr file is: default_bits            = 2048  # RSA key size encrypt_key             = no  # Protect private key default_md              = sha256  # MD to use utf8                    = yes  # Input is UTF-8 string_mask             = utf8only  # Emit UTF-8 strings prompt                  = no  # Prompt for DN distinguished_name      = s...

How to Check all user logged in Linux server?

We are learning how to get all logged in user name in a Linux server you need administrative privileges to execute commands cover here.    There are many ways to list logged in user on a Linux machine. Here I am covering my three favourite  method for this purpose. All this command run with any fedora based system like Red Head Linux , Centos, Rocky Linux, Amla linux etc. 1. lastlog : you can use list command to know all login user. this command uses file available in /var/log/lastlog. This command read data from the mentioned file and present in a human readable from     You can use grep command to filter output and show only currently logged in user by following command. lastlog | grep -v 'Never' In this example we use grep -v switch to exclude all line containing Never. This way we find all currently logged in user. 2. W command : This is more preferable way to get all logged in user, it uses file mentioned on lastlog command and file situated on /proc...

How to Clear Putty Screen while working with Linux Server?

 Method to clear putty screen while working with Linux Server. It will clear screen buffer and provide true experience of clear screen ( console ).  Have you ever worked remotely with Linux system? it is common to work remotely on Linux system. Putty is popular remote login tool in system admin community. It's freely available open source software and it works on Linux as well as Windows platform. It's widely adopted tool for remote login. Figure: Putty Icon - Popular Remote Login Software. Now imagine you are connected remotely with a Linux system and you are troubleshooting some problem. You are typing command on putty console  and running it and after some time all screen field with lot of text. Screen become messy with full of text  and create confusion while troubleshooting Linux system. After then you type clear command on console and all text cleared as you execute clear command but as soon as you touch scroll bar or up down arrow key, text returned on console...