|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 | 2 | <manifest package="io.scalaproject.androidminer"
|
3 |
| - xmlns:android="http://schemas.android.com/apk/res/android"> |
| 3 | + xmlns:android="http://schemas.android.com/apk/res/android"> |
4 | 4 |
|
5 | 5 | <uses-permission android:name="android.permission.INTERNET" />
|
6 | 6 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
11 | 11 | <application
|
12 | 12 | android:allowBackup="true"
|
13 | 13 | android:usesCleartextTraffic="true"
|
| 14 | + android:hardwareAccelerated="false" |
| 15 | + android:largeHeap="true" |
14 | 16 | android:icon="@mipmap/ic_launcher"
|
15 | 17 | android:roundIcon="@mipmap/ic_launcher_round"
|
16 | 18 | android:label="@string/app_name"
|
|
22 | 24 |
|
23 | 25 | <meta-data
|
24 | 26 | android:name="com.google.firebase.messaging.default_notification_icon"
|
25 |
| - android:resource="@drawable/ic_notification" /> |
| 27 | + android:resource="@mipmap/ic_notification" /> |
26 | 28 |
|
27 | 29 | <meta-data
|
28 | 30 | android:name="com.google.firebase.messaging.default_notification_color"
|
29 | 31 | android:resource="@color/c_white" />
|
30 | 32 |
|
31 | 33 | <activity
|
32 |
| - android:name="io.scalaproject.androidminer.MainActivity" |
33 |
| - android:configChanges="orientation|screenSize" |
34 |
| - android:windowSoftInputMode="adjustPan|stateHidden" |
35 |
| - android:theme="@style/AppTheme.NoActionBar"> |
| 34 | + android:name=".SplashActivity"> |
| 35 | + <intent-filter> |
| 36 | + <action android:name="android.intent.action.MAIN" /> |
| 37 | + <category android:name="android.intent.category.LAUNCHER" /> |
| 38 | + </intent-filter> |
36 | 39 | </activity>
|
37 | 40 |
|
38 | 41 | <activity
|
39 |
| - android:name="io.scalaproject.androidminer.SplashActivity"> |
40 |
| - <intent-filter> |
41 |
| - <action android:name="android.intent.action.MAIN"/> |
42 |
| - <category android:name="android.intent.category.LAUNCHER"/> |
43 |
| - </intent-filter> |
| 42 | + android:name=".MainActivity" |
| 43 | + android:windowSoftInputMode="adjustPan|stateHidden" |
| 44 | + android:theme="@style/AppTheme.NoActionBar" |
| 45 | + android:launchMode="singleTask" |
| 46 | + android:screenOrientation="behind"> |
44 | 47 | </activity>
|
45 | 48 |
|
46 | 49 | <activity
|
47 |
| - android:name="io.scalaproject.androidminer.QrCodeScannerActivity" |
48 |
| - android:parentActivityName="io.scalaproject.androidminer.MainActivity"> |
49 |
| - </activity> |
| 50 | + android:name=".QrCodeScannerActivity" |
| 51 | + android:configChanges="orientation|keyboardHidden" |
| 52 | + android:label="QrCode" |
| 53 | + android:launchMode="singleTask" |
| 54 | + android:screenOrientation="behind" /> |
50 | 55 |
|
51 | 56 | <activity
|
52 |
| - android:name="io.scalaproject.androidminer.WizardHomeActivity" |
53 |
| - android:parentActivityName="io.scalaproject.androidminer.MainActivity"> |
54 |
| - </activity> |
| 57 | + android:name=".WizardHomeActivity" |
| 58 | + android:configChanges="orientation|keyboardHidden" |
| 59 | + android:label="Welcome" |
| 60 | + android:launchMode="singleTask" |
| 61 | + android:screenOrientation="behind" /> |
55 | 62 |
|
56 | 63 | <activity
|
57 |
| - android:name="io.scalaproject.androidminer.WizardAddressActivity" |
58 |
| - android:parentActivityName="io.scalaproject.androidminer.MainActivity"> |
59 |
| - </activity> |
| 64 | + android:name=".VaultActivity" |
| 65 | + android:configChanges="orientation|keyboardHidden" |
| 66 | + android:label="Vault" |
| 67 | + android:launchMode="singleTask" |
| 68 | + android:screenOrientation="behind" /> |
60 | 69 |
|
61 | 70 | <activity
|
62 |
| - android:name="io.scalaproject.androidminer.WizardPoolActivity" |
63 |
| - android:parentActivityName="io.scalaproject.androidminer.MainActivity"> |
64 |
| - </activity> |
| 71 | + android:name=".WizardAddressActivity" |
| 72 | + android:configChanges="orientation|keyboardHidden" |
| 73 | + android:label="Address" |
| 74 | + android:launchMode="singleTask" |
| 75 | + android:screenOrientation="behind" /> |
65 | 76 |
|
66 | 77 | <activity
|
67 |
| - android:name="io.scalaproject.androidminer.WizardSettingsActivity" |
68 |
| - android:parentActivityName="io.scalaproject.androidminer.MainActivity"> |
69 |
| - </activity> |
| 78 | + android:name=".PoolActivity" |
| 79 | + android:configChanges="orientation|keyboardHidden" |
| 80 | + android:label="Pool" |
| 81 | + android:launchMode="singleTask" |
| 82 | + android:screenOrientation="behind" /> |
70 | 83 |
|
71 | 84 | <activity
|
72 |
| - android:name="io.scalaproject.androidminer.BaseActivity" |
73 |
| - android:parentActivityName="io.scalaproject.androidminer.MainActivity"> |
74 |
| - </activity> |
| 85 | + android:name=".WizardSettingsActivity" |
| 86 | + android:configChanges="orientation|keyboardHidden" |
| 87 | + android:label="Settings" |
| 88 | + android:launchMode="singleTask" |
| 89 | + android:screenOrientation="behind" /> |
| 90 | + |
| 91 | + <activity |
| 92 | + android:name=".SupportActivity" |
| 93 | + android:configChanges="orientation|keyboardHidden" |
| 94 | + android:label="Support" |
| 95 | + android:launchMode="singleTask" |
| 96 | + android:screenOrientation="behind" /> |
| 97 | + |
| 98 | + <activity |
| 99 | + android:name=".PaymentsActivity" |
| 100 | + android:configChanges="orientation|keyboardHidden" |
| 101 | + android:label="Payments" |
| 102 | + android:launchMode="singleTask" |
| 103 | + android:screenOrientation="behind" /> |
| 104 | + |
| 105 | + <activity |
| 106 | + android:name=".BaseActivity" |
| 107 | + android:configChanges="orientation|keyboardHidden" |
| 108 | + android:label="Base" |
| 109 | + android:launchMode="singleTask" |
| 110 | + android:screenOrientation="behind" /> |
75 | 111 |
|
76 | 112 | <service
|
77 |
| - android:name="io.scalaproject.androidminer.MiningService" |
| 113 | + android:name=".MiningService" |
78 | 114 | android:enabled="true"/>
|
79 | 115 |
|
80 | 116 | <receiver
|
81 |
| - android:name="io.scalaproject.androidminer.NotificationsReceiver" |
| 117 | + android:name=".NotificationsReceiver" |
82 | 118 | android:enabled="true">
|
83 | 119 | <intent-filter>
|
84 | 120 | <action android:name="OPEN_ACTION"/>
|
|
0 commit comments