https://github.com/herverenault/DirectDictaphone
Raw File
Tip revision: 9a927fff2f1481760d6e68f27567db05caccf9b1 authored by Hervé Renault on 01 January 2015, 11:12:25 UTC
Update README.md
Tip revision: 9a927ff
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="13"
    android:versionName="1.7" >

    <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