2013-07-20 20:07:19 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="in.sdqali.sharewithtitle"
|
2013-07-21 17:31:03 +00:00
|
|
|
android:versionCode="3"
|
|
|
|
android:versionName="1.15" >
|
2013-07-20 20:07:19 +00:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
|
|
|
|
|
|
|
|
<uses-sdk
|
2013-07-21 17:31:03 +00:00
|
|
|
android:minSdkVersion="11"
|
|
|
|
android:targetSdkVersion="18" />
|
2013-07-20 20:07:19 +00:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme" >
|
|
|
|
<activity
|
|
|
|
android:name="in.sdqali.sharewithtitle.MainActivity"
|
2013-07-20 23:31:02 +00:00
|
|
|
android:label="@string/app_name"
|
2013-07-20 22:52:51 +00:00
|
|
|
android:noHistory="true">
|
2013-07-20 20:07:19 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|