<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.helpshift"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="22" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <application>
        <activity
            android:name="com.helpshift.HSConversation"
            android:configChanges="orientation|screenSize|locale|layoutDirection"
            android:theme="@style/Helpshift.Theme.Activity" />
        <activity
            android:name="com.helpshift.HSQuestionsList"
            android:configChanges="orientation|screenSize"
            android:theme="@style/Helpshift.Theme.Activity" />
        <activity
            android:name="com.helpshift.HSQuestion"
            android:configChanges="orientation|screenSize"
            android:hardwareAccelerated="true"
            android:theme="@style/Helpshift.Theme.Activity" />
        <activity
            android:name="com.helpshift.HSSection"
            android:configChanges="orientation|screenSize"
            android:hardwareAccelerated="true"
            android:theme="@style/Helpshift.Theme.Activity"
            android:windowSoftInputMode="adjustPan" />
        <activity
            android:name="com.helpshift.HSFaqs"
            android:configChanges="orientation|screenSize"
            android:hardwareAccelerated="true"
            android:theme="@style/Helpshift.Theme.Activity"
            android:windowSoftInputMode="adjustPan" />
        <activity
            android:name="com.helpshift.HSReview"
            android:configChanges="orientation|screenSize"
            android:theme="@style/Helpshift.Theme.Dialog" />
        <activity
            android:name="com.helpshift.ScreenshotPreviewActivity"
            android:configChanges="orientation|screenSize"
            android:theme="@style/Helpshift.Theme.Activity" />
        <activity
            android:name="com.helpshift.SearchResultActivity"
            android:configChanges="orientation|screenSize"
            android:theme="@style/Helpshift.Theme.Activity" />

        <service
            android:name="com.helpshift.HSService"
            android:label="Helpshift Service" >
        </service>
        <service
            android:name="com.helpshift.HSRetryService"
            android:label="Helpshift Service" >
        </service>
    </application>

</manifest>