Skip to main content

Posts

How to Avoid Screenshot of your App.

Description when you design an app you will add some important and premium content in your app. Now a days the people take screenshots of premium content in your app. There are some apps like hotstar,amazon prime,jio TV,Voot,MX player which contains video content which can be recorded. So In this project we make the screenshot as well as screenrecorder disable while they use our app.So there will be no data leak. In Android studio we have a code which make this happen by disabling the screenrecorder. Open the IDE and paste this code in the onCreate function in Mainactivity.java. getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE,WindowManager.LayoutParams.FLAG_SECURE); This code will make your app Screen Secure by using Flag_Secure method. Before Applying the code,I took the Screenshot of the App. After Applying the code,I tried to record the screen.... Thank You

Register form through OTP Verification using Firebase (Android Studio).

Android is an operating system that was developed by Google which is designed for touchscreen mobile devices such as smartphone and tablets. Description In this project we will build an app using A ndroid Studio. T his app will take your username and phone number.By this phone number you will receive an OTP and after entering OTP you will be able to register your phone number with the Firebase. Android Studio it is a integrated development environment (IDE) for  Android operating system, built on JetBrains' IntelliJ IDEA software and designed specifically for Android development.It is available for download on Windows, macOS and Linux based operating systems. Firebase Firebase Authentication is a service that can authenticate users using only client-side code. It supports social login providers Facebook, GitHub, Twitter and Google as well as other service providers like Google Play Games, Apple, Yahoo, and Microsoft. Additionally, it includes a user manag...

Connecting NodeMCU(esp8266) with Blynk App.

Lets Get Started... Here we will setup the NodeMCU board and Blynk App for making projects based on IoT. Steps to Setup:- 1 . First Install the Arduino IDE in your PC.                             2.Click on File and open Preferences.      3.Paste this link in URLs.(http://arduino.esp8266.com/stable/package_esp8266com_ index.json.). 4.Next Click on the Tools and select the Board Managers. 5.Search for ESP8266 and Install it. 6.Select the Board as NodeMCU 1.0 and also select the Port. 7.Write this code in the Arduino IDE. #define BLYNK_PRINT Serial   #include <ESP8266WiFi.h>   #include <BlynkSimpleEsp8266.h>      char auth[] = "Your Auth Code"; // the auth code that you got on your gmail and Blynk app   char ssid[] = "Username(WIFI)"; // username or ssid of your WI-FI...