-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
try warning #1
base: master
Are you sure you want to change the base?
try warning #1
Conversation
8e684f3
to
f312558
Compare
@@ -15,7 +15,7 @@ class MainActivity : AppCompatActivity() { | |||
setContentView(R.layout.activity_main) | |||
setSupportActionBar(toolbar) | |||
|
|||
fab.setOnClickListener { view -> | |||
fab.setOnClickListener {view -> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing spacing after “{“ |
@@ -27,6 +27,7 @@ class MainActivity : AppCompatActivity() { | |||
return true | |||
} | |||
|
|||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needless blank line(s) |
@@ -2,7 +2,7 @@ | |||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |||
package="com.monstar_lab.sample.android.kotlin"> | |||
|
|||
<application | |||
<application |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On SDK version 23 and up, your app data will be automatically backed up and restored on app install. Consider adding the attribute android:fullBackupContent to specify an @xml resource which configures which files to backup. More info: https://developer.android.com/training/backup/autosyncapi.html |
@@ -2,7 +2,7 @@ | |||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |||
package="com.monstar_lab.sample.android.kotlin"> | |||
|
|||
<application | |||
<application |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent filter. See issue explanation for more details. |
10e395f
to
0af9a7a
Compare
@@ -36,4 +37,7 @@ class MainActivity : AppCompatActivity() { | |||
else -> super.onOptionsItemSelected(item) | |||
} | |||
} | |||
|
|||
public fun aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exceeded max line length (100) |
@@ -36,4 +37,7 @@ class MainActivity : AppCompatActivity() { | |||
else -> super.onOptionsItemSelected(item) | |||
} | |||
} | |||
|
|||
public fun aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line detected that is longer than the defined maximum line length in the code style. |
No description provided.