This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private val scopeName: String | |
get() { | |
var scopeName = arguments?.getString(ARG_SCOPE_NAME) | |
if (scopeName == null) { | |
scopeName = [email protected]() | |
arguments?.putString(ARG_SCOPE_NAME, scopeName) | |
initScope(scopeName) | |
} | |
return scopeName |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.rsajob.toothpick | |
import android.os.Bundle | |
import android.support.v4.app.Fragment | |
import android.util.Log | |
import toothpick.Toothpick | |
import toothpick.configuration.MultipleRootException | |
import kotlin.reflect.KProperty | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.os.Bundle | |
import android.view.View | |
import androidx.fragment.app.Fragment | |
import com.arellomobile.mvp.MvpDelegate | |
import com.google.android.gms.maps.GoogleMap | |
import com.google.android.gms.maps.MapView | |
/** | |
* Для использования MapView | |
* |