You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
On the step 8. SplitInstallManager listener the following code is added: private val moduleKotlin by lazy { getString(R.string.module_feature_kotlin) } private val moduleJava by lazy { getString(R.string.module_feature_java) } private val moduleNative by lazy { getString(R.string.module_native) } private val moduleAssets by lazy { getString(R.string.module_assets) }
However, getString is not happy for me. I tried a few different automatic fixes via option+enter, but none worked. I ended up just replacing this code with strings: private val moduleKotlin = "module_feature_kotlin" private val moduleJava = "module_feature_java" private val moduleNative = "module_native" private val moduleAssets = "module_assets"
I looked at the imports in the solution and don't see what I'm missing.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
On the step 8. SplitInstallManager listener the following code is added:
private val moduleKotlin by lazy { getString(R.string.module_feature_kotlin) }
private val moduleJava by lazy { getString(R.string.module_feature_java) }
private val moduleNative by lazy { getString(R.string.module_native) }
private val moduleAssets by lazy { getString(R.string.module_assets) }
However, getString is not happy for me. I tried a few different automatic fixes via option+enter, but none worked. I ended up just replacing this code with strings:
private val moduleKotlin = "module_feature_kotlin"
private val moduleJava = "module_feature_java"
private val moduleNative = "module_native"
private val moduleAssets = "module_assets"
I looked at the imports in the solution and don't see what I'm missing.
The text was updated successfully, but these errors were encountered: