Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions application/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "com.mnchatbot.myapplication"
minSdk 21
targetSdk 32
versionCode 5
versionName "1.0.4"
versionCode 6
versionName "1.0.5"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
Expand Down Expand Up @@ -120,7 +121,13 @@ public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
login_button.setOnClickListener( new View.OnClickListener() {
@Override
public void onClick(View view) {
LoginResponse();
AlertDialog.Builder builder = new AlertDialog.Builder(LoginActivity.this);
builder.setTitle("알림")
.setMessage("서버를 옮기는 중입니다! 지금은 서비스를 이용하실 수 없습니다.🥺")
.setPositiveButton("확인", null)
.create()
.show();
//LoginResponse();
}
});
}
Expand Down