40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
package="io.xdrm.lebonprix">
|
||
|
|
||
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||
|
|
||
|
<application
|
||
|
android:allowBackup="true"
|
||
|
android:icon="@mipmap/ic_launcher"
|
||
|
android:label="@string/app_name"
|
||
|
android:roundIcon="@mipmap/ic_launcher_default_round"
|
||
|
android:supportsRtl="true"
|
||
|
android:theme="@style/AppTheme"
|
||
|
tools:ignore="GoogleAppIndexingWarning">
|
||
|
|
||
|
<!-- Splash Screen -->
|
||
|
<activity
|
||
|
android:name=".GooeySplashScreen"
|
||
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN"/>
|
||
|
<category android:name="android.intent.category.LAUNCHER"/>
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
|
||
|
<!-- Home/Search Page -->
|
||
|
<activity
|
||
|
android:name=".HomeActivity"
|
||
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
|
||
|
</activity>
|
||
|
|
||
|
<!-- Result Page -->
|
||
|
<activity android:name=".ResultActivity"
|
||
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
|
||
|
</activity>
|
||
|
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|