2017-08-17 21:38:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-09-10 23:13:32 +00:00
|
|
|
package="cy.agorise.crystalwallet">
|
2017-10-05 02:04:42 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2017-08-17 21:38:05 +00:00
|
|
|
|
|
|
|
<application
|
2017-09-10 23:13:32 +00:00
|
|
|
android:name="cy.agorise.crystalwallet.application.CrystalApplication"
|
2017-08-17 21:38:05 +00:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:theme="@style/Theme.AppCompat">
|
2017-10-01 01:52:34 +00:00
|
|
|
<activity android:name=".activities.IntroActivity">
|
2017-08-17 21:38:05 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-10-08 03:03:59 +00:00
|
|
|
<activity android:name=".activities.BoardActivity" >
|
|
|
|
</activity>
|
2017-10-01 01:52:34 +00:00
|
|
|
<activity android:name=".activities.AccountSeedsManagementActivity" >
|
|
|
|
</activity>
|
|
|
|
<activity android:name=".activities.ImportSeedActivity" >
|
|
|
|
</activity>
|
2017-10-04 03:47:08 +00:00
|
|
|
<service android:name=".service.CrystalWalletService"
|
|
|
|
android:exported="false"/>
|
2017-08-17 21:38:05 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|