2013-12-27 13:27:58 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.sismics.docs" >
|
|
|
|
|
2014-05-26 22:22:13 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
2013-12-27 13:27:58 +01:00
|
|
|
<application
|
2014-05-26 22:22:13 +02:00
|
|
|
android:name=".MainApplication"
|
2013-12-27 13:27:58 +01:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme" >
|
|
|
|
<activity
|
2014-05-26 22:22:13 +02:00
|
|
|
android:name=".activity.LoginActivity"
|
2013-12-27 13:27:58 +01:00
|
|
|
android:label="@string/app_name" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2014-05-26 22:22:13 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2013-12-27 13:27:58 +01:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2014-05-26 22:22:13 +02:00
|
|
|
android:name=".activity.MainActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:logo="@drawable/ic_launcher"
|
|
|
|
android:launchMode="singleTop">
|
2013-12-27 13:27:58 +01:00
|
|
|
</activity>
|
2014-11-22 01:09:12 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activity.DocumentActivity"
|
|
|
|
android:label=""
|
|
|
|
android:logo="@drawable/ic_launcher">
|
|
|
|
</activity>
|
2013-12-27 13:27:58 +01:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|