2018-10-30 01:59:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-10-29 21:49:42 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-10-30 18:41:09 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="cy.agorise.bitsybitshareswallet">
|
2018-10-30 01:59:02 +00:00
|
|
|
|
|
|
|
<application
|
2018-11-21 20:47:21 +00:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/bts_logo"
|
2018-10-30 01:59:02 +00:00
|
|
|
android:label="@string/app_name"
|
2018-11-21 20:47:21 +00:00
|
|
|
android:roundIcon="@drawable/bts_logo"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/Theme.Bitsy"
|
|
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
<activity
|
|
|
|
android:name=".activities.MainActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/Theme.Bitsy">
|
2018-10-30 01:59:02 +00:00
|
|
|
<intent-filter>
|
2018-10-30 18:41:09 +00:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
2018-10-30 01:59:02 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-10-30 18:41:09 +00:00
|
|
|
<activity
|
2018-11-21 20:47:21 +00:00
|
|
|
android:name=".activities.SettingsActivity"
|
|
|
|
android:label="@string/title_settings">
|
2018-10-30 18:41:09 +00:00
|
|
|
</activity>
|
2018-10-31 01:32:06 +00:00
|
|
|
<activity android:name=".activities.SendTransactionActivity">
|
|
|
|
</activity>
|
|
|
|
<activity android:name=".activities.ReceiveTransactionActivity">
|
|
|
|
</activity>
|
2018-10-30 01:59:02 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|