https://t.me/+z13NFME0Z6tlNDE1
bugpending triage
### Acknowledgements
- [x] I read the documentation and searched existing issues to avoid duplicates
- [x] I understand this is a **bug tracker** and anything other than a proven bug will be closed
- [x] I understand this is a free project and relies on community contributions
- [x] I read and understood the [Contribution guide](https://github.com/privatenumber/tsx/blob/master/CONTRIBUTING.md)
### Minimal reproduction URL
https://t.me/+z13NFME0Z6tlNDE1
### Problem & expected behavior (under 200 words)
?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F4F6FA">
<LinearLayout
android:orientation="vertical"
android:padding="14dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- LOGIN -->
<Button
android:id="@+id/btnLogin"
android:text="🔐 Login"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<!-- WALLET -->
<TextView
android:text="\n💼 Wallet"
android:textStyle="bold"
android:textSize="18sp"/>
<TextView
android:id="@+id/walletInfo"
android:background="@android:color/white"
android:padding="12dp"
android:textSize="15sp"/>
<!-- PACKAGES -->
<TextView
android:text="\n💎 Diamond & Packages"
android:textStyle="bold"
android:textSize="18sp"/>
<TextView
android:id="@+id/packageList"
android:background="@android:color/white"
android:padding="12dp"
android:textSize="14sp"/>
<!-- PAYMENT HISTORY -->
<TextView
android:text="\n📜 Payment History"
android:textStyle="bold"
android:textSize="18sp"/>
<TextView
android:id="@+id/paymentHistory"
android:background="@android:color/white"
android:padding="12dp"
android:textSize="14sp"/>
<!-- CUSTOMER SERVICE -->
<TextView
android:text="\n📞 Customer Service"
android:textStyle="bold"
android:textSize="18sp"/>
<TextView
android:id="@+id/customerService"
android:background="@android:color/white"
android:padding="12dp"
android:textSize="14sp"/>
</LinearLayout>
</ScrollView>package com.example.diamondtopup
import android.os.Bundle
import android.widget.Button
import android.widget.TextView
import androidx.appcompat.app.AppCompatActivity
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val btnLogin = findViewById<Button>(R.id.btnLogin)
val walletInfo = findViewById<TextView>(R.id.walletInfo)
val packageList = findViewById<TextView>(R.id.packageList)
val paymentHistory = findViewById<TextView>(R.id.paymentHistory)
val customerService = findViewById<TextView>(R.id.customerService)
// LOGIN (Demo)
btnLogin.setOnClickListener {
btnLogin.text = "✅ Logged In"
}
// WALLET INFO
walletInfo.text = """
Balance: ৳0.00
bKash: 01756665784
Nagad: 01337988592
Rocket: 01616517348
""".trimIndent()
// PACKAGES
packageList.text = """
🔷 MONTHLY / WEEKLY
MD Weekly – ৳153
MD Monthly – ৳758
2x Weekly – ৳303
3x Weekly – ৳454
5x Weekly – ৳756
2x Monthly – ৳1512
Weekly + Monthly – ৳748
💎 DIAMOND TOPUP
25 Diamond – ৳24
50 Diamond – ৳37
100 Diamond – ৳74
115 Diamond – ৳76
240 Diamond – ৳152
355 Diamond – ৳227
480 Diamond – ৳303
505 Diamond – ৳326
610 Diamond – ৳378
850 Diamond – ৳530
1090 Diamond – ৳681
1240 Diamond – ৳763
1720 Diamond – ৳1059
2090 Diamond – ৳1286
2530 Diamond – ৳1512
4010 Diamond – ৳2420
5060 Diamond – ৳3024
10120 Diamond – ৳6048
🎁 MYSTERY BOX
Small – ৳90
Medium – ৳450
Big – ৳900
⚡ WEEKLY LITE (BD SERVER)
1X – ৳40
2X – ৳40
3X – ৳119
5X – ৳199
10X – ৳397
20X – ৳793
30X – ৳1188
🚀 LEVEL UP
All Pass (1270 Diamond) – ৳395
Level 6 – ৳40
Level 10 – ৳70
Level 20 – ৳70
Level 25 – ৳100
Level 30 – ৳70
""".trimIndent()
// PAYMENT HISTORY (Demo)
paymentHistory.text = """
No payments yet.
After payment:
• Date
• Amount
• Method
• Status
""".trimIndent()
// CUSTOMER SERVICE
customerService.text = """
📞 Call Support
Nagad: 01337988592
bKash: 01756665784
Rocket: 01616517348
💬 WhatsApp Support
01608288371
📢 Telegram Customer Service
https://t.me/+z13NFME0Z6tlNDE1
⏰ Time: 10 AM – 10 PM
""".trimIndent()
}
}
### Bugs are expected to be fixed by those affected by it
- [ ] I'm interested in working on this issue
### Compensating engineering work will speed up resolution and support the project
- [ ] I'm willing to offer $10 for financial support
关闭于 2026-02-20 0 条评论