Skip to content

Commit ee94aa0

Browse files
release android; remove google ads; add link to download app
1 parent 0a41318 commit ee94aa0

File tree

18 files changed

+376
-437
lines changed

18 files changed

+376
-437
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ local.properties
3333
.cxx/
3434
*.keystore
3535
!debug.keystore
36+
android/app/release/
3637

3738
# node.js
3839
#

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ So, when you back up your wallet, you should back up the mnemonic and the passwo
3434

3535
## Supported Chains
3636

37+
- Bitcoin
3738
- Ethereum
3839
- Binance Smart Chain
3940
- EVM-compatible chains: Polygon, Fantom, Avalanche, etc. Not tested yet. If you meet any problems, please open an issue.
@@ -46,6 +47,12 @@ We will support Bitcoin and other chains in the future.
4647
- You can also contact us by email [[email protected]](mailto:[email protected])
4748
- Please open an [issue](https://github.com/wave-org/DoomWallet/issues) if you want to report problems or bugs or request a new feature.
4849

50+
## Download Now
51+
52+
<a href='https://play.google.com/store/apps/details?id=org.wave.doom&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png' style="width: 290px;"/></a>
53+
54+
<a href="https://apps.apple.com/us/app/doom-wallet/id6455836435?itsct=apps_box_badge&amp;itscg=30200" style="display: inline-block; overflow: hidden; border-radius: 13px; width: 250px; height: 83px; margin: 20px;"><img src="https://tools.applemediaservices.com/api/badges/download-on-the-app-store/black/en-us?size=250x83&amp;releaseDate=1691020800" alt="Download on the App Store" style="border-radius: 13px; width: 250px; height: 83px;"></a>
55+
4956
## How to use Doom Wallet?
5057

5158
#### 1. Use MetaMask

android/app/build.gradle

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ android {
7373

7474
compileSdkVersion rootProject.ext.compileSdkVersion
7575

76-
namespace "com.doomwallet"
76+
namespace "org.wave.doom"
7777
defaultConfig {
78-
applicationId "com.doomwallet"
78+
applicationId "org.wave.doom"
7979
minSdkVersion rootProject.ext.minSdkVersion
8080
targetSdkVersion rootProject.ext.targetSdkVersion
81-
versionCode 1
82-
versionName "1.0"
81+
versionCode 3
82+
versionName "0.0.1"
8383

8484
missingDimensionStrategy 'react-native-camera', 'general'
8585
}
@@ -94,8 +94,11 @@ android {
9494
buildTypes {
9595
debug {
9696
signingConfig signingConfigs.debug
97+
applicationIdSuffix ".debug"
98+
resValue 'string', 'app_name', '"Doom Debug"'
9799
}
98100
release {
101+
resValue 'string', 'app_name', '"DoomWallet"'
99102
// Caution! In production, you need to generate your own keystore file.
100103
// see https://reactnative.dev/docs/signed-apk-android.
101104
signingConfig signingConfigs.debug

android/app/src/debug/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:tools="http://schemas.android.com/tools">
44

55
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
6-
6+
<uses-permission android:name="android.permission.INTERNET" />
77
<application
88
android:usesCleartextTraffic="true"
99
tools:targetApi="28"

android/app/src/debug/java/com/doomwallet/ReactNativeFlipper.java renamed to android/app/src/debug/java/org/wave/doom/ReactNativeFlipper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
55
* directory of this source tree.
66
*/
7-
package com.doomwallet;
7+
package org.wave.doom;
88

99
import android.content.Context;
1010
import com.facebook.flipper.android.AndroidFlipperClient;

android/app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
22

3-
<uses-permission android:name="android.permission.INTERNET" />
43
<uses-permission android:name="android.permission.CAMERA" />
54
<application
65
android:name=".MainApplication"

android/app/src/main/java/com/doomwallet/MainActivity.java renamed to android/app/src/main/java/org/wave/doom/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.doomwallet;
1+
package org.wave.doom;
22

33
import com.facebook.react.ReactActivity;
44
import com.facebook.react.ReactActivityDelegate;

android/app/src/main/java/com/doomwallet/MainApplication.java renamed to android/app/src/main/java/org/wave/doom/MainApplication.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
package com.doomwallet;
1+
package org.wave.doom;
22

33
import android.app.Application;
4+
45
import com.facebook.react.PackageList;
56
import com.facebook.react.ReactApplication;
67
import com.facebook.react.ReactNativeHost;
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
<resources>
2-
<string name="app_name">DoomWallet</string>
32
</resources>

android/app/src/release/java/com/doomwallet/ReactNativeFlipper.java renamed to android/app/src/release/java/org/wave/doom/ReactNativeFlipper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
55
* directory of this source tree.
66
*/
7-
package com.doomwallet;
7+
package org.wave.doom;
88

99
import android.content.Context;
1010
import com.facebook.react.ReactInstanceManager;

0 commit comments

Comments
 (0)