Compare commits

...

2 Commits

Author SHA1 Message Date
MooN
e4ea98f6e6 Update .gitignore 2026-01-15 20:11:06 +06:30
MooN
042fe6307e log clean 2026-01-15 20:11:00 +06:30
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -19,3 +19,4 @@ local.properties
/app/uat/release/*
/app/uat
/.idea
/app/prod/release

View File

@ -288,7 +288,7 @@ public class NetworkModule {
}
// String baseUrl = tmsAddress.trim() + "/api/v1/"; //for on prim
String baseUrl = tmsAddress.trim() + "/"; //for uat
String baseUrl = tmsAddress.trim() + "/"; //for uat and prod
final Gson gson =
new GsonBuilder().create();

View File

@ -120,7 +120,7 @@ public class Repository {
}
public Observable<EReceiptResponse> sendReceipt(Object body){
String apiSecret = BuildConfig.ERECEIPT_SECRET;
LogUtil.d("kmk", "receipt secret =>" + apiSecret);
// LogUtil.d("kmk", "receipt secret =>" + apiSecret);
String timestamp = String.valueOf(System.currentTimeMillis());
String bodyString = new Gson().toJson(body);
String dataToHash = bodyString + apiSecret + timestamp;