2014-07-24 00:15:11 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.zeapo.pwdstore" >
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme" >
|
|
|
|
<activity
|
2014-07-27 17:58:42 +00:00
|
|
|
android:name=".PasswordStore"
|
2014-07-24 00:15:11 +00:00
|
|
|
android:label="@string/app_name" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".GitClone"
|
2014-07-31 23:17:05 +00:00
|
|
|
android:label="@string/title_activity_git_clone"
|
|
|
|
android:parentActivityName=".PasswordStore">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.PARENT_ACTIVITY1"
|
|
|
|
android:value="com.zeapo.pwdstore.PasswordStore" />
|
2014-07-24 00:15:11 +00:00
|
|
|
</activity>
|
2014-07-31 23:17:05 +00:00
|
|
|
<activity android:name=".crypto.OpenPgpProviderActivity" />
|
|
|
|
|
|
|
|
<activity android:name=".UserPreference"
|
|
|
|
android:parentActivityName=".PasswordStore">
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="com.zeapo.pwdstore.PasswordStore" />
|
2014-07-30 01:42:22 +00:00
|
|
|
</activity>
|
2014-07-24 00:15:11 +00:00
|
|
|
|
2014-07-31 23:17:05 +00:00
|
|
|
<activity
|
|
|
|
android:name=".crypto.PgpHandler"
|
|
|
|
android:label="@string/title_activity_pgp_handler"
|
|
|
|
android:parentActivityName=".PasswordStore">
|
2014-07-24 00:15:11 +00:00
|
|
|
|
2014-07-31 23:17:05 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="com.zeapo.pwdstore.PasswordStore" />
|
|
|
|
</activity>
|
|
|
|
</application>
|
2014-07-24 00:15:11 +00:00
|
|
|
|
2014-07-31 23:17:05 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2014-07-24 00:15:11 +00:00
|
|
|
|
|
|
|
</manifest>
|