mirror of
https://github.com/hmalik144/Farmr.git
synced 2026-03-18 15:35:55 +00:00
Updated before playstore release
Took 5 minutes
This commit is contained in:
@@ -1,54 +1,40 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.example.h_mal.shift_tracker">
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.appttude.h_mal.farmr">
|
||||
|
||||
<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:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/farmicon"
|
||||
android:roundIcon="@mipmap/ic_launcher"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/AppTheme">
|
||||
|
||||
<!-- Splash screen -->
|
||||
<activity
|
||||
android:name=".SplashScreen"
|
||||
android:name="com.appttude.h_mal.farmr.SplashScreen"
|
||||
android:label="@string/app_name"
|
||||
android:screenOrientation="portrait"
|
||||
android:theme="@android:style/Theme.Black.NoTitleBar">
|
||||
android:theme="@android:style/Theme.Black.NoTitleBar"
|
||||
tools:ignore="LockedOrientationActivity">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:name="com.appttude.h_mal.farmr.MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:parentActivityName=".SplashScreen"
|
||||
android:parentActivityName="com.appttude.h_mal.farmr.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:name="com.appttude.h_mal.farmr.Data.ShiftProvider"
|
||||
android:authorities="com.appttude.h_mal.farmr"
|
||||
android:exported="false" />
|
||||
</application>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user