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

Commit

Permalink
feat(manifest): add permission activity
Browse files Browse the repository at this point in the history
Signed-off-by: Rafa Hernandez <rhernandez@teclib.com>
  • Loading branch information
rafaelje authored and Hector Rondon committed Mar 19, 2018
1 parent 6dce0d3 commit d540209
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/src/main/AndroidManifest.xml
Expand Up @@ -79,6 +79,12 @@
android:screenOrientation="portrait"
>
</activity>
<activity android:name=".ui.PermissionEnrollmentActivity"
android:configChanges="orientation|screenSize"
android:launchMode="singleTask"
android:theme="@style/NoActionBar"
>
</activity>
<activity
android:name=".ui.SplashActivity"
android:configChanges="orientation|screenSize"
Expand Down
@@ -0,0 +1,30 @@
package org.flyve.mdm.agent.ui;

/*
* Copyright © 2018 Teclib. All rights reserved.
*
* This file is part of flyve-mdm-android
*
* flyve-mdm-android 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 rafaelhernandez
* @date 19/3/18
* @copyright Copyright © 2018 Teclib. All rights reserved.
* @license GPLv3 https://www.gnu.org/licenses/gpl-3.0.html
* @link https://github.com/flyve-mdm/flyve-mdm-android
* @link https://flyve-mdm.com
* ------------------------------------------------------------------------------
*/
public class PermissionEnrollmentActivity {
}
5 changes: 5 additions & 0 deletions app/src/main/res/layout/activity_permission_enrollment.xml
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">

</RelativeLayout>

0 comments on commit d540209

Please sign in to comment.