Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/JimmyHuang0904/PairUp
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasNakagawa committed Jan 14, 2018
2 parents 4bba68c + ec0fa1a commit c93ecf7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/src/main/java/io/left/hellomesh/DisconnectActivity.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package io.left.hellomesh;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class DisconnectActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_disconnect);
}
}
9 changes: 9 additions & 0 deletions app/src/main/res/layout/activity_disconnect.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="io.left.hellomesh.DisconnectActivity">

</android.support.constraint.ConstraintLayout>

0 comments on commit c93ecf7

Please sign in to comment.