Fix ktlint

This commit is contained in:
Lucas Lima 2020-08-31 20:06:01 -03:00
parent 08ca70c17a
commit b8542ba688
No known key found for this signature in database
GPG key ID: 049CCC5A365B00D2
3 changed files with 5 additions and 5 deletions

View file

@ -30,8 +30,10 @@ class SupportAppDialogFragment : AppCompatDialogFragment() {
billingManager.start(iapHandler)
analyticsManager.sentEvent(Analytics.ShowIapDialog)
showUnlockMessage = (arguments?.getBoolean(UNLOCK_LABEL) ?: savedInstanceState?.getBoolean(UNLOCK_LABEL)) ?: false
targetThemeId = (arguments?.getLong(TARGET_THEME_ID, -1L)) ?: -1L
showUnlockMessage =
(arguments?.getBoolean(UNLOCK_LABEL) ?: savedInstanceState?.getBoolean(UNLOCK_LABEL)) ?: false
targetThemeId =
(arguments?.getLong(TARGET_THEME_ID, -1L)) ?: -1L
}
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {

View file

@ -1,8 +1,6 @@
package dev.lucasnlm.external
import android.app.Activity
import android.content.Context
import android.content.Intent
interface IInstantAppManager {
fun isEnabled(context: Context): Boolean