Enable hidden folders in Mac (cmd +shift+ dot (.) )
Goto Home , you will find pubcache there.
As we all know we have design pattern in programming languages. So Factory Pattern in one of them and it is widely used. I have used it in my app
It falls under Creational Design Pattern.
How could we match path pattern in deep links? We have menifest file in android app and we want if deep links contains some parameters only then our app will be open from Search result .
When you want your app to be open while tapping on a link , it is deep linking.
How could we do this ?
We have intent-filter in android app, through that app will open will while tap on link.
<activity…
In this Android tutorial, we will discuss What are deep links and deferred deep links and whats the difference between them.
Code for deeplink is here
Koin is a dependency injection for Kotlin Users.
We can use koin in Android as a dependency injection framework as it is Light weight than Dagger2, and easy to understand. It is built up by IntelliJ team which has built android studio , Kotlin and other…
String is a sequence of character in Java . To Create String in Java, there are 2 ways -
First is to Create a String with literal :
String str = “hello”;
Second is with “new” :
Hey, Today we are going to learn Fibonocci series formula and code in Kotlin.
For Fobonocci Series, We have formula n = n-1 + n-2, means Our result value should be the sum of prevoius 2 terms.
Today we are going to know how to make Pyramid Pattern in Kotlin. This is Advance level in forloop, However if you are begineer you have to read Simple forloop with Star, You will get an idea with this.
Today we are going to print left traingle star in kotlin.
Expected Output
* * * * * * * * * * * * * * *
Below is the Program.