swh:1:snp:9e7dcf2adb3c1d0abb5a8d2cdbeb07b5ba70940b
Raw File
Tip revision: f29b769cc579f2914d6c9a5e751dbc59b25edd59 authored by Hervé Renault on 03 January 2015, 12:46:42 UTC
Manifest: version 1.9
Tip revision: f29b769
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="fr.herverenault.directdictaphone"
    android:versionCode="15"
    android:versionName="1.9" >

    <uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="18" />

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher_direct_dictaphone"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="fr.herverenault.directdictaphone.DirectDictaphone"
            android:configChanges="orientation"
            android:label="@string/app_name"
            android:screenOrientation="nosensor" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity android:name=".NotesList" />

        <activity android:name="Preferences" />
    </application>

</manifest>
back to top