This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ScaleApp/AndroidManifest.xml
2013-08-26 23:01:18 -04:00

40 lines
1.3 KiB
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eaesthetics.scaleapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:debuggable="true"
android:icon="@drawable/scale"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Splash"
android:label="@string/title_activity_splash"
android:background="@drawable/splash_background"
>
<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/title_activity_main"
android:background="@drawable/main_background"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>