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
@InjectViewState | |
class Frag5_Presenter : MvpPresenter<Frag5_View>() { | |
var mData = Any() | |
private var checkResult: Boolean = false | |
val SERVERS_ADDRESS = 1 | |
val DEVICES_ID = 2 | |
private val MODE_SAVE_SETTINGS: Boolean = true | |
private val MODE_CLOSE_SETTINGS: Boolean = false |
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.app.Activity; | |
import android.content.Context; | |
import android.support.annotation.NonNull; | |
import android.view.View; | |
import android.view.inputmethod.InputMethodManager; | |
import android.widget.EditText; | |
import java.util.Objects; | |
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
09-07 07:48:13.971 11488-11513/com.example.users_interface E/AndroidRuntime: FATAL EXCEPTION: AsyncTask #1 | |
Process: com.example.users_interface, PID: 11488 | |
java.lang.RuntimeException: An error occurred while executing doInBackground() | |
at android.os.AsyncTask$3.done(AsyncTask.java:318) | |
at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:354) | |
at java.util.concurrent.FutureTask.setException(FutureTask.java:223) | |
at java.util.concurrent.FutureTask.run(FutureTask.java:242) | |
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.example.module_00_lib.model; | |
import android.support.v7.widget.RecyclerView; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.TextView; | |
import com.example.module_00_lib.R; |
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
public class ControllerDB extends ApplicationControllerDB implements InterfaceControllerDB<JsonQiwisUsers> { | |
//...... | |
} |
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
"C:\Program Files\Android\Android Studio\jre\bin\java" -Didea.launcher.port=7532 "-Didea.launcher.bin.path=C:\Program Files\Android\Android Studio\bin" -Didea.junit.sm_runner -Dfile.encoding=UTF-8 -classpath "C:\Program Files\Android\Android Studio\lib\idea_rt.jar;C:\Program Files\Android\Android Studio\plugins\junit\lib\junit-rt.jar;C:\Users\samsung\AppData\Local\Android\Sdk\platforms\android-25\data\res;D:\Users\samsung\AndroidStudioProjects\MyProjects\QIWI-Users-Balance\app\build\intermediates\classes\test\debug;D:\Users\samsung\AndroidStudioProjects\MyProjects\QIWI-Users-Balance\app\build\intermediates\classes\debug;C:\Users\samsung\.gradle\caches\modules-2\files-2.1\org.robolectric\robolectric-utils\3.1-rc1\ce5020a3fa4b55faaedc97c1274cafaa6619d9c3\robolectric-utils-3.1-rc1.jar;C:\Users\samsung\.gradle\caches\modules-2\files-2.1\org.hamcrest\hamcrest-library\1.3\4785a3c21320980282f9f33d0d1264a69040538f\hamcrest-library-1.3.jar;C:\Users\samsung\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-commons\5.0 |
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.example.samsung.gps_coordinate_determiner; | |
import android.content.Context; | |
import android.support.test.InstrumentationRegistry; | |
import android.support.test.runner.AndroidJUnit4; | |
import org.junit.Test; | |
import org.junit.runner.RunWith; | |
import static junit.framework.Assert.assertEquals; |