Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
feat(user): add edit user class
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelje authored and Hector Rondon committed Jul 31, 2017
1 parent abb6522 commit ca25886
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions app/src/main/java/org/flyve/mdm/agent/EditUserActivity.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
package org.flyve.mdm.agent;

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

/*
* Copyright © 2017 Teclib. All rights reserved.
*
* This file is part of flyve-mdm-android-agent
*
* flyve-mdm-android-agent is a subproject of Flyve MDM. Flyve MDM is a mobile
* device management software.
*
* Flyve MDM is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* Flyve MDM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* ------------------------------------------------------------------------------
* @author Rafael Hernandez
* @date 31/7/17
* @copyright Copyright © 2017 Teclib. All rights reserved.
* @license GPLv3 https://www.gnu.org/licenses/gpl-3.0.html
* @link https://github.com/flyve-mdm/flyve-mdm-android-agent
* @link https://flyve-mdm.com
* ------------------------------------------------------------------------------
*/
public class EditUserActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_enrollment);
}

}

0 comments on commit ca25886

Please sign in to comment.