Skip to main content

Privacy Policy

Your privacy is very important to us. At NPLIX we have a few fundamental principles that we follow:
  • We don’t ask you for personal information unless we truly need it. (We can’t stand services that ask you for things like your gender or income level for no apparent reason.)
  • We don’t share your personal information with anyone except to comply with the law, develop our products, or protect our rights.
  • We don’t store personal information on our servers unless required for the on-going operation of our site.
Website Visitors and App User
Like most websites and app distributors, NPLIX collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. NPLIX purpose in collecting non-personally identifying information is to better understand how NPLIX visitors use its website and app. From time to time, NPLIX may release non-personally-identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its website.
NPLIX also collects potentially personally-identifying information like Internet Protocol (IP) addresses for logged in users and for users leaving comments on our blogs and app.NPLIX only discloses logged in user and commenters IP addresses under the same circumstances that it uses and discloses personally-identifying information as described below, except that blog commenters IP addresses are visible and disclosed to the administrators of the blog where the comment was left.
Gathering of Personally-Identifying Information
Certain visitors and users of  NPLIX websites/App choose to interact with NPLIX in ways that require NPLIX  to gather personally-identifying information. The amount and type of information that NPLIX gathers depend on the nature of the interaction. For example, we ask visitors who comment on our blog to provide a username and email address. Those who wish to receive NPLIX updates via email, we collect their emails. In each case, NPLIX collects such information only insofar as is necessary or appropriate to fulfill the purpose of the visitor’s interaction with NPLIX. NPLIX does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that it may prevent them from engaging in certain website-related activities.
Aggregated Statistics
NPLIX may collect statistics about the behavior of visitors to its websites. For instance, NPLIX may use spam screened by the Akismet service to help identify spam. NPLIX may display this information publicly or provide it to others. However, NPLIX does not disclose personally-identifying information other than as described below.
Protection of Certain Personally-Identifying Information
NPLIX discloses potentially personally-identifying and personally-identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on NPLIX behalf or to provide services available at NPLIX websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using NPLIX websites and Apps, you consent to the transfer of such information to them. NPLIX will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to its employees, contractors, and affiliated organizations, as described above, NPLIX discloses potentially personally-identifying and personally-identifying information only in response to a subpoena, court order or other governmental request, or when NPLIX believes in good faith that disclosure is reasonably necessary to protect the property or rights of NPLIX, third parties or the public at large. If you are a registered user of an NPLIX website and have supplied your email address, NPLIX may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with NPLIX and our products. We primarily use our blogs to communicate this type of information, so we expect to keep this type of email to a minimum. If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify or respond to your request or to help us support other users. NPLIX takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally-identifying and personally-identifying information.
Cookies
A cookie is a string of information that a website stores on a visitor’s computer, and that the visitor’s browser provides to the website each time the visitor returns. NPLIX uses cookies to help NPLIX identify and track visitors, their usage of NPLIX website and Apps, and their website access preferences. NPLIX visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using NPLIX websites, with the drawback that certain features of NPLIX websites may not function properly without the aid of cookies.

Ads
Ads appearing on our(NPLIX) websites/app may be delivered to users by advertising partners including Google, use cookies to serve ads based on a user’s prior visits to your website or other websites. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by NPLIX and does not cover the use of cookies by any advertisers.
You can opt-out of personalized advertising served by Google at any time by visiting Ads Settings.
Comments
Comments and other content submitted to Akismet anti-spam service are not saved on our servers unless they were marked as false positives, in which case we store them long enough to use them to improve the service to avoid future false positives.
Privacy Policy Changes
Although most changes are likely to be minor, NPLIX may change its Privacy Policy from time to time, and in NPLIX sole discretion. NPLIX encourages visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.

Comments

Popular posts from this blog

Flutter How to Start Android Activity from Flutter View

Flutter and Dart is an excellent combination for creating the UI, but for accessing the platform-specific service we need to open platform-specific activity. So lets in this article we will explore how to start an android activity and access the service from Flutter View. Create a Project for this Android Activity Flutter View Demo Create a Project From File menu select the New Flutter Project Enter the project name Select the AndroidX support and click on next After the above, we step click on Finish We will have the following project structure created. Create the Second Activity in Android Just go to the android folder and open it in separate windows. We will have the following project structure. Create the Activity Just right-click on the Kotlin folder and create a blank activity from the menu. If you create the activity then you may be required to upgrade the Gradle and do some import. So Just click on update and wait for the project s

Kotlin Parcelable Array Objects Send To Activity

We know that IPC (Inter Process Communication) between the activity is an extremely important part of any application development. We often required that we need to send some data to other activity. For example, we may be required to send an array of data, data could be an Integer, String, Long, Double, Float or any other custom data objects. So, In this example, we are going to learn how to implement the Kotlin Parcelable Array object to send the data from one activity to second activity. What is Parcel? The parcel class is designed as a high-performance IPC transport. A Parcel can contain both flattened data that will be unflattened on the other side of the IPC, and references to live IBinde r objects that will result in the other side receiving a proxy IBinder connected with the original IBinder in the Parcel. Create Kotlin Parcelable Array Objects Parcelable is API for placing the arbitrary objects into the Parcel. In Actual in android app development, Parcelable is an interface

Create Custom EditText View in Android

We use the EditText for taking the input from the user and use it at several places in our project. We required to do lots of customization for each time and there are lots of redundant code we write. Writing and managing these redundant codes is very difficult for example if we want to change the look and feel of the view them we need to modify it at each place where our EditText is getting used. So to avoid these kinds of the problem we can create our own Custom EditText View by just. The EditText view is just an extension of the TextView with lots of editing option and properties that required for the user input. How To Create Custom EditText View For creating the Custom EditText we need to extend the AppCompatEditText and override all three constructors of the view as given below. import android.content.Context; import android.graphics.Typeface; import android.support.annotation.Nullable; import android.support.v7.widget.AppCompatEditText; import android.util.AttributeSet; public