AndroidManifest.xml 826 Bytes
Newer Older
洪国微 committed
1
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
严久程 committed
2 3 4 5
    package="com.ydl.audioim">

    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
洪国微 committed
6 7 8 9

    <application>

        <activity
严久程 committed
10
            android:name=".AudioHomeActivity"
严久程 committed
11
            android:launchMode="singleTask"
严久程 committed
12 13 14 15 16
            android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
            android:screenOrientation="portrait" />

        <activity
            android:name="com.ydl.consultantim.ConsultantAudioHomeActivity"
严久程 committed
17
            android:launchMode="singleTask"
严久程 committed
18 19
            android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
            android:screenOrientation="portrait" />
洪国微 committed
20 21
    </application>
</manifest>