Skip to content

Commit f312558

Browse files
committed
try warning
1 parent 57abf89 commit f312558

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.monstar_lab.sample.android.kotlin">
44

5-
<application
5+
<application
66
android:allowBackup="true"
77
android:icon="@mipmap/ic_launcher"
88
android:label="@string/app_name"

app/src/main/java/com/monstar_lab/sample/android/kotlin/MainActivity.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class MainActivity : AppCompatActivity() {
1515
setContentView(R.layout.activity_main)
1616
setSupportActionBar(toolbar)
1717

18-
fab.setOnClickListener { view ->
18+
fab.setOnClickListener {view ->
1919
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
2020
.setAction("Action", null).show()
2121
}
@@ -27,6 +27,7 @@ class MainActivity : AppCompatActivity() {
2727
return true
2828
}
2929

30+
3031
override fun onOptionsItemSelected(item: MenuItem): Boolean {
3132
// Handle action bar item clicks here. The action bar will
3233
// automatically handle clicks on the Home/Up button, so long

0 commit comments

Comments
 (0)