summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/kotlinMultiplatform/kmpFirstLib/src/androidMain/kotlin/com/example/kmpfirstlib/KmpAndroidFirstLibClass.kt
blob: 18315660d9a0b2e48550f801fd347252d4d4c7c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.example.kmpfirstlib

import com.example.androidlib.AndroidLib
import com.example.kmpsecondlib.KmpAndroidSecondLibClass

class KmpAndroidFirstLibClass {

    fun callCommonLibClass(): String {
        return KmpCommonFirstLibClass().get()
    }

    fun callKmpSecondLibClass(): String {
        return KmpAndroidSecondLibClass().callCommonLibClass()
    }

    fun callAndroidLibClass(): String {
        return AndroidLib().get()
    }
}