我们正在开发一种收集公寓住户的会费/租金的产品.我们在Web应用程序中使用CCavenue和PayPal支付网关来执行此功能.我们正在为同一个应用程序开发Android应用程序.
我不知道如何将Android与CCavenue集成.
我想过滤一个logcat
String myCommand="logcat -f /sdcard/output.txt"; //no filters, keep writing
myCommand="logcat -d -f /sdcard/output.txt"; //no filters, just a dump
Run Code Online (Sandbox Code Playgroud)
对我来说工作正常但对mytag没有.
我也在使用代码:
String myCommand="logcat myTag *:S"; //the equivalent of logcat -s myTag
myCommand="logcat -s myTag:D";
myCommand="logcat -s myTag:E myTag2:D";
myCommand="logcat myTag:E myTag2:D";
Run Code Online (Sandbox Code Playgroud)
但它返回空文件.