Simple VPN app in IOS (Swift5)

Creating a VPN app in iOS using swift is pretty simple. First you will need KeychainService // // KeychainService.swift // Androvaid VPN // // Created by Shaikh Wasi Sadman on…

8 Comments

Java Interface

Java Interface Java Interface is something similar to a class which is a collection of some abstract methods. All the methods in an interface are abstract methods Interface can have…

0 Comments

Java Constructor

A Java Constructor is a method with the same name as the class. It is called when we initialize any class in java and it has no return type. What…

0 Comments

Java – Object & Class

Java is an Object Oriented Programming language. That means it works with the collection of objects interacting and transferring data between each other and more. And that bring's up some…

0 Comments

Java – Environment Setup

We will be setting up the local environment for java development. We will follow the simplest way for that. Local Environment like PC I think your are willing to  java…

0 Comments

Android Architecture Pattern – MVC

Android Architecture Pattern - MVC stands for Model-View-Controller. While developing big application Architecture Patterns are the right solutions. Model — the data layer, responsible for managing the business logic and handling network…

13 Comments