Skip to main content

Privacy Policy for DSS High School App

Privacy Policy for DSS High School App

Effective Date: 10 December 2025 — Last updated: 10 December 2025

DSS High SchoolApp: Smart School (mobile)Contact: mgbclakhisaraie@gmail.com

At DSS High School ("we," "our," or "us"), we are committed to protecting the privacy of our students, parents, and staff. This Privacy Policy explains how the Smart School mobile application (the "App") collects, uses, and discloses information. This policy applies to information processed through the App, which acts as a mobile interface to our school's management system.

1. Information We Collect

The information processed by the App is managed by your school.

A. Information Provided by You or Your School

When you use the App, we process information that you or your school has provided to our system. This includes:

  • Login Credentials: Your username and password to securely access the App.
  • Personal Identification Information: Name, student ID, parent information, and contact details.
  • Academic Information: Class schedules, grades, attendance records, assignments, and fee status.
  • Profile Information: Profile pictures and other user account details.

B. Information Collected Automatically

The App collects limited information from your mobile device automatically to function correctly:

  • Device and Usage Data: We use networking libraries (e.g., Volley) to communicate with our servers. This process may involve your device's IP address, device type, and operating system.
  • Push Notification Token: To send important school announcements and alerts, the App uses Google's Firebase Cloud Messaging service. This service collects a unique, anonymous token (an Instance ID) from your device. We do not use this token to personally identify you.

2. How We Use Your Information

We use the information processed by the App for educational and administrative purposes only, including:

  • To Provide Educational Services: Give students and parents access to academic records, timetables, attendance, and other school-related information.
  • To Authenticate Your Account: Verify your identity and provide secure access to your or your child's information.
  • To Communicate With You: Send important updates, announcements, fee reminders, and other relevant school communications via push notifications.
  • To Improve Our Services: Maintain and improve App functionality and ensure a stable user experience.

3. Data Sharing and Disclosure

We do not sell or rent your personal information. Your information is shared only in the following circumstances:

  • With Your School: The App is a direct conduit to your school's information system. All personal and academic data is primarily stored on and managed by the school's servers.
  • With Third-Party Service Providers: We use third-party services to help the App function. These providers are bound by their own privacy policies and by contractual obligations to protect your data.
  • Google (Firebase Cloud Messaging): We share an anonymous device token with Google to facilitate push notifications. For more information, please review Google's Privacy Policy.
  • For Legal Reasons: We may disclose your information if required by law or in response to valid requests from public authorities (e.g., a court or government agency).

4. Data Security

We take the security of your personal information seriously. We implement reasonable technical and administrative safeguards to protect your data, including:

  • Using secure protocols (HTTPS) for all communications between the App and our servers.
  • Implementing secure authentication measures to protect user accounts.

However, no method of transmission over the internet or electronic storage is 100% secure, and we cannot guarantee absolute security.

5. Your Rights and Choices

You have rights over your personal information. As the App is an interface for the school's data system, requests to exercise these rights should be directed to your school's administration. These rights include:

  • Access and Correction: You can review and update your profile information through the App or by contacting your school.
  • Data Deletion: You can request the deletion of your personal data, subject to your school's data retention policies and legal obligations.

6. Children\'s Privacy

We are committed to protecting the privacy of our students. The App processes student information solely for educational purposes at the direction and under the authority of the school. Consent for the collection of a student's data is obtained by the school, typically upon enrollment.

7. Changes to This Privacy Policy

We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new policy within the App or on our website. Please check the Effective Date at the top to see when this policy was last revised.

8. Contact Us

If you have any questions about this Privacy Policy or our data practices, please contact us at:

Email: dsshighschl@gmail.com

Phone: +91 9241797726

Address: Lakhisarai, bihar - 805409, Bihar 800008

© 2025 DSS High School. All rights reserved.

Popular posts from this blog

how to create chat gpt app in android with java code

  I'd be happy to provide you with some sample Java code for a chat GPT app in Android, however it is important to note that creating a complete and functional app requires a solid understanding of Android development, Java and OpenAI API, and also the code I provide here is just a skeleton or a sample of what it would look like in practice. You would need to import the OpenAI API library and configure it with your API key. Here is an example of how you might use the OpenAI Java client library to send user input to the GPT-3 model and receive the generated response: import openai.OpenAI; public class ChatGPT { private OpenAI openai; private String apiKey = "YOUR_API_KEY"; public ChatGPT() { openai = new OpenAI(apiKey); } public String generateResponse(String input) { String response = ""; try { response = openai.completions().create() .engine("text-davinci-002") ...

how to send user location in background android code

  To send a user's location in the background in an Android application, you can use the FusedLocationProviderClient class to request location updates and the Service class to run a background service that can perform the location updates and send the data to your server or another destination. Here is an example of how to set up a background service that requests location updates every 5 minutes: Create a new service class that extends Service , for example LocationUpdateService . In the onCreate() method of the service, initialize the FusedLocationProviderClient and request location updates using the requestLocationUpdates() method. FusedLocationProviderClient fusedLocationClient; @Override public void onCreate() {     super.onCreate();     fusedLocationClient = LocationServices.getFusedLocationProviderClient(this);     fusedLocationClient.requestLocationUpdates(             getLocationRequest(),     ...
How To setup Android Studio For Make First android app