mirror of
https://github.com/hmalik144/Farmr.git
synced 2026-03-18 15:35:55 +00:00
Initial commit
This commit is contained in:
55
app/src/main/AndroidManifest.xml
Normal file
55
app/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.example.h_mal.shift_tracker">
|
||||
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/farmicon"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/farmicon"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/AppTheme">
|
||||
|
||||
<!-- Splash screen -->
|
||||
<activity
|
||||
android:name=".SplashScreen"
|
||||
android:label="@string/app_name"
|
||||
android:screenOrientation="portrait"
|
||||
android:theme="@android:style/Theme.Black.NoTitleBar">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:parentActivityName=".SplashScreen"
|
||||
android:theme="@style/AppTheme.NoActionBar"/>
|
||||
<!--<activity-->
|
||||
<!--android:name=".LoginSetup"-->
|
||||
<!--android:parentActivityName=".SplashScreen"-->
|
||||
<!--android:theme="@style/Theme.AppCompat.Light.NoActionBar">-->
|
||||
<!--<meta-data-->
|
||||
<!--android:name="android.support.PARENT_ACTIVITY"-->
|
||||
<!--android:value=".SplashScreen" />-->
|
||||
<!--</activity>-->
|
||||
<!--<activity-->
|
||||
<!--android:name=".LoginScreen"-->
|
||||
<!--android:parentActivityName=".SplashScreen"-->
|
||||
<!--android:theme="@style/Theme.AppCompat.Light.NoActionBar">-->
|
||||
<!--<meta-data-->
|
||||
<!--android:name="android.support.PARENT_ACTIVITY"-->
|
||||
<!--android:value=".SplashScreen" />-->
|
||||
<!--</activity>-->
|
||||
|
||||
<provider
|
||||
android:name=".Data.ShiftProvider"
|
||||
android:authorities="com.example.h_mal.shift_tracker"
|
||||
android:exported="false" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
Reference in New Issue
Block a user