We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44813bf commit 5f52ed8Copy full SHA for 5f52ed8
android-app/src/main/java/com/icerockdev/android_app/MainActivity.kt
@@ -9,7 +9,8 @@ class MainActivity : AppCompatActivity() {
9
override fun onCreate(savedInstanceState: Bundle?) {
10
super.onCreate(savedInstanceState)
11
setContentView(R.layout.activity_main)
12
-
+
13
HelloWorld.print()
14
+ AndroidHelloWorld.print()
15
}
16
mpp-library/src/androidMain/kotlin/AndroidHelloWorld.kt
@@ -0,0 +1,11 @@
1
+/*
2
+ * Copyright 2019 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
3
+ */
4
5
+import android.util.Log
6
7
+object AndroidHelloWorld {
8
+ fun print() {
+ Log.v("MPP", "hello android world")
+ }
+}
0 commit comments