Skeleton for ApplicationPlatformUI

This commit is contained in:
rahul bhat
2022-08-25 12:54:55 +05:30
parent 40abb9d3f0
commit 1717276d96
3 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/*
*
* * Copyright © 2019 by Navi Technologies Private Limited
* * All rights reserved. Strictly confidential
*
*/
package com.navi.common.applicationplatform.ui.activity
import com.navi.common.model.ModuleNameV2
import com.navi.common.ui.activity.BaseActivity
/**
* Copyright © 2021 by Navi Technologies Private Limited
* All rights reserved. Strictly confidential
*/
class ApplicationPlatformActivity : BaseActivity() {
override val screenName: String
get() = TODO("Not yet implemented")
override val moduleName: ModuleNameV2
get() = TODO("Not yet implemented")
}

View File

@@ -0,0 +1,19 @@
/*
*
* * Copyright © 2019 by Navi Technologies Private Limited
* * All rights reserved. Strictly confidential
*
*/
package com.navi.common.applicationplatform.ui.fragment
import com.navi.common.ui.fragment.BaseFragment
/**
* Copyright © 2021 by Navi Technologies Private Limited
* All rights reserved. Strictly confidential
*/
class ApplicationPlatformFormFragment : BaseFragment() {
override val screenName: String
get() = TODO("Not yet implemented")
}

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ /*
~ * Copyright © 2019 by Navi Technologies Private Limited
~ * All rights reserved. Strictly confidential
~ */
-->
<View xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
</View>