https://github.com/herverenault/DirectDictaphone
Raw File
Tip revision: 0a86e9cca21b6825095e30871ee5c9b42e662bcf authored by Hervé Renault on 04 January 2015, 12:47:01 UTC
Release 1.10
Tip revision: 0a86e9c
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="16"
    android:versionName="1.10" >

    <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