AndroidManifest.xml
author Tomas Zeman <tzeman@volny.cz>
Fri, 10 Jan 2014 12:50:46 +0100
changeset 3 a41c0d4e533c
parent 1 c3780fcb8441
permissions -rw-r--r--
CaptureSignature: refactored signature into SignatureWidget (static inner class)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     1
<?xml version="1.0" encoding="utf-8"?>
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     3
    package="tz.signaturecapture" android:versionCode="1"
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     4
    android:versionName="1.0">
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     5
    <uses-sdk android:minSdkVersion="13"
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     6
    android:targetSdkVersion="19" />
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     7
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     8
    
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     9
    <application android:icon="@drawable/ic_launcher" android:label="@string/app_name"
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    10
        android:allowBackup="false"
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    11
        android:theme="@android:style/Theme.Holo.Light">
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    12
        <activity android:name=".CaptureSignatureActivity"
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    13
            android:label="@string/app_name">
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    14
            <intent-filter>
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    15
                <action android:name="android.intent.action.MAIN" />
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    16
                <category android:name="android.intent.category.LAUNCHER" />
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    17
            </intent-filter>
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    18
        </activity>
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    19
        <activity android:name=".CaptureSignature" android:label="Signature Confirmation"
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    20
            android:theme="@android:style/Theme.Holo.Light.Dialog" />
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    21
    </application>
c3780fcb8441 Imported code from the blog post (renamed namespace com.as400samplecode -> tz.signaturecapture).
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    22
</manifest>