<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res"><file name="ic_launcher" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-mdpi/ic_launcher.webp" qualifiers="mdpi-v4" type="mipmap"/><file name="ic_launcher_round" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp" qualifiers="mdpi-v4" type="mipmap"/><file name="ic_launcher" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-hdpi/ic_launcher.webp" qualifiers="hdpi-v4" type="mipmap"/><file name="ic_launcher_round" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp" qualifiers="hdpi-v4" type="mipmap"/><file name="ic_launcher_foreground" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/drawable/ic_launcher_foreground.xml" qualifiers="" type="drawable"/><file name="ic_launcher_background" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/drawable/ic_launcher_background.xml" qualifiers="" type="drawable"/><file name="ic_launcher" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp" qualifiers="xxxhdpi-v4" type="mipmap"/><file name="ic_launcher_round" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp" qualifiers="xxxhdpi-v4" type="mipmap"/><file name="activity_main" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/layout/activity_main.xml" qualifiers="" type="layout"/><file name="ic_launcher" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp" qualifiers="xxhdpi-v4" type="mipmap"/><file name="ic_launcher_round" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp" qualifiers="xxhdpi-v4" type="mipmap"/><file path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/values-night/themes.xml" qualifiers="night-v8"><style name="Base.Theme.ScrollViewExample" parent="Theme.Material3.DayNight.NoActionBar">
        
        
    </style></file><file path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/values/colors.xml" qualifiers=""><color name="black">#FF000000</color><color name="white">#FFFFFFFF</color></file><file path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/values/themes.xml" qualifiers=""><style name="Base.Theme.ScrollViewExample" parent="Theme.Material3.DayNight.NoActionBar">
        
        
    </style><style name="Theme.ScrollViewExample" parent="Base.Theme.ScrollViewExample"/></file><file path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/values/strings.xml" qualifiers=""><string name="app_name">ScrollView Example</string><string name="scrolltext">Kotlin is a statically typed,
    general-purpose programming language developed
    by JetBrains, that has built world-class IDEs
    like IntelliJ IDEA, PhpStorm, Appcode, etc.
    It was first introduced by JetBrains in 2011
    and a new language for the JVM. Kotlin is
    object-oriented language, and a “better language”
    than Java, but still be fully interoperable
    with Java code. Kotlin is sponsored by Google,
    announced as one of the official languages for
    Android Development in 2017.
    Advantages of Kotlin language:
    Easy to learn – Basic is almost similar to java.
    If anybody worked in java then easily understand
    in no time. Kotlin is multi-platform – Kotlin is
    supported by all IDEs of java so you can write
    your program and execute them on any machine
    which supports JVM. It’s much safer than Java.
    It allows using the Java frameworks and libraries
    in your new Kotlin projects by using advanced
    frameworks without any need to change the whole
    project in Java. Kotlin programming language,
    including the compiler, libraries and all the
    tooling is completely free and open source and
    available on github. Here is the link for
    Github https://github.com/JetBrains/kotlin
    Applications of Kotlin language:
    You can use Kotlin to build Android Application.
    Kotlin can also compile to JavaScript, and making
    it available for the frontend. It is also designed
    to work well for web development and server-side
    development.Kotlin is a statically typed, general-purpose
    programming language developed by JetBrains that
    has built world-class IDEs like IntelliJ IDEA,
    PhpStorm, Appcode, etc. It was first introduced
    by JetBrains in 2011.Kotlin is object-oriented
    language and a better language than Java, but still
    be fully interoperable with Java code. A constructor
    is a special member function that is invoked when
    an object of the class is created primarily to initialize
    variables or properties. A class needs to have a constructor
    and if we do not declare a constructor, then the compiler
    generates a default constructor.
    Kotlin has two types of constructors –
    Primary Constructor
    Secondary Constructor
    A class in Kotlin can have at most one primary
    constructor, and one or more secondary constructors.
    The primary constructor
    initializes the class, while the secondary
    constructor is used
    to initialize the class and introduce some extra logic.
    Explanation:
    When we create the object add for the class then
    the values 5 and 6
    passes to the constructor. The constructor
    parameters a and b
    initialize with the parameters 5 and 6 respectively.
    The local variable c contains the sum of variables.
    In the main, we access the property of
    constructor using ${add.c}.
    Explanation:
    Here, we have initialized the constructor
    parameters with some
    default values emp_id = 100 and emp_name = “abc”.
    When the object emp is created we passed the values for
    both the parameters so it prints those values.
    But, at the time of object emp2 creation,
    we have not passed
    the emp_name so initializer block uses
    the default values and
    print to the standard output.</string></file><file name="backup_rules" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/xml/backup_rules.xml" qualifiers="" type="xml"/><file name="data_extraction_rules" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/xml/data_extraction_rules.xml" qualifiers="" type="xml"/><file name="ic_launcher" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-xhdpi/ic_launcher.webp" qualifiers="xhdpi-v4" type="mipmap"/><file name="ic_launcher_round" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp" qualifiers="xhdpi-v4" type="mipmap"/><file name="ic_launcher" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-anydpi/ic_launcher.xml" qualifiers="anydpi-v4" type="mipmap"/><file name="ic_launcher_round" path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml" qualifiers="anydpi-v4" type="mipmap"/></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug" generated-set="debug$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated" generated-set="generated$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/bhecker/AndroidStudioProjects/ScrollViewExample/app/build/generated/res/resValues/debug"/></dataSet><mergedItems/></merger>