2016-02-14 22:04:02 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-02-15 21:33:18 +01:00
|
|
|
<manifest
|
2016-02-25 22:00:45 +01:00
|
|
|
package="com.simplemobiletools.draw"
|
2016-02-15 21:33:18 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2016-02-14 22:04:02 +01:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
2016-02-15 21:33:18 +01:00
|
|
|
<activity
|
2016-02-25 22:00:45 +01:00
|
|
|
android:name="com.simplemobiletools.draw.MainActivity"
|
2016-02-15 21:33:18 +01:00
|
|
|
android:screenOrientation="portrait">
|
2016-02-14 22:04:02 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|