Skip to content

Commit

Permalink
update support exchange open link
Browse files Browse the repository at this point in the history
  • Loading branch information
vcexnet committed May 20, 2021
1 parent 0a10c1f commit 15d7381
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ android {
applicationId = 'com.eacpay'
minSdkVersion 23
targetSdkVersion 29
versionCode 660
versionName "v2.0.6"
versionCode 666
versionName "v2.0.7"
multiDexEnabled true

// Similar to other properties in the defaultConfig block,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public void onClick(View v) {
}
}, false));

items.add(new BRSettingsItem("", "", null, true));
//items.add(new BRSettingsItem("", "", null, true));

items.add(new BRSettingsItem(getString(R.string.Settings_shareData), "", new View.OnClickListener() {
@Override
Expand Down Expand Up @@ -221,7 +221,7 @@ public void onClick(View v) {
}
}, false));

items.add(new BRSettingsItem("", "", null, true)); //just for a blank space
//items.add(new BRSettingsItem("", "", null, true)); //just for a blank space

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public void onClick(View v) {
case R.id.tv6:
//support exchanges
intent = new Intent(this,
WebViewActivity.class);
CusWebActivity.class);
intent.putExtra("url", isZh ?
"https://eacpay.com/sc/exchange.html"
: "https://vcexnet.github.io/img/exchange.html"
Expand All @@ -119,7 +119,7 @@ public void onClick(View v) {
case R.id.tv7:
//support pool
intent = new Intent(this,
WebViewActivity.class);
CusWebActivity.class);
intent.putExtra("url", isZh ?
"https://eacpay.com/sc/pool.html"
: "https://vcexnet.github.io/img/pool.html"
Expand All @@ -129,7 +129,7 @@ public void onClick(View v) {
case R.id.tv8:
//support website and app
intent = new Intent(this,
WebViewActivity.class);
CusWebActivity.class);
intent.putExtra("url", isZh ?
"https://eacpay.com/sc/support.html"
: "https://vcexnet.github.io/img/support.html"
Expand Down

0 comments on commit 15d7381

Please sign in to comment.