Skip to main content

Privacy Policy

Privacy Policy Privacy Policy

This privacy policy applies to the Rhino VPN app (hereby referred to as "Application") for mobile devices that was created by Codewithyaji (hereby referred to as "Service Provider") as a Free service. This service is intended for use "AS IS".


What information does the Application obtain and how is it used?

The Application does not obtain any information when you download and use it. Registration is not required to use the Application.


Does the Application collect precise real time location information of the device?

This Application does not collect precise information about the location of your mobile device.


Do third parties see and/or have access to information obtained by the Application?

Since the Application does not collect any information, no data is shared with third parties.


What are my opt-out rights?

You can stop all collection of information by the Application easily by uninstalling it. You may use the standard uninstall processes as may be available as part of your mobile device or via the mobile application marketplace or network.


Children

The Application is not used to knowingly solicit data from or market to children under the age of 13.


The Service Provider does not knowingly collect personally identifiable information from children. The Service Provider encourages all children to never submit any personally identifiable information through the Application and/or Services. The Service Provider encourage parents and legal guardians to monitor their children's Internet usage and to help enforce this Policy by instructing their children never to provide personally identifiable information through the Application and/or Services without their permission. If you have reason to believe that a child has provided personally identifiable information to the Service Provider through the Application and/or Services, please contact the Service Provider (manish.mg698@gmail.com) so that they will be able to take the necessary actions. You must also be at least 16 years of age to consent to the processing of your personally identifiable information in your country (in some countries we may allow your parent or guardian to do so on your behalf).


Security

The Service Provider is concerned about safeguarding the confidentiality of your information. However, since the Application does not collect any information, there is no risk of your data being accessed by unauthorized individuals.


Changes

This Privacy Policy may be updated from time to time for any reason. The Service Provider will notify you of any changes to their Privacy Policy by updating this page with the new Privacy Policy. You are advised to consult this Privacy Policy regularly for any changes, as continued use is deemed approval of all changes.


This privacy policy is effective as of 2025-07-18


Your Consent

By using the Application, you are consenting to the processing of your information as set forth in this Privacy Policy now and as amended by the Service Provider.


Contact Us

If you have any questions regarding privacy while using the Application, or have questions about the practices, please contact the Service Provider via email at manish.mg698@gmail.com.


This privacy policy page was generated by App Privacy Policy Generator

Comments

Popular posts from this blog

Exploring Methods of String Class

  Introduction String manipulation is arguably one of the most common activities in computer programming. String class has a variety of methods for string manipulation. We will discuss basic methods with examples.  public char charAt(int index) This method requires an integer argument that indicates the position of the character that the method returns.This method returns the character located at the String's specified index. Remember, String indexes are zero-based—for example, String x = "airplane"; System.out.println( x.charAt(2) ); // output is 'r' public String concat(String s) This method returns a String with the value of the String passed in to the method appended to the end of the String used to invoke the method—for example, String x = "book"; System.out.println( x.concat(" author") ); // output is "book author" The overloaded + and += operators perform functions similar to the concat()method—for example, String x = "lib...

Java increment & decrement operator

  Increment and Decrement Operator in Java : It is one of the variation of “ Arithmetic Operator “. Increment and Decrement Operators are Unary Operators. Unary Operator Operates on One Operand. Increment Operator is Used to Increment Value Stored inside Variable on which it is operating. Decrement Operator is used to decrement value of Variable by 1 (default). Types of Increment and Decrement Operator : Pre Increment / Pre Decrement Operator Post Increment / Post Decrement Operator Syntax : ++ Increment operator : increments a value by 1 -- Decrement operator : decrements a value by 1 Pre-Increment Operator : “++” is written before Variable name. Value is Incremented First and then incremented value is used in expression. “++” cannot be used over “ Constant ” of “ final Variable “. Live Example 1 : Post Incrementing Variable [468×60] class PostIncrement { public static void main ( String args [ ] ) { int num1 = 1 ; int num2 = 1 ; num1 + + ; num2 + +...