Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

swh:1:snp:c78cc922fcace3fe1cdb174781d72137dd438d41
  • Code
  • Branches (4)
  • Releases (0)
    • Branches
    • Releases
    • HEAD
    • refs/heads/master
    • refs/remotes/origin/HEAD
    • refs/remotes/origin/master
    No releases to show
  • 6bb567a
  • /
  • AndroidManifest.xml
Raw File Download
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
content badge Iframe embedding
swh:1:cnt:947d32b22b969235ce7ffc83fa279696347ccfc6
directory badge Iframe embedding
swh:1:dir:6bb567aceabe40e4c96ab5ba2ea1822d32cd7275
revision badge
swh:1:rev:b4052e61857a54a5608e92494b6cdfa26bd22b22
snapshot badge
swh:1:snp:c78cc922fcace3fe1cdb174781d72137dd438d41
Citations

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Tip revision: b4052e61857a54a5608e92494b6cdfa26bd22b22 authored by muncus@gmail.com on 21 January 2012, 19:34:49 UTC
test script fix for new dev tools
Tip revision: b4052e6
AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.nerdcircus.android.klaxon"
    android:installLocation="auto"
    android:versionCode="27"
    android:versionName="0.27">
    <uses-sdk
        android:minSdkVersion="4"
    />
    <uses-permission android:name="android.permission.RECEIVE_SMS"/>
    <uses-permission android:name="android.permission.RECEIVE_MMS"/>
    <uses-permission android:name="android.permission.SEND_SMS"/>
    <uses-permission android:name="android.permission.READ_SMS"/>
    <uses-permission android:name="android.permission.VIBRATE"/>
    <application android:icon="@drawable/app_icon"
        android:theme="@style/SelectorTheme">
        <activity android:name=".KlaxonList" android:label="@string/app_name" 
            android:launchMode="singleTask" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <data android:mimeType="vnd.android.cursor.dir/pages" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity android:name=".PageViewer" android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <data android:mimeType="vnd.android.cursor.item/pages" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <provider android:name=".PagerProvider" android:authorities="org.nerdcircus.android.klaxon" android:multiprocess="true"/>
        <receiver android:name=".SmsPageReceiver" >
            <intent-filter android:priority="100">
                <action android:name="android.provider.Telephony.SMS_RECEIVED" />
            </intent-filter>
            <intent-filter>
                <data android:mimeType="vnd.android.cursor.item/pages" />
                <action android:name="org.nerdcircus.android.klaxon.REPLY" />
            </intent-filter>

        </receiver>
        <!--
        <receiver android:name=".MmsPageReceiver" >
            <intent-filter>
                <action android:name="android.provider.Telephony.WAP_PUSH_RECEIVED"/>
                <data android:mimeType="application/vnd.wap.mms-message" />
            </intent-filter>
        </receiver>
        -->
        <!--
        <receiver android:name=".GmailPageReceiver" >
            <intent-filter>
                <action android:name="android.intent.action.PROVIDER_CHANGED" />
                <data android:scheme="content"
                      android:path="gmail-ls/unread/^i" />
            </intent-filter>
            <intent-filter>
                <data android:mimeType="vnd.android.cursor.item/pages" />
                <action android:name="org.nerdcircus.android.klaxon.REPLY" />
            </intent-filter>
        </receiver>
        -->
        <receiver android:name=".Notifier" >
            <intent-filter>
                <action android:name="org.nerdcircus.android.klaxon.PAGES_VIEWED" />
                <action android:name="org.nerdcircus.android.klaxon.ANNOY" />
            </intent-filter>
            <intent-filter>
                <action android:name="org.nerdcircus.android.klaxon.PAGE_RECEIVED" />
                <data android:mimeType="vnd.android.cursor.item/pages" />
            </intent-filter>
            <intent-filter>
                <!-- this action is called after a reply is sent, to update state -->
                <action android:name="org.nerdcircus.android.klaxon.REPLY_SENT" />
                <data android:mimeType="vnd.android.cursor.item/pages" />
            </intent-filter>
        </receiver>
        <activity android:name=".Preferences" android:label="@string/prefs_activity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>
        <activity android:name=".Changelog" android:label="Changelog">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>
        <activity android:name=".ReplyList" android:label="@string/replylist_activity">
            <intent-filter>
                <action android:name="android.intent.action.PICK" />
                <data android:mimeType="vnd.android.cursor.item/reply" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity android:name=".ReplyEditor" android:label="Reply Editor">
            <intent-filter>
                <action android:name="android.intent.action.INSERT" />
                <data android:mimeType="vnd.android.cursor.dir/reply" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.EDIT" />
                <data android:mimeType="vnd.android.cursor.item/reply" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>
</manifest> 

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Contact— JavaScript license information— Web API

back to top