43 lines
1.8 KiB
XML
Executable File
43 lines
1.8 KiB
XML
Executable File
<?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="com.hyperling.carbupbeta">
|
|
|
|
<uses-sdk tools:overrideLibrary="com.google.android.gms,com.google.android.gms.ads" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/dr_face_straight2_circle"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/CarbUp">
|
|
<activity
|
|
android:name=".Splash"
|
|
android:exported="true"
|
|
android:screenOrientation="fullSensor">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".Main"
|
|
android:screenOrientation="fullSensor"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
|
|
<activity
|
|
android:name=".Tab1"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
|
|
<activity
|
|
android:name=".Tab2"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
|
|
<activity
|
|
android:name=".MySettings"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
|
|
<activity
|
|
android:name=".Home"
|
|
android:label="@string/title_activity_home"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
|
|
</application>
|
|
|
|
</manifest>
|