24 lines
833 B
XML
24 lines
833 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.TwentyCodes.android.FindMyCarLib"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<application
|
|
android:icon="@drawable/icon"
|
|
android:label="@string/app_name" >
|
|
<service android:name="ParkingTimerService" >
|
|
</service>
|
|
|
|
<activity android:name=".UI.fragments.MapFragment" >
|
|
</activity>
|
|
<activity android:name="FindMyCarLite" >
|
|
</activity>
|
|
<activity android:name="Settings" >
|
|
</activity>
|
|
<activity
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
|
|
android:name="com.google.ads.AdActivity" />
|
|
</application>
|
|
|
|
</manifest> |