j3k0 / cordova-plugin-purchase

In-App Purchase for Cordova on iOS, Android and Windows
https://purchase.cordova.fovea.cc
1.3k stars 537 forks source link

[ANDROID] - store.order error 6777003 / DEVELOPER_ERROR #969

Closed guy-keller closed 4 years ago

guy-keller commented 4 years ago

System info

My Setup Details:

OSX Catalina 10.15.1
Cordova 9.0.1
Cordova Android 8.1.0
Device: Samsung S8+
Plugin Version: 10.0.1
Installed via: 'ionic cordova plugin add cordova-plugin-purchase'

Expected behavior

My registered MANAGED PRODUCT has been created long ago and I've been using AlexDisler plugin to do IAP; however, I have decided to move away from it for obvious reasons.

I am registering my managed product (non-renewing subscription) as follow:

    declare var store;
    // shortened for brevity..
    store.verbosity = store.DEBUG;
    store.register({
      id: products.subs1,
      alias: products.subs1,
      type: store.NON_RENEWING_SUBSCRIPTION
    });
    // also registered the callbacks for: cancelled, error, etc..
    store.when(products.subs1).approved(paidProduct => {
      paidProduct.finish();
      this.buyObserver.next(paidProduct);
    });
    store.refresh();

Note: I am able to retrieve the price, and all other info from my products.

When the user decides to 'purchase' it, I do a simple:

   // shortened for brevity
  store.order(productId);

I have also tried:

  type: store.CONSUMABLE

Observed behavior

When I invoke:

store.order(productId); 

I am seeing this error coming as a JSON:

{"code": 6777003, "message": "Purchase failed: DEVELOPER_ERROR"}

And this stacktrace on logcat / AndroidStudio:

... shortened for brevity
2019-12-19 18:31:32.213 3295-3295/? D/SEC LightsHAL: lcd : 7900 -
2019-12-19 18:31:32.306 6684-6684/? D/InputMethodManager: HSIFW - flag : 0 Pid : 6684
2019-12-19 18:31:32.307 3837-4299/? V/InputMethodManagerService: Client requesting input be hidden, flags : 0
2019-12-19 18:31:32.307 3837-4299/? V/InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false
2019-12-19 18:31:32.324 6684-6971/? D/CordovaPurchase: buy()
2019-12-19 18:31:32.324 6684-6971/? D/CordovaPurchase: buy() -> setSkuDetails
2019-12-19 18:31:32.324 6684-6971/? D/CordovaPurchase: initiatePurchaseFlow()
2019-12-19 18:31:32.324 6684-6971/? D/CordovaPurchase: executeServiceRequest() -> OK
2019-12-19 18:31:32.324 6684-6971/? D/CordovaPurchase: initiatePurchaseFlow() -> launchBillingFlow. Replace old SKU? false
2019-12-19 18:31:32.324 6684-6971/? D/CordovaPurchase: onActivityResult(-1,0,null)
2019-12-19 18:31:32.324 6684-6971/? D/CordovaPurchase: onActivityResult() -> super.onActivityResult()
2019-12-19 18:31:32.329 6237-14498/? I/Finsky: [3316] gcv.d(3): com.wavestracker.app: Account determined from installer data - [ASDF]
2019-12-19 18:31:32.329 6237-14498/? I/Finsky: [3316] gcv.d(14): com.wavestracker.app: Account from preferred account - [ASDF]
2019-12-19 18:31:32.342 3837-4299/? E/Parcel: Class not found when unmarshalling: com.android.billingclient.api.BillingClientImpl$1
    java.lang.ClassNotFoundException: com.android.billingclient.api.BillingClientImpl$1
        at java.lang.Class.classForName(Native Method)
        at java.lang.Class.forName(Class.java:453)
        at android.os.Parcel.readParcelableCreator(Parcel.java:2827)
        at android.os.Parcel.readParcelable(Parcel.java:2781)
        at android.os.Parcel.readValue(Parcel.java:2684)
        at android.os.Parcel.readArrayMapInternal(Parcel.java:3053)
        at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:288)
        at android.os.BaseBundle.unparcel(BaseBundle.java:232)
        at android.os.BaseBundle.getString(BaseBundle.java:1155)
        at android.content.Intent.getStringExtra(Intent.java:8111)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:733)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:671)
        at com.android.server.am.ActivityStarter.startActivityMayWait(ActivityStarter.java:1542)
        at com.android.server.am.ActivityStarter.execute(ActivityStarter.java:612)
        at com.android.server.am.ActivityManagerService.startActivityAsUser(ActivityManagerService.java:6642)
        at com.android.server.am.ActivityManagerService.startActivityAsUser(ActivityManagerService.java:6533)
        at com.android.server.am.ActivityManagerService.startActivity(ActivityManagerService.java:6524)
        at android.app.IActivityManager$Stub.onTransact$startActivity$(IActivityManager.java:10833)
        at android.app.IActivityManager$Stub.onTransact(IActivityManager.java:111)
        at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:4136)
        at android.os.Binder.execTransact(Binder.java:739)
     Caused by: java.lang.ClassNotFoundException: com.android.billingclient.api.BillingClientImpl$1
        at java.lang.Class.classForName(Native Method)
        at java.lang.BootClassLoader.findClass(ClassLoader.java:1346)
        at java.lang.BootClassLoader.loadClass(ClassLoader.java:1406)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
        at java.lang.Class.classForName(Native Method) 
        at java.lang.Class.forName(Class.java:453) 
        at android.os.Parcel.readParcelableCreator(Parcel.java:2827) 
        at android.os.Parcel.readParcelable(Parcel.java:2781) 
        at android.os.Parcel.readValue(Parcel.java:2684) 
        at android.os.Parcel.readArrayMapInternal(Parcel.java:3053) 
        at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:288) 
        at android.os.BaseBundle.unparcel(BaseBundle.java:232) 
        at android.os.BaseBundle.getString(BaseBundle.java:1155) 
        at android.content.Intent.getStringExtra(Intent.java:8111) 
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:733) 
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:671) 
        at com.android.server.am.ActivityStarter.startActivityMayWait(ActivityStarter.java:1542) 
        at com.android.server.am.ActivityStarter.execute(ActivityStarter.java:612) 
        at com.android.server.am.ActivityManagerService.startActivityAsUser(ActivityManagerService.java:6642) 
        at com.android.server.am.ActivityManagerService.startActivityAsUser(ActivityManagerService.java:6533) 
        at com.android.server.am.ActivityManagerService.startActivity(ActivityManagerService.java:6524) 
        at android.app.IActivityManager$Stub.onTransact$startActivity$(IActivityManager.java:10833) 
        at android.app.IActivityManager$Stub.onTransact(IActivityManager.java:111) 
        at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:4136) 
        at android.os.Binder.execTransact(Binder.java:739) 
     Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
2019-12-19 18:31:32.343 3837-4299/? W/Bundle: Failed to parse Bundle, but defusing quietly
    android.os.BadParcelableException: ClassNotFoundException when unmarshalling: com.android.billingclient.api.BillingClientImpl$1
        at android.os.Parcel.readParcelableCreator(Parcel.java:2855)
        at android.os.Parcel.readParcelable(Parcel.java:2781)
        at android.os.Parcel.readValue(Parcel.java:2684)
        at android.os.Parcel.readArrayMapInternal(Parcel.java:3053)
        at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:288)
        at android.os.BaseBundle.unparcel(BaseBundle.java:232)
        at android.os.BaseBundle.getString(BaseBundle.java:1155)
        at android.content.Intent.getStringExtra(Intent.java:8111)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:733)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:671)
        at com.android.server.am.ActivityStarter.startActivityMayWait(ActivityStarter.java:1542)
        at com.android.server.am.ActivityStarter.execute(ActivityStarter.java:612)
        at com.android.server.am.ActivityManagerService.startActivityAsUser(ActivityManagerService.java:6642)
        at com.android.server.am.ActivityManagerService.startActivityAsUser(ActivityManagerService.java:6533)
        at com.android.server.am.ActivityManagerService.startActivity(ActivityManagerService.java:6524)
        at android.app.IActivityManager$Stub.onTransact$startActivity$(IActivityManager.java:10833)
        at android.app.IActivityManager$Stub.onTransact(IActivityManager.java:111)
        at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:4136)
        at android.os.Binder.execTransact(Binder.java:739)
2019-12-19 18:31:32.344 3837-4299/? I/ActivityManager: START u0 {act=null typ=null flg=0x0 cmp=ComponentInfo{com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity}} from uid 10266
2019-12-19 18:31:32.347 3837-4299/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT  frequency : 1937000  uid : 1000  pid : 3837  pkgName : AMS_ACT_START@CPU_MIN@44
2019-12-19 18:31:32.349 3837-4299/? D/ActivityManagerPerformance: AMP_acquire() ACT_START
2019-12-19 18:31:32.355 3306-3306/? I/SurfaceFlinger: id=21863 createSurf (5920x5920),2 flag=4, AppWindowToken{ea4354f token=Token{84733ae ActivityRecord{9bdc429 u0 com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity t514}}}#0
2019-12-19 18:31:32.359 6684-6684/? D/CordovaActivity: Paused the activity.
2019-12-19 18:31:32.359 6684-6684/? W/com.facebook.appevents.AppEventsLoggerImpl: This function is deprecated. deactivate app will be logged automatically
2019-12-19 18:31:32.362 6684-6971/? W/PluginManager: THREAD WARNING: exec() call to InAppBillingPlugin.buy blocked the main thread for 38ms. Plugin should use CordovaInterface.getThreadPool().
2019-12-19 18:31:32.364 3837-3931/? V/WindowOrientationListener: getProposedRotation :-1
2019-12-19 18:31:32.364 3837-3931/? V/WindowManager: rotationForOrientationLw(orient=-1, last=0); user=0 USER_ROTATION_LOCKED sensorRotation=-1 mLidState=-1 mDockMode=0 mHdmiPlugged=false
2019-12-19 18:31:32.366 3837-3931/? D/GamePkgDataHelper: notifyAppCreate(), pkgName: com.wavestracker.app, sendRet: true
2019-12-19 18:31:32.366 3837-4104/? D/GamePkgDataHelper: getGamePkgData(). com.wavestracker.app
2019-12-19 18:31:32.366 3837-4104/? D/GameManagerService: handleMessage(), MSG_APP_CREATE. ignore. pkgName: com.wavestracker.app
2019-12-19 18:31:32.366 3837-3931/? D/InputDispatcher: Focused application set to: ea4354f
2019-12-19 18:31:32.367 3837-3931/? V/WindowManager: Changing focus from Window{3307098 u0 com.wavestracker.app/com.wavestracker.app.MainActivity} to null Callers=com.android.server.wm.WindowManagerService.setFocusedApp:3124 com.android.server.am.ActivityManagerService.setResumedActivityUncheckLocked:4454 com.android.server.am.ActivityStack.onActivityStateChanged:560 com.android.server.am.TaskRecord.onActivityStateChanged:2165 
2019-12-19 18:31:32.367 3837-3931/? D/InputDispatcher: Focus left window (6684): 3307098 0
2019-12-19 18:31:32.368 3837-3865/? D/WindowManager: reportFocusChangedSerialized, focused=false, inTouchMode=true, win=Window{3307098 u0 com.wavestracker.app/com.wavestracker.app.MainActivity}
2019-12-19 18:31:32.371 3837-3931/? D/GameManagerService: noteResumeComponent(), resumeComponent: com.wavestracker.app
2019-12-19 18:31:32.371 3837-4104/? D/GameManagerService: handleForegroundChange(). pkgName: com.wavestracker.app, clsName: com.android.billingclient.api.ProxyBillingActivity,FgActivityName:com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity
2019-12-19 18:31:32.371 3837-4104/? D/GameManagerService:   handleForegroundChange(). same package. game has never resumed yet. ignore
2019-12-19 18:31:32.371 3837-3931/? D/MARsPolicyManager: onPackageResumedFG pkgName = com.wavestracker.app, userId = 0
2019-12-19 18:31:32.373 3837-3837/? D/Telecom:SamsungPrebindingServiceImpl: onTopActivityChanged : ComponentInfo{com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity}
2019-12-19 18:31:32.376 6684-6684/? W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@b6f461
2019-12-19 18:31:32.384 3837-3931/? E/Parcel: Class not found when unmarshalling: fyw
    java.lang.ClassNotFoundException: fyw
        at java.lang.Class.classForName(Native Method)
        at java.lang.Class.forName(Class.java:453)
        at android.os.Parcel.readParcelableCreator(Parcel.java:2827)
        at android.os.Parcel.readParcelable(Parcel.java:2781)
        at android.os.Parcel.readValue(Parcel.java:2684)
        at android.os.Parcel.readArrayMapInternal(Parcel.java:3053)
        at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:288)
        at android.os.BaseBundle.unparcel(BaseBundle.java:232)
        at android.os.BaseBundle.getString(BaseBundle.java:1155)
        at android.content.Intent.getStringExtra(Intent.java:8111)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:733)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:671)
        at com.android.server.am.ActivityStarter.startActivityMayWait(ActivityStarter.java:1542)
        at com.android.server.am.ActivityStarter.execute(ActivityStarter.java:612)
        at com.android.server.am.ActivityStartController.startActivityInPackage(ActivityStartController.java:305)
        at com.android.server.am.PendingIntentRecord.sendInner(PendingIntentRecord.java:420)
        at com.android.server.am.ActivityManagerService.startActivityIntentSender(ActivityManagerService.java:6889)
        at android.app.IActivityManager$Stub.onTransact$startActivityIntentSender$(IActivityManager.java:11515)
        at android.app.IActivityManager$Stub.onTransact(IActivityManager.java:1075)
        at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:4136)
        at android.os.Binder.execTransact(Binder.java:739)
     Caused by: java.lang.ClassNotFoundException: fyw
        at java.lang.Class.classForName(Native Method)
        at java.lang.BootClassLoader.findClass(ClassLoader.java:1346)
        at java.lang.BootClassLoader.loadClass(ClassLoader.java:1406)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
        at java.lang.Class.classForName(Native Method) 
        at java.lang.Class.forName(Class.java:453) 
        at android.os.Parcel.readParcelableCreator(Parcel.java:2827) 
        at android.os.Parcel.readParcelable(Parcel.java:2781) 
        at android.os.Parcel.readValue(Parcel.java:2684) 
        at android.os.Parcel.readArrayMapInternal(Parcel.java:3053) 
        at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:288) 
        at android.os.BaseBundle.unparcel(BaseBundle.java:232) 
        at android.os.BaseBundle.getString(BaseBundle.java:1155) 
        at android.content.Intent.getStringExtra(Intent.java:8111) 
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:733) 
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:671) 
        at com.android.server.am.ActivityStarter.startActivityMayWait(ActivityStarter.java:1542) 
        at com.android.server.am.ActivityStarter.execute(ActivityStarter.java:612) 
        at com.android.server.am.ActivityStartController.startActivityInPackage(ActivityStartController.java:305) 
        at com.android.server.am.PendingIntentRecord.sendInner(PendingIntentRecord.java:420) 
        at com.android.server.am.ActivityManagerService.startActivityIntentSender(ActivityManagerService.java:6889) 
        at android.app.IActivityManager$Stub.onTransact$startActivityIntentSender$(IActivityManager.java:11515) 
        at android.app.IActivityManager$Stub.onTransact(IActivityManager.java:1075) 
        at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:4136) 
        at android.os.Binder.execTransact(Binder.java:739) 
     Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
2019-12-19 18:31:32.384 3837-3931/? W/Bundle: Failed to parse Bundle, but defusing quietly
    android.os.BadParcelableException: ClassNotFoundException when unmarshalling: fyw
        at android.os.Parcel.readParcelableCreator(Parcel.java:2855)
        at android.os.Parcel.readParcelable(Parcel.java:2781)
        at android.os.Parcel.readValue(Parcel.java:2684)
        at android.os.Parcel.readArrayMapInternal(Parcel.java:3053)
        at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:288)
        at android.os.BaseBundle.unparcel(BaseBundle.java:232)
        at android.os.BaseBundle.getString(BaseBundle.java:1155)
        at android.content.Intent.getStringExtra(Intent.java:8111)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:733)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:671)
        at com.android.server.am.ActivityStarter.startActivityMayWait(ActivityStarter.java:1542)
        at com.android.server.am.ActivityStarter.execute(ActivityStarter.java:612)
        at com.android.server.am.ActivityStartController.startActivityInPackage(ActivityStartController.java:305)
        at com.android.server.am.PendingIntentRecord.sendInner(PendingIntentRecord.java:420)
        at com.android.server.am.ActivityManagerService.startActivityIntentSender(ActivityManagerService.java:6889)
        at android.app.IActivityManager$Stub.onTransact$startActivityIntentSender$(IActivityManager.java:11515)
        at android.app.IActivityManager$Stub.onTransact(IActivityManager.java:1075)
        at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:4136)
        at android.os.Binder.execTransact(Binder.java:739)
2019-12-19 18:31:32.384 3837-3931/? I/ActivityManager: START u0 {act=com.google.android.finsky.phoenix.ACQUIRE typ=null flg=0x0 cmp=ComponentInfo{com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}} from uid 10051
2019-12-19 18:31:32.386 3837-3931/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT  frequency : 2314000  uid : 1000  pid : 3837  pkgName : AMS_APP_SWITCH@CPU_MIN@30
2019-12-19 18:31:32.388 3837-3931/? D/ActivityManagerPerformance: AMP_acquire() APP_SWITCH
2019-12-19 18:31:32.389 3306-3306/? I/SurfaceFlinger: id=21864 createSurf (5920x5920),2 flag=4, AppWindowToken{3860a86 token=Token{ad8cf61 ActivityRecord{57882c8 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity t514}}}#0
2019-12-19 18:31:32.393 3837-3931/? D/ActivityManager: Received ACTIVITY intent in key u0 {eb7f47 act=com.google.android.finsky.phoenix.ACQUIREstartActivity cmp=null res=0} from uid 10266
2019-12-19 18:31:32.395 6684-6684/? I/DecorView: createDecorCaptionView >> DecorView@54aac47[], isFloating: false, isApplication: true, hasWindowDecorCaption: false, hasWindowControllerCallback: true
2019-12-19 18:31:32.401 3837-3931/? D/InputTransport: Input channel constructed: fd=405
2019-12-19 18:31:32.401 3837-3931/? D/InputTransport: Input channel constructed: fd=419
2019-12-19 18:31:32.402 3306-3306/? I/SurfaceFlinger: id=21865 createSurf (5920x5920),2 flag=4, 7f2009d com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity#0
2019-12-19 18:31:32.403 3837-3931/? D/InputTransport: Input channel destroyed: fd=419
2019-12-19 18:31:32.403 6684-6684/? D/InputTransport: Input channel constructed: fd=146
2019-12-19 18:31:32.403 6684-6684/? D/ViewRootImpl@6909be0[ProxyBillingActivity]: setView = DecorView@54aac47[ProxyBillingActivity] TM=true MM=false
2019-12-19 18:31:32.404 6684-6684/? D/ViewRootImpl@499452f[MainActivity]: MSG_WINDOW_FOCUS_CHANGED 0 1
2019-12-19 18:31:32.404 6684-6684/? D/InputMethodManager: prepareNavigationBarInfo() DecorView@1421684[MainActivity]
2019-12-19 18:31:32.404 6684-6684/? D/InputMethodManager: getNavigationBarColor() -855310
2019-12-19 18:31:32.405 6684-6684/? D/ViewRootImpl@6909be0[ProxyBillingActivity]: dispatchAttachedToWindow
2019-12-19 18:31:32.408 3837-3931/? V/WindowManager: Relayout Window{7f2009d u0 com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity}: viewVisibility=0 req=1080x2094 {(0,0)(fillxfill) sim={adjust=pan forwardNavigation} ty=BASE_APPLICATION fmt=TRANSPARENT wanim=0x1030000
      fl=LAYOUT_IN_SCREEN LAYOUT_INSET_DECOR SPLIT_TOUCH HARDWARE_ACCELERATED
      pfl=FORCE_DRAW_STATUS_BAR_BACKGROUND  remains{ 0x1000000 }
      vsysui=LIGHT_NAVIGATION_BAR naviIconColor=0}
2019-12-19 18:31:32.412 3306-3306/? I/SurfaceFlinger: id=21866 createSurf (1080x2094),1 flag=4, com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity[6684]#0
2019-12-19 18:31:32.412 3837-3931/? D/WindowManager: makeSurface duration=2 name=com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity[6684]
2019-12-19 18:31:32.413 3837-3931/? V/WindowManager: Changing focus from null to Window{7f2009d u0 com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity} Callers=com.android.server.wm.WindowManagerService.relayoutWindow:2520 com.android.server.wm.Session.relayoutForTranslate:302 android.view.IWindowSession$Stub.onTransact:518 com.android.server.wm.Session.onTransact:186 
2019-12-19 18:31:32.413 3837-3931/? D/StatusBarManagerService: notifyRequestedSystemKey recent=false home=false
2019-12-19 18:31:32.413 3837-3856/? D/WindowManager: setSystemUiVisibility: vis= 0x8018, fullscreenVis= 0x2000, dockedVis= 0x0, win=Window{7f2009d u0 com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity}
2019-12-19 18:31:32.413 3837-3931/? D/InputDispatcher: Focus entered window (6684): 7f2009d 0
2019-12-19 18:31:32.414 4176-4176/? D/LightBarController: onNavigationVisibilityChanged : vis = 8018, nbModeChanged = false navigationBarMode = 4
2019-12-19 18:31:32.414 3837-4299/? D/SamsungPhoneWindowManager: adjustSystemUiVisibilityLw: vis=0x8018
2019-12-19 18:31:32.414 3837-4299/? D/InputManager-JNI: setSystemUiVisibility dexmode: false changed: true displayid: 0 visibility: 0x8018 DD: 0x8018 OD: 0x0
2019-12-19 18:31:32.414 3837-3865/? D/WindowManager: reportFocusChangedSerialized, focused=true, inTouchMode=true, win=Window{7f2009d u0 com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity}
2019-12-19 18:31:32.414 6684-6684/? D/ViewRootImpl@6909be0[ProxyBillingActivity]: Relayout returned: old=[0,0][1080,2094] new=[0,0][1080,2094] result=0x7 surface={valid=true 500098842624} changed=true
2019-12-19 18:31:32.421 6684-6775/? D/mali_winsys: EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, EGLBoolean) returns 0x3000
2019-12-19 18:31:32.421 6684-6775/? D/OpenGLRenderer: eglCreateWindowSurface = 0x7452c5a800, 0x747036c010
2019-12-19 18:31:32.423 3837-4299/? V/WindowOrientationListener: getProposedRotation :-1
2019-12-19 18:31:32.423 3837-4299/? V/WindowManager: rotationForOrientationLw(orient=-1, last=0); user=0 USER_ROTATION_LOCKED sensorRotation=-1 mLidState=-1 mDockMode=0 mHdmiPlugged=false
2019-12-19 18:31:32.424 6237-6237/? W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@94ef582
2019-12-19 18:31:32.432 3837-4299/? D/GamePkgDataHelper: notifyAppCreate(), pkgName: com.android.vending, sendRet: true
2019-12-19 18:31:32.432 3837-4104/? D/GamePkgDataHelper: getGamePkgData(). com.android.vending
2019-12-19 18:31:32.432 3837-4104/? D/GameManagerService: handleMessage(), MSG_APP_CREATE. ignore. pkgName: com.android.vending
2019-12-19 18:31:32.432 3837-4299/? D/InputDispatcher: Focused application set to: 3860a86
2019-12-19 18:31:32.433 3837-4299/? V/WindowManager: Changing focus from Window{7f2009d u0 com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity} to null Callers=com.android.server.wm.WindowManagerService.setFocusedApp:3124 com.android.server.am.ActivityManagerService.setResumedActivityUncheckLocked:4454 com.android.server.am.ActivityStack.onActivityStateChanged:560 com.android.server.am.TaskRecord.onActivityStateChanged:2165 
2019-12-19 18:31:32.433 3837-4299/? D/InputDispatcher: Focus left window (6684): 7f2009d 0
2019-12-19 18:31:32.433 3837-3865/? D/WindowManager: reportFocusChangedSerialized, focused=false, inTouchMode=true, win=Window{7f2009d u0 com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity}
2019-12-19 18:31:32.434 3837-4299/? D/GamePkgDataHelper: getSosPolicy(). com.android.vending
2019-12-19 18:31:32.434 3837-4299/? D/GameManagerService: identifyGamePackage. com.android.vending
2019-12-19 18:31:32.434 3837-4299/? D/GamePkgDataHelper: getGamePkgData(). com.android.vending
2019-12-19 18:31:32.435 3837-6185/? D/GamePkgDataHelper: getGamePkgDataIncServer(). com.android.vending
2019-12-19 18:31:32.436 3837-6185/? D/GameManagerService: identifyGamePackage. null
2019-12-19 18:31:32.436 3837-4299/? D/GameManagerService: noteResumeComponent(), resumeComponent: com.android.vending
2019-12-19 18:31:32.436 3837-4104/? D/GameManagerService: handleForegroundChange(). pkgName: com.android.vending, clsName: com.google.android.finsky.billing.acquire.PhoenixAcquireActivity,FgActivityName:com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity
2019-12-19 18:31:32.436 3837-4104/? D/GameManagerService:   handleForegroundChange(). set mFgApp: com.android.vending
2019-12-19 18:31:32.436 3837-4104/? D/GameManagerService: notifyResumePause(). pkg: com.android.vending, type: 4, isMinimized: false, isTunableApp: false
2019-12-19 18:31:32.437 3837-4104/? D/GameManagerService:   notifyResumePause(). unexpected mPrevNotiType: -1
2019-12-19 18:31:32.437 3837-4299/? D/MARsPolicyManager: onPackageResumedFG pkgName = com.android.vending, userId = 0
2019-12-19 18:31:32.437 3837-3837/? D/Telecom:SamsungPrebindingServiceImpl: onTopActivityChanged : ComponentInfo{com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}
2019-12-19 18:31:32.438 3837-4299/? V/WindowManager: Resize reasons for w=Window{7f2009d u0 com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity}:  contentInsetsChanged=false [0,63][0,0] visibleInsetsChanged=false [0,63][0,0] stableInsetsChanged=false [0,63][0,0] outsetsChanged=false [0,0][0,0] surfaceResized=false configChanged=false dragResizingChanged=false reportOrientationChanged=false displayCutoutChanged=false nextForceRelayoutToClient=false
2019-12-19 18:31:32.440 4430-4491/? D/ForegroundUtils: could not check pending caller
2019-12-19 18:31:32.440 3837-6185/? D/GamePkgDataHelper: getSosPolicy(). com.android.vending
2019-12-19 18:31:32.440 3837-3856/? D/CodecSolution: isMaxAspectPackageEx: com.android.vending : true(2)
2019-12-19 18:31:32.440 4335-17446/? D/ProcessObserver_FLP: onForegroundActivities changed, 6237/10051/true
2019-12-19 18:31:32.441 4335-4387/? D/EventHandler_FLP: FOREGROUND_ACTIVITY_CHANGE
2019-12-19 18:31:32.442 3837-4299/? D/GameManagerService: identifyGamePackage. com.android.vending
2019-12-19 18:31:32.442 3837-4299/? D/GamePkgDataHelper: getGamePkgData(). com.android.vending
2019-12-19 18:31:32.446 3837-3931/? D/GameManagerService: identifyGamePackage. com.android.vending
2019-12-19 18:31:32.446 3837-3931/? D/GamePkgDataHelper: getGamePkgData(). com.android.vending
2019-12-19 18:31:32.449 3837-3931/? D/WindowManager: finishDrawingWindow: Window{7f2009d u0 com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity} mDrawState=DRAW_PENDING
2019-12-19 18:31:32.451 6684-6684/? D/ViewRootImpl@6909be0[ProxyBillingActivity]: MSG_WINDOW_FOCUS_CHANGED 0 1
2019-12-19 18:31:32.451 6684-6684/? D/InputMethodManager: prepareNavigationBarInfo() DecorView@54aac47[ProxyBillingActivity]
2019-12-19 18:31:32.451 6684-6684/? D/InputMethodManager: getNavigationBarColor() -855310
2019-12-19 18:31:32.451 6684-6684/? D/ViewRootImpl@6909be0[ProxyBillingActivity]: MSG_WINDOW_FOCUS_CHANGED 0 0
2019-12-19 18:31:32.451 6237-6237/? I/DecorView: createDecorCaptionView >> DecorView@35984e7[], isFloating: false, isApplication: true, hasWindowDecorCaption: false, hasWindowControllerCallback: true
2019-12-19 18:31:32.451 6684-6684/? D/ViewRootImpl@6909be0[ProxyBillingActivity]: MSG_RESIZED_REPORT: frame=Rect(0, 0 - 1080, 2094) ci=Rect(0, 63 - 0, 0) vi=Rect(0, 63 - 0, 0) or=1
2019-12-19 18:31:32.452 3837-3924/? I/WindowManager: commitFinishDrawingLocked: mDrawState=READY_TO_SHOW Surface(name=com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity[6684])/@0x7d6c8e3
2019-12-19 18:31:32.454 3837-3924/? I/WindowManager: commitFinishDrawingLocked: mDrawState=READY_TO_SHOW Surface(name=com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity[6684])/@0x7d6c8e3
2019-12-19 18:31:32.461 3837-3931/? D/WindowManager: finishDrawingWindow: Window{7f2009d u0 com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity} mDrawState=READY_TO_SHOW
2019-12-19 18:31:32.462 3837-3924/? I/WindowManager: commitFinishDrawingLocked: mDrawState=READY_TO_SHOW Surface(name=com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity[6684])/@0x7d6c8e3
2019-12-19 18:31:32.470 6237-6237/? D/ScrollView: initGoToTop
2019-12-19 18:31:32.478 3837-4299/? D/ConnectivityService: filterNetworkStateForUid() uid: 10051, pid: 6237
2019-12-19 18:31:32.478 3837-4299/? D/ConnectivityService: filterNetworkStateForUid() uid: 10051, pid: 6237, networkInfo: [type: WIFI[], state: CONNECTED/CONNECTED, reason: (unspecified), extra: (none), failover: false, available: true, roaming: false]
2019-12-19 18:31:32.471 6237-6237/? D/ScrollView: initGoToTop
2019-12-19 18:31:32.478 3837-4299/? D/WifiPermissionsUtil: canAccessScanResults: pkgName = com.android.vending, uid = 10051
2019-12-19 18:31:32.478 3837-4299/? D/WifiPermissionsUtil: Denied: canCallingUidAccessLocation = false, canAppPackageUseLocation = false
2019-12-19 18:31:32.483 3837-4299/? D/SdpManagerService: Not an enterprise user : 0
2019-12-19 18:31:32.485 3837-4299/? D/SdpManagerService: Not an enterprise user : 0
2019-12-19 18:31:32.485 3837-4299/? I/FingerprintService: Active Biometrics : true
2019-12-19 18:31:32.486 3837-4299/? D/SdpManagerService: Not an enterprise user : 0
2019-12-19 18:31:32.486 3837-4299/? I/FingerprintService: Active Biometrics : true
2019-12-19 18:31:32.488 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:791) entered get_key_characteristics function.
2019-12-19 18:31:32.489 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x00000009, ret = 0x00000000
2019-12-19 18:31:32.489 3195-3195/? D/keymaster_tee: [DEBUG]: (keymaster_params_log.c:282) ret OK PARAMS: AES SIZE:256 GCM PADNO ENC DEC NONCE AUTH 20190301145250 
2019-12-19 18:31:32.489 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:805) exit get_key_characteristics function, returns 0
2019-12-19 18:31:32.489 3195-3195/? W//vendor/bin/hw/android.hardware.keymaster@3.0-service: Not performing software digesting for symmetric cipher keys
2019-12-19 18:31:32.489 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:880) entered begin function.
2019-12-19 18:31:32.490 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x0000000E, ret = 0x00000000
2019-12-19 18:31:32.490 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:889) exit begin function, returns 0
2019-12-19 18:31:32.490 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:900) entered update function.
2019-12-19 18:31:32.490 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x0000000F, ret = 0x00000000
2019-12-19 18:31:32.490 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:910) exit update function, returns 0
2019-12-19 18:31:32.490 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:920) entered finish function.
2019-12-19 18:31:32.491 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x00000010, ret = 0x00000000
2019-12-19 18:31:32.491 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:930) exit finish function, returns 0
2019-12-19 18:31:32.489 3195-3195/? W//vendor/bin/hw/android.hardware.keymaster@3.0-service: Not performing software digesting for symmetric cipher keys
2019-12-19 18:31:32.491 3450-3450/? I/samsung_keystore: cipherBlob : decrypt, 1
2019-12-19 18:31:32.491 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:791) entered get_key_characteristics function.
2019-12-19 18:31:32.492 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x00000009, ret = 0x00000000
2019-12-19 18:31:32.492 3195-3195/? D/keymaster_tee: [DEBUG]: (keymaster_params_log.c:282) ret OK PARAMS: SIZE:128 AES ENC DEC CBC PKCS7 FP 20190821211010 
2019-12-19 18:31:32.492 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:805) exit get_key_characteristics function, returns 0
2019-12-19 18:31:32.492 3195-3195/? W//vendor/bin/hw/android.hardware.keymaster@3.0-service: Not performing software digesting for symmetric cipher keys
2019-12-19 18:31:32.493 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:791) entered get_key_characteristics function.
2019-12-19 18:31:32.494 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x00000009, ret = 0x00000000
2019-12-19 18:31:32.495 3195-3195/? D/keymaster_tee: [DEBUG]: (keymaster_params_log.c:282) ret OK PARAMS: AES SIZE:256 GCM PADNO ENC DEC NONCE AUTH 20190301145250 
2019-12-19 18:31:32.495 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:805) exit get_key_characteristics function, returns 0
2019-12-19 18:31:32.495 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:880) entered begin function.
2019-12-19 18:31:32.496 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x0000000E, ret = 0x00000000
2019-12-19 18:31:32.496 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:889) exit begin function, returns 0
2019-12-19 18:31:32.496 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:900) entered update function.
2019-12-19 18:31:32.496 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x0000000F, ret = 0x00000000
2019-12-19 18:31:32.496 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:910) exit update function, returns 0
2019-12-19 18:31:32.496 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:920) entered finish function.
2019-12-19 18:31:32.497 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x00000010, ret = 0x00000000
2019-12-19 18:31:32.497 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:930) exit finish function, returns 0
2019-12-19 18:31:32.495 3195-3195/? I/chatty: uid=1000(system) keymaster@3.0-s identical 2 lines
2019-12-19 18:31:32.495 3195-3195/? W//vendor/bin/hw/android.hardware.keymaster@3.0-service: Not performing software digesting for symmetric cipher keys
2019-12-19 18:31:32.497 3450-3450/? I/samsung_keystore: cipherBlob : decrypt, 1
2019-12-19 18:31:32.497 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:791) entered get_key_characteristics function.
2019-12-19 18:31:32.498 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x00000009, ret = 0x00000000
2019-12-19 18:31:32.498 3195-3195/? D/keymaster_tee: [DEBUG]: (keymaster_params_log.c:282) ret OK PARAMS: SIZE:128 AES ENC DEC CBC PKCS7 FP 20190821211010 
2019-12-19 18:31:32.498 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:805) exit get_key_characteristics function, returns 0
2019-12-19 18:31:32.498 3195-3195/? W//vendor/bin/hw/android.hardware.keymaster@3.0-service: Not performing software digesting for symmetric cipher keys
2019-12-19 18:31:32.498 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:744) entered add_rng_entropy function.
2019-12-19 18:31:32.498 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_tc_api.c:988) ******PRNG ENTROPY***NWD****
2019-12-19 18:31:32.499 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x00000007, ret = 0x00000000
2019-12-19 18:31:32.499 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:755) exit add_rng_entropy function, returns 0
2019-12-19 18:31:32.499 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:791) entered get_key_characteristics function.
2019-12-19 18:31:32.500 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x00000009, ret = 0x00000000
2019-12-19 18:31:32.500 3195-3195/? D/keymaster_tee: [DEBUG]: (keymaster_params_log.c:282) ret OK PARAMS: SIZE:128 AES ENC DEC CBC PKCS7 FP 20190821211010 
2019-12-19 18:31:32.500 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:805) exit get_key_characteristics function, returns 0
2019-12-19 18:31:32.500 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:880) entered begin function.
2019-12-19 18:31:32.501 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x0000000E, ret = 0x00000000
2019-12-19 18:31:32.501 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:889) exit begin function, returns 0
2019-12-19 18:31:32.502 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:791) entered get_key_characteristics function.
2019-12-19 18:31:32.503 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x00000009, ret = 0x00000000
2019-12-19 18:31:32.503 3195-3195/? D/keymaster_tee: [DEBUG]: (keymaster_params_log.c:282) ret OK PARAMS: AES SIZE:256 GCM PADNO ENC DEC NONCE AUTH 20190301145250 
2019-12-19 18:31:32.503 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:805) exit get_key_characteristics function, returns 0
2019-12-19 18:31:32.503 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:880) entered begin function.
2019-12-19 18:31:32.504 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x0000000E, ret = 0x00000000
2019-12-19 18:31:32.504 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:889) exit begin function, returns 0
2019-12-19 18:31:32.504 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:900) entered update function.
2019-12-19 18:31:32.504 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x0000000F, ret = 0x00000000
2019-12-19 18:31:32.504 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:910) exit update function, returns 0
2019-12-19 18:31:32.505 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:920) entered finish function.
2019-12-19 18:31:32.505 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x00000010, ret = 0x00000000
2019-12-19 18:31:32.505 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:930) exit finish function, returns 0
2019-12-19 18:31:32.503 3195-3195/? I/chatty: uid=1000(system) keymaster@3.0-s identical 4 lines
2019-12-19 18:31:32.503 3195-3195/? W//vendor/bin/hw/android.hardware.keymaster@3.0-service: Not performing software digesting for symmetric cipher keys
2019-12-19 18:31:32.505 3450-3450/? I/samsung_keystore: cipherBlob : decrypt, 1
2019-12-19 18:31:32.505 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:791) entered get_key_characteristics function.
2019-12-19 18:31:32.506 3195-3195/? D/keymaster_tee: [DEBUG]: (nwd_keymaster_mobicore.c:353) TLC_COMMAND(e): cmd = 0x00000009, ret = 0x00000000
2019-12-19 18:31:32.506 3195-3195/? D/keymaster_tee: [DEBUG]: (keymaster_params_log.c:282) ret OK PARAMS: SIZE:128 AES ENC DEC CBC PKCS7 FP 20190821211010 
2019-12-19 18:31:32.506 3195-3195/? I/keymaster_tee: [INFO]:  (nwd_keymaster_mdfpp.cpp:805) exit get_key_characteristics function, returns 0
2019-12-19 18:31:32.506 3195-3195/? W//vendor/bin/hw/android.hardware.keymaster@3.0-service: Not performing software digesting for symmetric cipher keys
2019-12-19 18:31:32.506 3195-3195/? W//vendor/bin/hw/android.hardware.keymaster@3.0-service: Not performing software digesting for symmetric cipher keys
2019-12-19 18:31:32.508 3837-4299/? V/FingerprintService: getAuthenticatorId : pkg = com.android.vending, from pid=6237
2019-12-19 18:31:32.508 3837-4299/? D/SdpManagerService: Not an enterprise user : 0
2019-12-19 18:31:32.508 3837-4299/? I/FingerprintService: Active Biometrics : true
2019-12-19 18:31:32.508 6237-6237/? D/KeyStore: UserNotAuthenticatedException because of Fingerprint
2019-12-19 18:31:32.518 3837-3931/? D/InputTransport: Input channel constructed: fd=419
2019-12-19 18:31:32.518 3837-3931/? D/InputTransport: Input channel constructed: fd=496
2019-12-19 18:31:32.519 3306-3306/? I/SurfaceFlinger: id=21867 createSurf (5920x5920),2 flag=4, 5730999 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity#0
2019-12-19 18:31:32.521 3837-3931/? D/InputTransport: Input channel destroyed: fd=496
2019-12-19 18:31:32.521 6237-6237/? D/InputTransport: Input channel constructed: fd=94
2019-12-19 18:31:32.521 6237-6237/? D/ViewRootImpl@819f990[PhoenixAcquireActivity]: setView = DecorView@35984e7[PhoenixAcquireActivity] TM=true MM=false
2019-12-19 18:31:32.524 6237-6237/? D/ViewRootImpl@819f990[PhoenixAcquireActivity]: dispatchAttachedToWindow
2019-12-19 18:31:32.528 3837-3931/? V/WindowManager: Relayout Window{5730999 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}: viewVisibility=0 req=1080x2220 {(0,0)(fillxfill) sim={adjust=resize forwardNavigation} ty=BASE_APPLICATION fmt=TRANSPARENT
      fl=DIM_BEHIND LAYOUT_IN_SCREEN FULLSCREEN LAYOUT_INSET_DECOR SPLIT_TOUCH HARDWARE_ACCELERATED DRAWS_SYSTEM_BAR_BACKGROUNDS
      pfl=FORCE_DRAW_STATUS_BAR_BACKGROUND  remains{ 0x1000000 }
      vsysui=LAYOUT_STABLE LAYOUT_FULLSCREEN LIGHT_NAVIGATION_BAR naviIconColor=0}
2019-12-19 18:31:32.529 3837-3931/? I/WindowManager: commitFinishDrawingLocked: mDrawState=READY_TO_SHOW Surface(name=com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity[6684])/@0x7d6c8e3
2019-12-19 18:31:32.531 3306-3306/? I/SurfaceFlinger: id=21868 createSurf (1080x2220),1 flag=4, com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity[6237]#0
2019-12-19 18:31:32.532 3837-3931/? D/WindowManager: makeSurface duration=2 name=com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity[6237]
2019-12-19 18:31:32.532 3837-3931/? V/WindowManager: Changing focus from null to Window{5730999 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity} Callers=com.android.server.wm.WindowManagerService.relayoutWindow:2520 com.android.server.wm.Session.relayoutForTranslate:302 android.view.IWindowSession$Stub.onTransact:518 com.android.server.wm.Session.onTransact:186 
2019-12-19 18:31:32.532 3837-3931/? D/StatusBarManagerService: notifyRequestedSystemKey recent=false home=false
2019-12-19 18:31:32.533 3837-3856/? D/WindowManager: setSystemUiVisibility: vis= 0x8518, fullscreenVis= 0x2000, dockedVis= 0x0, win=Window{5730999 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}
2019-12-19 18:31:32.533 3837-3931/? D/InputDispatcher: Focus entered window (6237): 5730999 0
2019-12-19 18:31:32.533 3837-4299/? D/SamsungPhoneWindowManager: adjustSystemUiVisibilityLw: vis=0x8518
2019-12-19 18:31:32.533 3837-4299/? D/InputManager-JNI: setSystemUiVisibility dexmode: false changed: true displayid: 0 visibility: 0x8518 DD: 0x8518 OD: 0x0
2019-12-19 18:31:32.533 4176-4176/? D/LightBarController: onNavigationVisibilityChanged : vis = 8518, nbModeChanged = false navigationBarMode = 4
2019-12-19 18:31:32.534 6237-6237/? D/ViewRootImpl@819f990[PhoenixAcquireActivity]: Relayout returned: old=[0,0][1080,2220] new=[0,0][1080,2220] result=0x7 surface={valid=true 3302178816} changed=true
2019-12-19 18:31:32.534 3837-3865/? D/WindowManager: reportFocusChangedSerialized, focused=true, inTouchMode=true, win=Window{5730999 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}
2019-12-19 18:31:32.539 5390-3553/? D/RecentsTaskLoadPlan: lastReportedWindowingMode is not exist.
2019-12-19 18:31:32.544 6237-6910/? D/mali_winsys: EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, EGLBoolean) returns 0x3000
2019-12-19 18:31:32.544 6237-6910/? D/OpenGLRenderer: eglCreateWindowSurface = 0xddfb0740, 0xc4d34008
2019-12-19 18:31:32.545 6237-6237/? D/ScrollView:  onsize change changed 
2019-12-19 18:31:32.558 3837-3931/? D/WindowManager: finishDrawingWindow: Window{5730999 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity} mDrawState=DRAW_PENDING
2019-12-19 18:31:32.545 6237-6237/? D/ScrollView:  onsize change changed 
2019-12-19 18:31:32.559 6237-6237/? D/ViewRootImpl@819f990[PhoenixAcquireActivity]: MSG_WINDOW_FOCUS_CHANGED 1 1
2019-12-19 18:31:32.559 3837-3924/? I/WindowManager: commitFinishDrawingLocked: mDrawState=READY_TO_SHOW Surface(name=com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity[6237])/@0xc61a655
2019-12-19 18:31:32.559 3837-3924/? V/WindowManager: Resize reasons for w=Window{5730999 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}:  contentInsetsChanged=false [0,0][0,126] visibleInsetsChanged=false [0,63][0,126] stableInsetsChanged=false [0,63][0,126] outsetsChanged=false [0,0][0,0] surfaceResized=false configChanged=false dragResizingChanged=false reportOrientationChanged=false displayCutoutChanged=false nextForceRelayoutToClient=false
2019-12-19 18:31:32.559 3837-3924/? I/WindowManager: commitFinishDrawingLocked: mDrawState=READY_TO_SHOW Surface(name=com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity[6684])/@0x7d6c8e3
2019-12-19 18:31:32.561 3837-3837/? D/FreeformController: Fail to invalid task id :  -1
2019-12-19 18:31:32.561 3837-3924/? V/WindowManager: performShowLocked: mDrawState=HAS_DRAWN in Window{5730999 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}
2019-12-19 18:31:32.562 3837-3837/? D/FreeformController: Fail to invalid task id :  -1
2019-12-19 18:31:32.562 3837-3924/? V/WindowManager: performShowLocked: mDrawState=HAS_DRAWN in Window{7f2009d u0 com.wavestracker.app/com.android.billingclient.api.ProxyBillingActivity}
2019-12-19 18:31:32.563 3837-3837/? D/FreeformController: Fail to invalid task id :  -1
2019-12-19 18:31:32.565 3837-3837/? I/chatty: uid=1000 system_server identical 2 lines
2019-12-19 18:31:32.565 3837-3837/? D/FreeformController: Fail to invalid task id :  -1
2019-12-19 18:31:32.569 3837-3924/? I/WindowManager: Cancelling animation restarting=true, leash=null, surface=Surface(name=f54a66a StatusBar)/@0x6911e90, parent=Surface(name=WindowToken{c865b0c android.os.BinderProxy@27110e0})/@0x67a1389
2019-12-19 18:31:32.569 3837-3924/? I/WindowManager: Reparenting to leash, surface=Surface(name=f54a66a StatusBar)/@0x6911e90
2019-12-19 18:31:32.570 3306-3306/? I/SurfaceFlinger: id=21869 createSurf (5920x5920),2 flag=4, Surface(name=f54a66a StatusBar)/@0x6911e90 - animation-leash#0
2019-12-19 18:31:32.571 3837-3924/? D/SurfaceControl: reparent is called, sc=Surface(name=f54a66a StatusBar)/@0x6911e90, newParentHandle=android.os.BinderProxy@5b62df8, transaction=android.view.SurfaceControl$Transaction@7ee1034
2019-12-19 18:31:32.572 3837-3856/? D/WindowManager: setSystemUiVisibility: vis= 0x8518, fullscreenVis= 0x0, dockedVis= 0x0, win=Window{5730999 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}
2019-12-19 18:31:32.572 4176-4176/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-19 18:31:32.572 4176-4176/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-19 18:31:32.573 3306-3306/? I/SurfaceFlinger: id=21870 createSurf (5920x5920),-1 flag=20004, Dim Layer for - Task=514#0
2019-12-19 18:31:32.573 4176-4176/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-19 18:31:32.574 3837-3924/? I/WindowManager: Cancelling animation restarting=true, leash=null, surface=Surface(name=Dim Layer for - Task=514)/@0xa2c2136, parent=Surface(name=Task=514)/@0xceab925
2019-12-19 18:31:32.574 3837-3924/? I/WindowManager: Reparenting to leash, surface=Surface(name=Dim Layer for - Task=514)/@0xa2c2136
2019-12-19 18:31:32.574 4176-4176/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-19 18:31:32.574 4176-4176/? I/PanelView: n.B.P.E.C:false, false, false, false, false, false
2019-12-19 18:31:32.575 4176-4176/? D/LightBarController: onNavigationVisibilityChanged : vis = 8518, nbModeChanged = false navigationBarMode = 4
2019-12-19 18:31:32.575 3306-3306/? I/SurfaceFlinger: id=21871 createSurf (5920x5920),2 flag=4, Surface(name=Dim Layer for - Task=514)/@0xa2c2136 - animation-leash#0
2019-12-19 18:31:32.576 3837-3924/? D/SurfaceControl: reparent is called, sc=Surface(name=Dim Layer for - Task=514)/@0xa2c2136, newParentHandle=android.os.BinderProxy@cacc837, transaction=android.view.SurfaceControl$Transaction@cd2129f
2019-12-19 18:31:32.577 3306-5833/? D/Layer: [f54a66a StatusBar#0]::reparent oldParent:[WindowToken{c865b0c android.os.BinderProxy@27110e0}#0], newParent:[Surface(name=f54a66a StatusBar)/@0x6911e90 - animation-leash#0]
2019-12-19 18:31:32.578 4176-4176/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-19 18:31:32.580 3306-5833/? D/Layer: [Dim Layer for - Task=514#0]::reparent oldParent:[Task=514#0], newParent:[Surface(name=Dim Layer for - Task=514)/@0xa2c2136 - animation-leash#0]
2019-12-19 18:31:32.581 4176-4176/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-19 18:31:32.581 4176-4176/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-19 18:31:32.581 6237-6237/? D/InputMethodManager: prepareNavigationBarInfo() DecorView@35984e7[PhoenixAcquireActivity]
2019-12-19 18:31:32.582 6237-6237/? D/InputMethodManager: getNavigationBarColor() -855310
2019-12-19 18:31:32.585 6237-6237/? D/InputMethodManager: prepareNavigationBarInfo() DecorView@35984e7[PhoenixAcquireActivity]
2019-12-19 18:31:32.585 6237-6237/? D/InputMethodManager: getNavigationBarColor() -855310
2019-12-19 18:31:32.585 6237-6237/? V/InputMethodManager: Starting input: tba=com.android.vending ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
2019-12-19 18:31:32.585 6237-6237/? D/InputMethodManager: startInputInner - Id : 0
2019-12-19 18:31:32.585 6237-6237/? I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
2019-12-19 18:31:32.585 3837-3865/? I/ActivityManager: Displayed com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity: +138ms (total +197ms)
2019-12-19 18:31:32.585 3837-6185/? D/InputMethodManagerService: startInputOrWindowGainedFocus : windowGainedFocus 
2019-12-19 18:31:32.585 3837-4376/? D/MdnieScenarioControlService:  packageName : com.android.vending    className : com.google.android.finsky.billing.acquire.PhoenixAcquireActivity
2019-12-19 18:31:32.585 3837-4376/? V/MdnieScenarioControlService: setUIMode from UI function(3)
2019-12-19 18:31:32.585 3837-6185/? D/InputMethodManagerService: windowGainedFocus: destinationUserId (getCallingUid) = 0
2019-12-19 18:31:32.585 3837-6185/? D/InputMethodManagerService: windowGainedFocus: currentUserId=0
2019-12-19 18:31:32.585 3837-6185/? D/InputMethodManagerService: windowGainedFocus: mCurrentFocusedUserId=0
2019-12-19 18:31:32.585 3837-6185/? D/InputMethodManagerService: windowGainedFocus : lock - currentUserId = 0 destinationUserId = 0
2019-12-19 18:31:32.585 3837-6185/? D/InputMethodManagerService: windowGainedFocus : mCurrentFocusedUserId - 0 and mSecureKeypadEnabled - false, userSwitched - false
2019-12-19 18:31:32.585 3837-6185/? V/InputMethodManagerService: windowGainedFocus : reason=WINDOW_FOCUS_GAIN client=android.os.BinderProxy@e25f7fe inputContext=null missingMethods= attribute=android.view.inputmethod.EditorInfo@7f94b0d nm = com.android.vending controlFlags=#104 softInputMode=#110 windowFlags=#81810502
2019-12-19 18:31:32.586 3837-6185/? V/InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false
2019-12-19 18:31:32.586 3837-6185/? D/InputMethodManagerService: isImeSwitcherDisabledPackage : false
2019-12-19 18:31:32.586 3837-6185/? D/InputMethodManagerService: DESKTOP MODE! : 2
2019-12-19 18:31:32.586 3837-6185/? D/InputMethodManagerService: NOT IN KNOX DESKTOP MODE!
2019-12-19 18:31:32.586 6684-6684/? D/InputTransport: Input channel destroyed: fd=54
2019-12-19 18:31:32.586 3837-6185/? D/InputMethodManagerService: updateSystemUiLocked 0
2019-12-19 18:31:32.586 3837-3865/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT  frequency : 1937000  uid : 1000  pid : 3837  tag : AMS_ACT_START@CPU_MIN@44
2019-12-19 18:31:32.586 3837-6185/? D/InputMethodManagerService: checkDisplayOfStartInputAndUpdateKeyboard display Id 0last 0
2019-12-19 18:31:32.586 3837-6185/? D/InputMethodManagerService: setCurrentInputInfo - inputContext : null eidtorInfo : android.view.inputmethod.EditorInfo@7f94b0d missingMethods : 0
2019-12-19 18:31:32.586 3837-6185/? D/InputTransport: Input channel constructed: fd=496
2019-12-19 18:31:32.586 3837-3865/? D/ActivityManagerPerformance: AMP_release() ACT_START
2019-12-19 18:31:32.586 3837-6185/? D/InputTransport: Input channel destroyed: fd=496
2019-12-19 18:31:32.587 6237-6237/? D/InputTransport: Input channel constructed: fd=140
2019-12-19 18:31:32.588 5719-5719/? I/InputMethodWrapper:  call dispatchStartInputWithToken
2019-12-19 18:31:32.588 5719-5719/? I/InputMethodService: dispatchStartInputWithToken
... shortened for brevity

The unfamous 'This version of the application is not configured for billing through Google Play.' is displayed.

What I have checked so far: 1) versionCode and versionName do match the current live/prod version. 2) APKis signed with prod Keystore then 'zip aligned' 3) the uses-permission 'com.android.vending.BILLING' is present 4) product is live (it has been for more than a year now) 5) also tried bumping the version's and publishing to beta, grabbed off beta and still no luck. 6) in the APK the class 'com.android.billingclient.api.BillingClientImpl$1' is on the classpath/bundled.

The checklist above is inspired on the following SO thread: https://stackoverflow.com/questions/11068686/this-version-of-the-application-is-not-configured-for-billing-through-google-pla

What I am missing here? I have spent two days already on it. Any help or pointers would be much appreciated, thanks!

guy-keller commented 4 years ago

Downgraded plugin to version 8.1.1 Installed in another device / different user account.

2019-12-22 13:10:22.736 4769-6972/? D/WifiPermissionsUtil: canAccessScanResults: pkgName = com.sec.android.sdhms, uid = 1000
2019-12-22 13:10:23.599 4769-4919/? D/WifiStateMachine: enter getWifiLinkLayerStats
2019-12-22 13:10:23.600 4769-4919/? I/WifiVendorHal: getWifiLinkLayerStats(l.2989) before calling iface.getLinkLayerStats

    --------- beginning of system
2019-12-22 13:10:23.600 2831-2831/? I/android.hardware.wifi@1.0-service: enter getLinkLayerStats
2019-12-22 13:10:23.600 2831-2831/? I/android.hardware.wifi@1.0-service: enter getLinkLayerStatsInternal
2019-12-22 13:10:23.618 2831-2831/? I/android.hardware.wifi@1.0-service: Successfully getLinkLayerStats.
2019-12-22 13:10:23.619 4769-4919/? I/WifiVendorHal: getWifiLinkLayerStats(l.2989) after calling iface.getLinkLayerStats
2019-12-22 13:10:23.633 4769-4919/? I/WifiStateMachine: checkScoreBasedQuality -  mPreviousScore[0]:70 mPreviousScore[1]:68 mPreviousScore[2]:70 s2Score:69mPrevoiusScoreAverage:69
2019-12-22 13:10:23.749 4769-4890/? D/InputReader: Input event(11): value=1 when=490141.124474
2019-12-22 13:10:23.749 4769-4890/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.25213 ] when=490141.124474
2019-12-22 13:10:23.749 4769-4889/? I/InputDispatcher: Delivering touch to (5047): action: 0x4, displayId: 0, '2c23298', toolType: 1
2019-12-22 13:10:23.749 4769-4889/? I/InputDispatcher: Delivering touch to (5047): action: 0x4, displayId: 0, '1c12d88', toolType: 1
2019-12-22 13:10:23.750 4769-4889/? I/clp-JNI: Add pinfo) 0
2019-12-22 13:10:23.750 4769-4889/? I/InputDispatcher: Delivering touch to (19875): action: 0x0, displayId: 0, '5020394', toolType: 1
2019-12-22 13:10:23.751 19875-19875/? D/ViewRootImpl@f96ace8[MainActivity]: ViewPostIme pointer 0
2019-12-22 13:10:23.797 4769-4890/? D/InputReader: Input event(11): value=0 when=490141.173563
2019-12-22 13:10:23.798 4769-4890/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=490141.173563
2019-12-22 13:10:23.798 4769-4889/? I/clp-JNI: Add pinfo) 5020394 com.wavestracker.app/com.wavestracker.app.MainActivity (server) : AppWindowToken{1ad033f token=Token{23bc35e ActivityRecord{d510499 u0 com.wavestracker.app/.MainActivity t4931}}} : 19875 : 10196 : 1
2019-12-22 13:10:23.798 4769-4889/? I/clp-JNI: Add pinfo) 1
2019-12-22 13:10:23.798 4769-4889/? I/InputDispatcher: Delivering touch to (19875): action: 0x1, displayId: 0, '5020394', toolType: 1
2019-12-22 13:10:23.799 19875-19875/? D/ViewRootImpl@f96ace8[MainActivity]: ViewPostIme pointer 1
2019-12-22 13:10:23.819 19875-19875/? D/InputMethodManager: HSIFW - flag : 0 Pid : 19875
2019-12-22 13:10:23.819 4769-6972/? V/InputMethodManagerService: Client requesting input be hidden, flags : 0
2019-12-22 13:10:23.819 4769-6972/? V/InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false
2019-12-22 13:10:23.828 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'wt_subs_3m_2q_2k18 requested'
2019-12-22 13:10:23.828 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'consumable requested'
2019-12-22 13:10:23.828 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'valid requested'
2019-12-22 13:10:23.828 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'requested'
2019-12-22 13:10:23.830 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'wt_subs_3m_2q_2k18 updated'
2019-12-22 13:10:23.834 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'consumable updated'
2019-12-22 13:10:23.834 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'valid updated'
2019-12-22 13:10:23.835 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'updated'
2019-12-22 13:10:23.842 19875-20010/? D/IabHelper: Starting async operation: launchPurchaseFlow
2019-12-22 13:10:23.842 19875-20010/? D/IabHelper: Constructing buy intent for wt_subs_3m_2q_2k18, item type: inapp
2019-12-22 13:10:23.842 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'wt_subs_3m_2q_2k18 initiated'
2019-12-22 13:10:23.842 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'consumable initiated'
2019-12-22 13:10:23.843 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'valid initiated'
2019-12-22 13:10:23.844 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'initiated'
2019-12-22 13:10:23.844 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'wt_subs_3m_2q_2k18 updated'
2019-12-22 13:10:23.844 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'consumable updated'
2019-12-22 13:10:23.844 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'valid updated'
2019-12-22 13:10:23.844 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'updated'
2019-12-22 13:10:23.845 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 2176 : InAppBilling[js]: buy called!
2019-12-22 13:10:23.845 21014-21383/? I/Finsky: [35628] gcv.d(17): com.wavestracker.app: Account determined from library ownership - [LdYvix_H-wJDMj1oxwWrd43qm-VNzKYWX44rNEI0hh8]
2019-12-22 13:10:23.845 21014-21383/? I/Finsky: [35628] gcv.d(14): com.wavestracker.app: Account from preferred account - [LdYvix_H-wJDMj1oxwWrd43qm-VNzKYWX44rNEI0hh8]
2019-12-22 13:10:23.852 19875-20010/? D/IabHelper: Launching buy intent for wt_subs_3m_2q_2k18. Request code: 10001
2019-12-22 13:10:23.856 4769-6972/? E/Parcel: Class not found when unmarshalling: fyw
    java.lang.ClassNotFoundException: fyw
        at java.lang.Class.classForName(Native Method)
        at java.lang.Class.forName(Class.java:453)
        at android.os.Parcel.readParcelableCreator(Parcel.java:2827)
        at android.os.Parcel.readParcelable(Parcel.java:2781)
        at android.os.Parcel.readValue(Parcel.java:2684)
        at android.os.Parcel.readArrayMapInternal(Parcel.java:3053)
        at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:288)
        at android.os.BaseBundle.unparcel(BaseBundle.java:232)
        at android.os.BaseBundle.getString(BaseBundle.java:1155)
        at android.content.Intent.getStringExtra(Intent.java:8114)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:732)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:670)
        at com.android.server.am.ActivityStarter.startActivityMayWait(ActivityStarter.java:1566)
        at com.android.server.am.ActivityStarter.execute(ActivityStarter.java:612)
        at com.android.server.am.ActivityStartController.startActivityInPackage(ActivityStartController.java:305)
        at com.android.server.am.PendingIntentRecord.sendInner(PendingIntentRecord.java:420)
        at com.android.server.am.ActivityManagerService.startActivityIntentSender(ActivityManagerService.java:6943)
        at android.app.IActivityManager$Stub.onTransact$startActivityIntentSender$(IActivityManager.java:11515)
        at android.app.IActivityManager$Stub.onTransact(IActivityManager.java:1075)
        at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:4167)
        at android.os.Binder.execTransact(Binder.java:739)
     Caused by: java.lang.ClassNotFoundException: fyw
        at java.lang.Class.classForName(Native Method)
        at java.lang.BootClassLoader.findClass(ClassLoader.java:1346)
        at java.lang.BootClassLoader.loadClass(ClassLoader.java:1406)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
        at java.lang.Class.classForName(Native Method) 
        at java.lang.Class.forName(Class.java:453) 
        at android.os.Parcel.readParcelableCreator(Parcel.java:2827) 
        at android.os.Parcel.readParcelable(Parcel.java:2781) 
        at android.os.Parcel.readValue(Parcel.java:2684) 
        at android.os.Parcel.readArrayMapInternal(Parcel.java:3053) 
        at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:288) 
        at android.os.BaseBundle.unparcel(BaseBundle.java:232) 
        at android.os.BaseBundle.getString(BaseBundle.java:1155) 
        at android.content.Intent.getStringExtra(Intent.java:8114) 
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:732) 
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:670) 
        at com.android.server.am.ActivityStarter.startActivityMayWait(ActivityStarter.java:1566) 
        at com.android.server.am.ActivityStarter.execute(ActivityStarter.java:612) 
        at com.android.server.am.ActivityStartController.startActivityInPackage(ActivityStartController.java:305) 
        at com.android.server.am.PendingIntentRecord.sendInner(PendingIntentRecord.java:420) 
        at com.android.server.am.ActivityManagerService.startActivityIntentSender(ActivityManagerService.java:6943) 
        at android.app.IActivityManager$Stub.onTransact$startActivityIntentSender$(IActivityManager.java:11515) 
        at android.app.IActivityManager$Stub.onTransact(IActivityManager.java:1075) 
        at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:4167) 
        at android.os.Binder.execTransact(Binder.java:739) 
     Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
2019-12-22 13:10:23.856 4769-6972/? W/Bundle: Failed to parse Bundle, but defusing quietly
    android.os.BadParcelableException: ClassNotFoundException when unmarshalling: fyw
        at android.os.Parcel.readParcelableCreator(Parcel.java:2855)
        at android.os.Parcel.readParcelable(Parcel.java:2781)
        at android.os.Parcel.readValue(Parcel.java:2684)
        at android.os.Parcel.readArrayMapInternal(Parcel.java:3053)
        at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:288)
        at android.os.BaseBundle.unparcel(BaseBundle.java:232)
        at android.os.BaseBundle.getString(BaseBundle.java:1155)
        at android.content.Intent.getStringExtra(Intent.java:8114)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:732)
        at com.android.server.am.ActivityStarter.startActivity(ActivityStarter.java:670)
        at com.android.server.am.ActivityStarter.startActivityMayWait(ActivityStarter.java:1566)
        at com.android.server.am.ActivityStarter.execute(ActivityStarter.java:612)
        at com.android.server.am.ActivityStartController.startActivityInPackage(ActivityStartController.java:305)
        at com.android.server.am.PendingIntentRecord.sendInner(PendingIntentRecord.java:420)
        at com.android.server.am.ActivityManagerService.startActivityIntentSender(ActivityManagerService.java:6943)
        at android.app.IActivityManager$Stub.onTransact$startActivityIntentSender$(IActivityManager.java:11515)
        at android.app.IActivityManager$Stub.onTransact(IActivityManager.java:1075)
        at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:4167)
        at android.os.Binder.execTransact(Binder.java:739)
2019-12-22 13:10:23.858 4769-6972/? I/ActivityManager: START u0 {act=com.google.android.finsky.phoenix.ACQUIRE typ=null flg=0x0 cmp=ComponentInfo{com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}} from uid 10044
2019-12-22 13:10:23.867 4769-6972/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT  frequency : 1586000  uid : 1000  pid : 4769  pkgName : AMS_APP_SWITCH@CPU_MIN@52
2019-12-22 13:10:23.868 4769-6972/? D/ActivityManagerPerformance: AMP_acquire() APP_SWITCH
2019-12-22 13:10:23.872 4431-4431/? I/SurfaceFlinger: id=19513 createSurf (2960x2960),2 flag=4, AppWindowToken{8cb114f token=Token{18fffae ActivityRecord{2ba4029 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity t4931}}}#0
2019-12-22 13:10:23.879 4769-6972/? D/ActivityManager: Received ACTIVITY intent in key u0 {fd6a0dc act=com.google.android.finsky.phoenix.ACQUIREstartActivity cmp=null res=0} from uid 10196
2019-12-22 13:10:23.880 4769-21475/? D/CLP: Get puid null.
2019-12-22 13:10:23.887 19875-20010/? W/PluginManager: THREAD WARNING: exec() call to InAppBillingPlugin.buy blocked the main thread for 46ms. Plugin should use CordovaInterface.getThreadPool().
2019-12-22 13:10:23.890 4430-30923/? I/display: [PrimaryDisplay] [DYNAMIC_RECOMP] first frame after HWC_2_GLES
2019-12-22 13:10:23.890 4430-30923/? I/display: [PrimaryDisplay] [DYNAMIC_RECOMP] GLES_2_HWC by high FPS(5)
2019-12-22 13:10:23.894 19875-19875/? D/CordovaActivity: Paused the activity.
2019-12-22 13:10:23.895 19875-19875/? W/com.facebook.appevents.AppEventsLoggerImpl: This function is deprecated. deactivate app will be logged automatically
2019-12-22 13:10:23.897 4769-6972/? I/ActivityManager: mTimer start at this point for Notification solution
2019-12-22 13:10:23.897 4769-6972/? I/ActivityManager: mTimer scheduling done
2019-12-22 13:10:23.898 4769-6972/? V/WindowOrientationListener: getProposedRotation :0
2019-12-22 13:10:23.898 4769-6972/? V/WindowManager: rotationForOrientationLw(orient=-1, last=0); user=0  sensorRotation=0 mLidState=-1 mDockMode=0 mHdmiPlugged=false
2019-12-22 13:10:23.899 21014-21014/? W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@dd54087
2019-12-22 13:10:23.902 4769-6972/? D/GamePkgDataHelper: notifyAppCreate(), pkgName: com.android.vending, sendRet: true
2019-12-22 13:10:23.902 4769-4997/? D/GamePkgDataHelper: getGamePkgData(). com.android.vending
2019-12-22 13:10:23.902 4769-4997/? D/GameManagerService: handleMessage(), MSG_APP_CREATE. ignore. pkgName: com.android.vending
2019-12-22 13:10:23.903 4769-6972/? D/InputDispatcher: Focused application set to: 8cb114f
2019-12-22 13:10:23.908 4769-6972/? V/WindowManager: Changing focus from Window{5020394 u0 com.wavestracker.app/com.wavestracker.app.MainActivity} to null Callers=com.android.server.wm.WindowManagerService.setFocusedApp:3148 com.android.server.am.ActivityManagerService.setResumedActivityUncheckLocked:4492 com.android.server.am.ActivityStack.onActivityStateChanged:560 com.android.server.am.TaskRecord.onActivityStateChanged:2200 
2019-12-22 13:10:23.909 4769-6972/? D/InputDispatcher: Focus left window (19875): 5020394 0
2019-12-22 13:10:23.909 4769-4800/? D/WindowManager: reportFocusChangedSerialized, focused=false, inTouchMode=true, win=Window{5020394 u0 com.wavestracker.app/com.wavestracker.app.MainActivity}
2019-12-22 13:10:23.910 4769-6972/? D/GameManagerService: noteResumeComponent(), resumeComponent: com.android.vending
2019-12-22 13:10:23.910 4769-4997/? D/GameManagerService: handleForegroundChange(). pkgName: com.android.vending, clsName: com.google.android.finsky.billing.acquire.PhoenixAcquireActivity,FgActivityName:com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity
2019-12-22 13:10:23.910 4769-6972/? D/GamePkgDataHelper: getSosPolicy(). com.android.vending
2019-12-22 13:10:23.910 4769-4997/? D/GameManagerService:   handleForegroundChange(). set mFgApp: com.android.vending
2019-12-22 13:10:23.911 4769-4997/? D/GameManagerService: notifyResumePause(). pkg: com.android.vending, type: 4, isMinimized: false, isTunableApp: false
2019-12-22 13:10:23.911 4769-4997/? D/GameManagerService:   notifyResumePause(). do nothing. mKillNotiCount: 3
2019-12-22 13:10:23.911 4769-6972/? D/GameManagerService: identifyGamePackage. com.android.vending
2019-12-22 13:10:23.911 4769-6972/? D/GamePkgDataHelper: getGamePkgData(). com.android.vending
2019-12-22 13:10:23.911 4769-6972/? D/MARsPolicyManager: onPackageResumedFG pkgName = com.android.vending, userId = 0
2019-12-22 13:10:23.912 4769-5095/? D/GamePkgDataHelper: getGamePkgDataIncServer(). com.android.vending
2019-12-22 13:10:23.915 2841-15700/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;outDevice
2019-12-22 13:10:23.915 2841-15700/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 0
2019-12-22 13:10:23.915 2841-15700/? V/APM_AudioPolicyManager: ### curdevice : 2
2019-12-22 13:10:23.915 4769-4769/? D/Telecom:SamsungPrebindingServiceImpl: onTopActivityChanged : ComponentInfo{com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}
2019-12-22 13:10:23.917 4769-5095/? D/GamePkgDataHelper: getSosPolicy(). com.android.vending
2019-12-22 13:10:23.918 19875-19875/? D/ViewRootImpl@f96ace8[MainActivity]: MSG_WINDOW_FOCUS_CHANGED 0 1
2019-12-22 13:10:23.919 19875-19875/? D/InputMethodManager: prepareNavigationBarInfo() DecorView@51df92d[MainActivity]
2019-12-22 13:10:23.919 19875-19875/? D/InputMethodManager: getNavigationBarColor() -855310
2019-12-22 13:10:23.920 4769-4789/? D/CodecSolution: isMaxAspectPackageEx: com.android.vending : true(2)
2019-12-22 13:10:23.920 6060-6175/? E/SDHMS:SDHMS_UTIL_IO: e = /sys/class/input_booster/touchkey/time (Permission denied)
2019-12-22 13:10:23.921 6060-6175/? I/chatty: uid=1000(system) Binder:6060_3 identical 1 line
2019-12-22 13:10:23.922 6060-6175/? E/SDHMS:SDHMS_UTIL_IO: e = /sys/class/input_booster/touchkey/time (Permission denied)
2019-12-22 13:10:23.926 4769-5095/? D/GameManagerService: identifyGamePackage. com.android.vending
2019-12-22 13:10:23.927 4769-5095/? D/GamePkgDataHelper: getGamePkgData(). com.android.vending
2019-12-22 13:10:23.944 21014-21014/? I/DecorView: mWindow.mActivityCurrentConfig is null.
2019-12-22 13:10:23.945 21014-21014/? I/DecorView: createDecorCaptionView >> DecorView@e7c6e9b[], isFloating: false, isApplication: true, hasWindowDecorCaption: false, hasWindowControllerCallback: true
2019-12-22 13:10:23.977 21014-21014/? D/ScrollView: initGoToTop
2019-12-22 13:10:23.979 21014-21014/? D/ScrollView: initGoToTop
2019-12-22 13:10:23.982 4769-4780/? D/AccountManagerService: getUserAccounts0
2019-12-22 13:10:23.993 4769-4780/? D/ConnectivityService: filterNetworkStateForUid() uid: 10044, pid: 21014
2019-12-22 13:10:23.993 4769-4780/? D/ConnectivityService: filterNetworkStateForUid() uid: 10044, pid: 21014, networkInfo: [type: WIFI[], state: CONNECTED/CONNECTED, reason: (unspecified), extra: (none), failover: false, available: true, roaming: false]
2019-12-22 13:10:23.993 4769-4780/? D/WifiPermissionsUtil: canAccessScanResults: pkgName = com.android.vending, uid = 10044
2019-12-22 13:10:23.994 4769-4780/? D/WifiPermissionsUtil: Denied: canCallingUidAccessLocation = false, canAppPackageUseLocation = false
2019-12-22 13:10:23.996 4769-4780/? D/AccountManagerService: getUserAccounts0
2019-12-22 13:10:24.002 4769-4780/? D/SdpManagerService: Not an enterprise user : 0
2019-12-22 13:10:24.020 4769-4780/? D/InputTransport: Input channel constructed: fd=340
2019-12-22 13:10:24.020 4769-4780/? D/InputTransport: Input channel constructed: fd=357
2019-12-22 13:10:24.020 4769-5095/? D/AccountManagerService: getUserAccounts0
2019-12-22 13:10:24.021 4431-4431/? I/SurfaceFlinger: id=19514 createSurf (2960x2960),2 flag=4, 351736b com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity#0
2019-12-22 13:10:24.028 4769-4780/? D/InputTransport: Input channel destroyed: fd=357
2019-12-22 13:10:24.028 21014-21014/? D/InputTransport: Input channel constructed: fd=120
2019-12-22 13:10:24.028 21014-21014/? D/ViewRootImpl@8a24c74[PhoenixAcquireActivity]: setView = DecorView@e7c6e9b[PhoenixAcquireActivity] TM=true MM=false
2019-12-22 13:10:24.044 4769-5310/? V/WindowManager: Relayout Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}: viewVisibility=0 req=720x1480 {(0,0)(fillxfill) sim={adjust=resize forwardNavigation} ty=BASE_APPLICATION fmt=TRANSPARENT
      fl=DIM_BEHIND LAYOUT_IN_SCREEN FULLSCREEN LAYOUT_INSET_DECOR SPLIT_TOUCH HARDWARE_ACCELERATED DRAWS_SYSTEM_BAR_BACKGROUNDS
      pfl=FORCE_DRAW_STATUS_BAR_BACKGROUND  remains{ 0x1000000 }
      vsysui=LAYOUT_STABLE LAYOUT_FULLSCREEN LIGHT_NAVIGATION_BAR naviIconColor=0}
2019-12-22 13:10:24.047 4431-4431/? I/SurfaceFlinger: id=19515 createSurf (720x1480),1 flag=4, com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity[21014]#0
2019-12-22 13:10:24.049 4769-5310/? D/WindowManager: makeSurface duration=1 name=com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity[21014]
2019-12-22 13:10:24.049 4769-5310/? V/WindowManager: Changing focus from null to Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity} Callers=com.android.server.wm.WindowManagerService.relayoutWindow:2538 com.android.server.wm.Session.relayoutForTranslate:302 android.view.IWindowSession$Stub.onTransact:518 com.android.server.wm.Session.onTransact:186 
2019-12-22 13:10:24.049 4769-5310/? D/StatusBarManagerService: notifyRequestedSystemKey recent=false home=false
2019-12-22 13:10:24.050 4769-4789/? D/WindowManager: setSystemUiVisibility: vis= 0x8518, fullscreenVis= 0x2000, dockedVis= 0x0, win=Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}
2019-12-22 13:10:24.051 4769-5310/? D/InputDispatcher: Focus entered window (21014): 351736b 0
2019-12-22 13:10:24.051 4769-5095/? D/SamsungPhoneWindowManager: adjustSystemUiVisibilityLw: vis=0x8518
2019-12-22 13:10:24.051 4769-5095/? D/InputManager-JNI: setSystemUiVisibility dexmode: false changed: true displayid: 0 visibility: 0x8518 DD: 0x8518 OD: 0x0
2019-12-22 13:10:24.051 5047-5047/? D/LightBarController: onNavigationVisibilityChanged : vis = 8518, nbModeChanged = false navigationBarMode = 4
2019-12-22 13:10:24.052 4769-4800/? D/WindowManager: reportFocusChangedSerialized, focused=true, inTouchMode=true, win=Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}
2019-12-22 13:10:24.052 4769-5276/? D/MdnieScenarioControlService:  packageName : com.android.vending    className : com.google.android.finsky.billing.acquire.PhoenixAcquireActivity
2019-12-22 13:10:24.052 4769-5276/? V/MdnieScenarioControlService: setUIMode from UI function(3)
2019-12-22 13:10:24.052 21014-21014/? D/ViewRootImpl@8a24c74[PhoenixAcquireActivity]: Relayout returned: old=[0,0][720,1480] new=[0,0][720,1480] result=0x7 surface={true 3567880192} changed=true
2019-12-22 13:10:24.061 21014-21309/? D/mali_winsys: EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, EGLBoolean) returns 0x3000,  [720x1480]-format:1
2019-12-22 13:10:24.062 21014-21309/? D/OpenGLRenderer: eglCreateWindowSurface = 0xd1f1b1a0, 0xd4a98808
2019-12-22 13:10:24.063 21014-21014/? D/ScrollView:  onsize change changed 
2019-12-22 13:10:24.076 4769-5095/? D/WindowManager: finishDrawingWindow: Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity} mDrawState=DRAW_PENDING
2019-12-22 13:10:24.063 21014-21014/? D/ScrollView:  onsize change changed 
2019-12-22 13:10:24.076 21014-21014/? D/ViewRootImpl@8a24c74[PhoenixAcquireActivity]: MSG_WINDOW_FOCUS_CHANGED 1 1
2019-12-22 13:10:24.078 4769-4846/? I/WindowManager: commitFinishDrawingLocked: mDrawState=READY_TO_SHOW Surface(name=com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity[21014])/@0x591db47
2019-12-22 13:10:24.078 4769-4846/? V/WindowManager: Resize reasons for w=Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}:  contentInsetsChanged=false [0,0][0,96] visibleInsetsChanged=false [0,48][0,96] stableInsetsChanged=false [0,48][0,96] outsetsChanged=false [0,0][0,0] surfaceResized=false configChanged=false dragResizingChanged=false reportOrientationChanged=false displayCutoutChanged=false nextForceRelayoutToClient=false
2019-12-22 13:10:24.081 4769-4769/? D/FreeformController: Fail to invalid task id :  -1
2019-12-22 13:10:24.081 4769-4846/? V/WindowManager: performShowLocked: mDrawState=HAS_DRAWN in Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}
2019-12-22 13:10:24.081 4769-4769/? D/FreeformController: Fail to invalid task id :  -1
2019-12-22 13:10:24.081 4769-4769/? D/FreeformController: Fail to invalid task id :  -1
2019-12-22 13:10:24.086 4769-4846/? I/WindowManager: Cancelling animation restarting=true, leash=null, surface=Surface(name=1c12d88 StatusBar)/@0xc133f81, parent=Surface(name=WindowToken{9c2752b android.os.BinderProxy@dd1597a})/@0x518826
2019-12-22 13:10:24.086 4769-4846/? I/WindowManager: Reparenting to leash, surface=Surface(name=1c12d88 StatusBar)/@0xc133f81
2019-12-22 13:10:24.087 4431-4431/? I/SurfaceFlinger: id=19516 createSurf (2960x2960),2 flag=4, Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash#0
2019-12-22 13:10:24.088 4769-4846/? D/WindowManager: makeSurface duration=2 leash=Surface(name=Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash)/@0xfd42f74
2019-12-22 13:10:24.088 4769-4846/? D/SurfaceControl: reparent is called, sc=Surface(name=1c12d88 StatusBar)/@0xc133f81, newParentHandle=android.os.BinderProxy@b85bc9d, transaction=android.view.SurfaceControl$Transaction@9889c53
2019-12-22 13:10:24.090 4769-4789/? D/WindowManager: setSystemUiVisibility: vis= 0x8518, fullscreenVis= 0x0, dockedVis= 0x0, win=Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}
2019-12-22 13:10:24.092 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.093 5047-5047/? D/MultiSIMPreferredSlotBar: onQsClosed
2019-12-22 13:10:24.093 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.094 4431-4431/? I/SurfaceFlinger: id=19517 createSurf (2960x2960),-1 flag=20004, Dim Layer for - Task=4931#0
2019-12-22 13:10:24.095 5047-5047/? D/PanelView: setVisibility 0
2019-12-22 13:10:24.095 5047-5047/? D/PanelView: setAlpha 1.0
2019-12-22 13:10:24.095 4769-4846/? I/WindowManager: Cancelling animation restarting=true, leash=null, surface=Surface(name=Dim Layer for - Task=4931)/@0x5d75512, parent=Surface(name=Task=4931)/@0x9cbac28
2019-12-22 13:10:24.096 4769-4846/? I/WindowManager: Reparenting to leash, surface=Surface(name=Dim Layer for - Task=4931)/@0x5d75512
2019-12-22 13:10:24.096 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.096 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.096 5047-5047/? I/PanelView: n.B.P.E.C:false, false, false, false, false, false
2019-12-22 13:10:24.096 4431-4431/? I/SurfaceFlinger: id=19518 createSurf (2960x2960),2 flag=4, Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash#0
2019-12-22 13:10:24.097 5047-5047/? D/PanelView: setVisibility 4
2019-12-22 13:10:24.098 4769-4846/? D/WindowManager: makeSurface duration=3 leash=Surface(name=Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash)/@0x686e4e3
2019-12-22 13:10:24.098 4769-4846/? D/SurfaceControl: reparent is called, sc=Surface(name=Dim Layer for - Task=4931)/@0x5d75512, newParentHandle=android.os.BinderProxy@bbecee0, transaction=android.view.SurfaceControl$Transaction@beff3e9
2019-12-22 13:10:24.099 5047-5047/? D/LightBarController: onNavigationVisibilityChanged : vis = 8518, nbModeChanged = false navigationBarMode = 4
2019-12-22 13:10:24.099 4431-4440/? D/Layer: [1c12d88 StatusBar#0]::reparent oldParent:[WindowToken{9c2752b android.os.BinderProxy@dd1597a}#0], newParent:[Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash#0]
2019-12-22 13:10:24.103 4431-4441/? D/Layer: [Dim Layer for - Task=4931#0]::reparent oldParent:[Task=4931#0], newParent:[Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash#0]
2019-12-22 13:10:24.104 21014-21014/? D/InputMethodManager: prepareNavigationBarInfo() DecorView@e7c6e9b[PhoenixAcquireActivity]
2019-12-22 13:10:24.104 21014-21014/? D/InputMethodManager: getNavigationBarColor() -855310
2019-12-22 13:10:24.104 4769-4800/? I/ActivityManager: Displayed com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity: +184ms
2019-12-22 13:10:24.105 21014-21014/? D/InputMethodManager: prepareNavigationBarInfo() DecorView@e7c6e9b[PhoenixAcquireActivity]
2019-12-22 13:10:24.105 21014-21014/? D/InputMethodManager: getNavigationBarColor() -855310
2019-12-22 13:10:24.105 21014-21014/? V/InputMethodManager: Starting input: tba=com.android.vending ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
2019-12-22 13:10:24.105 21014-21014/? D/InputMethodManager: startInputInner - Id : 0
2019-12-22 13:10:24.106 21014-21014/? I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
2019-12-22 13:10:24.107 4769-4780/? D/InputMethodManagerService: startInputOrWindowGainedFocus : windowGainedFocus 
2019-12-22 13:10:24.107 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.107 4769-4780/? D/InputMethodManagerService: windowGainedFocus: destinationUserId (getCallingUid) = 0
2019-12-22 13:10:24.107 4769-4780/? D/InputMethodManagerService: windowGainedFocus: currentUserId=0
2019-12-22 13:10:24.107 4769-4780/? D/InputMethodManagerService: windowGainedFocus: mCurrentFocusedUserId=0
2019-12-22 13:10:24.107 4769-4780/? D/InputMethodManagerService: windowGainedFocus : lock - currentUserId = 0 destinationUserId = 0
2019-12-22 13:10:24.107 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.107 4769-4780/? D/InputMethodManagerService: windowGainedFocus : mCurrentFocusedUserId - 0 and mSecureKeypadEnabled - false, userSwitched - false
2019-12-22 13:10:24.108 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.108 4769-4800/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT  frequency : 1482000  uid : 1000  pid : 4769  pkgName : AMS_RESUME_TAIL@CPU_MIN@22
2019-12-22 13:10:24.108 4769-4800/? D/ActivityManagerPerformance: AMP_acquire() TAIL
2019-12-22 13:10:24.108 4769-4780/? V/InputMethodManagerService: windowGainedFocus : reason=WINDOW_FOCUS_GAIN client=android.os.BinderProxy@2d9f9f3 inputContext=null missingMethods= attribute=android.view.inputmethod.EditorInfo@4868599 nm = com.android.vending controlFlags=#104 softInputMode=#110 windowFlags=#81810502
2019-12-22 13:10:24.108 4769-4780/? V/InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false
2019-12-22 13:10:24.108 4769-4800/? D/CustomFrequencyManagerService: FrequencyrequestList.getNextMaxCPUCoreRequest, index: 2
2019-12-22 13:10:24.109 4769-4800/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT  frequency : 1586000  uid : 1000  pid : 4769  tag : AMS_APP_SWITCH@CPU_MIN@52
2019-12-22 13:10:24.109 4769-4800/? D/ActivityManagerPerformance: AMP_release() APP_SWITCH
2019-12-22 13:10:24.112 4431-4431/? I/SurfaceFlinger: Display 0 HWC layers:
        type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name 
    ------------+--------------+------+-----------+----------------------------+---------------------+------
         Device | 0xf2753bc0 | 0002 | RGBA_8888 |   0.0    0.0  720.0 1480.0 |    0    0  720 1480 | com.wavestracker.app/com.wavestracker.app.MainActivity[19875]#0
         Client | 0xf23213c0 | 0000 | RGBA_8888 |   0.0    0.0  720.0 1480.0 |    0    0  720 1480 | com.android.vending/com.google.andro[...]uire.PhoenixAcquireActivity[21014]#0
         Client | 0xf2321000 | 0000 | RGBA_8888 |   0.0    0.0  720.0   48.0 |    0    0  720   48 | StatusBar[5047]#0
         Device | 0xf2321540 | 0000 | RGBA_8888 |   0.0    0.0  720.0   96.0 |    0 1384  720 1480 | NavigationBar[5047]#0
2019-12-22 13:10:24.114 4769-4780/? D/InputMethodManagerService: isImeSwitcherDisabledPackage : false
2019-12-22 13:10:24.114 19875-19875/? D/InputTransport: Input channel destroyed: fd=149
2019-12-22 13:10:24.114 4769-4780/? D/InputMethodManagerService: mDesktopModeManager null!
2019-12-22 13:10:24.114 4769-4780/? D/InputMethodManagerService: updateSystemUiLocked 0
2019-12-22 13:10:24.114 4769-4780/? D/InputMethodManagerService: updateSystemUiLocked(), setImeWindowStatusToType, vis : 0 backDisposition : 0
2019-12-22 13:10:24.115 4769-4780/? D/InputMethodManagerService: checkDisplayOfStartInputAndUpdateKeyboard display Id 0last 0
2019-12-22 13:10:24.115 4769-4780/? D/InputMethodManagerService: setCurrentInputInfo - inputContext : null eidtorInfo : android.view.inputmethod.EditorInfo@4868599 missingMethods : 0
2019-12-22 13:10:24.115 4769-4780/? D/InputTransport: Input channel constructed: fd=407
2019-12-22 13:10:24.115 4769-4780/? D/InputTransport: Input channel destroyed: fd=407
2019-12-22 13:10:24.116 21014-21014/? D/InputTransport: Input channel constructed: fd=122
2019-12-22 13:10:24.116 6482-6482/? I/InputMethodWrapper:  call dispatchStartInputWithToken
2019-12-22 13:10:24.116 6482-6482/? I/InputMethodService: dispatchStartInputWithToken
2019-12-22 13:10:24.117 6482-6482/? I/SKBD_Performance: [IIManager] [PF_CL][onFinishInput] 657616
2019-12-22 13:10:24.117 6482-6482/? D/InputMethodService: checkDisplayOfStartInputAndUpdateKeyboard display Id 0last 0
2019-12-22 13:10:24.117 6482-6482/? I/SKBD: SamsungKeypad [IMI] onStartInput - caller pid : 21014, caller uid : 10044
2019-12-22 13:10:24.120 21014-21014/? D/ViewRootImpl@8a24c74[PhoenixAcquireActivity]: MSG_RESIZED: frame=[0,0][720,1480] ci=[0,0][0,96] vi=[0,48][0,96] or=1
2019-12-22 13:10:24.124 5047-5047/? D/NavigationBar: setImeWindowStatus() imeShown = false, backDisposition = 0, showImeSwitcher = false
2019-12-22 13:10:24.143 4431-4431/? I/SurfaceFlinger: Display 0 HWC layers:
        type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name 
    ------------+--------------+------+-----------+----------------------------+---------------------+------
         Device | 0xf2752900 | 0002 | RGBA_8888 |   0.0    0.0  720.0 1480.0 |    0    0  720 1480 | com.wavestracker.app/com.wavestracker.app.MainActivity[19875]#0
         Client |              | 0000 |  Unknown  |   0.0    0.0   -1.0   -1.0 |    0    0  720 1480 | Dim Layer for - Task=4931#0
         Client | 0xf23210c0 | 0000 | RGBA_8888 |   0.0    0.0  720.0 1480.0 |    0    0  720 1480 | com.android.vending/com.google.andro[...]uire.PhoenixAcquireActivity[21014]#0
         Client | 0xf2321300 | 0000 | RGBA_8888 |   0.0    0.0  720.0   48.0 |    0    0  720   48 | StatusBar[5047]#0
         Device | 0xf2321540 | 0000 | RGBA_8888 |   0.0    0.0  720.0   96.0 |    0 1384  720 1480 | NavigationBar[5047]#0
2019-12-22 13:10:24.169 6060-6197/? D/SDHMS:s: SIOP:: AP:323(341,40) BAT:313(313,0) CHG:0(0,0) USB:0(0,0) ATC:0(0,-999) 
2019-12-22 13:10:24.302 4769-4918/? D/WifiTrafficPoller: TrafficStats TxPkts=2995187 RxPkts=6738435 TxBytes=389362277 RxBytes=8128896733 , Foreground uid=10044 pkgName=com.android.vending TxPackets=301519 RxPackets=446313 TxBytes=20723937 RxBytes=620492585
2019-12-22 13:10:24.303 5047-5047/? D/SecStatusBarWifiView: updateState: WifiIconState(resId=2131232671, visible=true, activityId=2131232700)
2019-12-22 13:10:24.306 4769-4846/? I/WindowManager: reset, Reparenting to original parent, shouldDeferScheduleAnimation=false, destroyLeash=true, surface=Surface(name=Dim Layer for - Task=4931)/@0x5d75512, parent=Surface(name=Task=4931)/@0x9cbac28, parentNativeHandle=android.os.BinderProxy@ada0d5b, caller=com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$0:97 com.android.server.wm.-$$Lambda$SurfaceAnimator$SIBia0mND666K8lMCPsoid8pUTI.run:4 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$1:104 com.android.server.wm.-$$Lambda$SurfaceAnimator$vdRZk66hQVbQCvVXEaQCT1kVmFc.onAnimationFinished:4 com.android.server.wm.LocalAnimationAdapter.lambda$startAnimation$0:74 
2019-12-22 13:10:24.306 4769-4846/? D/SurfaceControl: reparent is called, sc=Surface(name=Dim Layer for - Task=4931)/@0x5d75512, newParentHandle=android.os.BinderProxy@ada0d5b, transaction=android.view.SurfaceControl$Transaction@beff3e9
2019-12-22 13:10:24.306 4769-4846/? D/SurfaceControl: destroy(transaction), animation-leash is destroyed, sc=Surface(name=Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash)/@0x686e4e3, transaction=android.view.SurfaceControl$Transaction@beff3e9, caller=com.android.server.wm.SurfaceAnimator.reset:338 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$0:97 com.android.server.wm.-$$Lambda$SurfaceAnimator$SIBia0mND666K8lMCPsoid8pUTI.run:4 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$1:104 com.android.server.wm.-$$Lambda$SurfaceAnimator$vdRZk66hQVbQCvVXEaQCT1kVmFc.onAnimationFinished:4 com.android.server.wm.LocalAnimationAdapter.lambda$startAnimation$0:74 com.android.server.wm.-$$Lambda$LocalAnimationAdapter$X--EomqUvw4qy89IeeTFTH7aCMo.run:4 
2019-12-22 13:10:24.323 4431-4440/? D/Layer: [Dim Layer for - Task=4931#0]::reparent oldParent:[Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash#0], newParent:[Task=4931#0]
2019-12-22 13:10:24.323 4431-4440/? I/SurfaceFlinger: id=19518 Removed Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash#0 (2/52)
2019-12-22 13:10:24.338 4431-4431/? I/Layer: id=19518 onRemoved Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash#0 
2019-12-22 13:10:24.456 4769-4846/? I/WindowManager: reset, Reparenting to original parent, shouldDeferScheduleAnimation=false, destroyLeash=true, surface=Surface(name=1c12d88 StatusBar)/@0xc133f81, parent=Surface(name=WindowToken{9c2752b android.os.BinderProxy@dd1597a})/@0x518826, parentNativeHandle=android.os.BinderProxy@cea4ed1, caller=com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$0:97 com.android.server.wm.-$$Lambda$SurfaceAnimator$SIBia0mND666K8lMCPsoid8pUTI.run:4 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$1:104 com.android.server.wm.-$$Lambda$SurfaceAnimator$vdRZk66hQVbQCvVXEaQCT1kVmFc.onAnimationFinished:4 com.android.server.wm.LocalAnimationAdapter.lambda$startAnimation$0:74 
2019-12-22 13:10:24.456 4769-4846/? D/SurfaceControl: reparent is called, sc=Surface(name=1c12d88 StatusBar)/@0xc133f81, newParentHandle=android.os.BinderProxy@cea4ed1, transaction=android.view.SurfaceControl$Transaction@9889c53
2019-12-22 13:10:24.456 4769-4846/? D/SurfaceControl: destroy(transaction), animation-leash is destroyed, sc=Surface(name=Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash)/@0xfd42f74, transaction=android.view.SurfaceControl$Transaction@9889c53, caller=com.android.server.wm.SurfaceAnimator.reset:338 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$0:97 com.android.server.wm.-$$Lambda$SurfaceAnimator$SIBia0mND666K8lMCPsoid8pUTI.run:4 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$1:104 com.android.server.wm.-$$Lambda$SurfaceAnimator$vdRZk66hQVbQCvVXEaQCT1kVmFc.onAnimationFinished:4 com.android.server.wm.LocalAnimationAdapter.lambda$startAnimation$0:74 com.android.server.wm.-$$Lambda$LocalAnimationAdapter$X--EomqUvw4qy89IeeTFTH7aCMo.run:4 
2019-12-22 13:10:24.472 4769-4846/? D/WindowManager: prepareSurfaces, request to clear saved leash, surface=Surface(name=1c12d88 StatusBar)/@0xc133f81
2019-12-22 13:10:24.473 4431-4440/? D/Layer: [1c12d88 StatusBar#0]::reparent oldParent:[Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash#0], newParent:[WindowToken{9c2752b android.os.BinderProxy@dd1597a}#0]
2019-12-22 13:10:24.473 4431-4440/? I/SurfaceFlinger: id=19516 Removed Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash#0 (1/51)
2019-12-22 13:10:24.474 4769-4846/? D/WindowManager: clearSavedLeashOnCommit, savedLeash=Surface(name=Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash)/@0xfd42f74, caller=com.android.server.wm.WindowContainer.clearSavedLeashOnCommit:1156 com.android.server.wm.WindowContainer.clearSavedLeashOnCommit:1160 com.android.server.wm.WindowContainer.clearSavedLeashOnCommit:1160 com.android.server.wm.WindowContainer.clearSavedLeashOnCommit:1160 com.android.server.wm.WindowAnimator.animate:253 com.android.server.wm.WindowAnimator.lambda$new$1:112 
2019-12-22 13:10:24.475 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.476 5047-5047/? D/MultiSIMPreferredSlotBar: onQsClosed
2019-12-22 13:10:24.476 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.476 4769-4846/? V/WindowManager: Resize reasons for w=Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}:  contentInsetsChanged=false [0,0][0,96] visibleInsetsChanged=true [0,0][0,96] stableInsetsChanged=false [0,48][0,96] outsetsChanged=false [0,0][0,0] surfaceResized=false configChanged=false dragResizingChanged=false reportOrientationChanged=false displayCutoutChanged=false nextForceRelayoutToClient=false
2019-12-22 13:10:24.477 5047-5047/? D/PanelView: setVisibility 0
2019-12-22 13:10:24.477 5047-5047/? D/PanelView: setAlpha 1.0
2019-12-22 13:10:24.477 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.477 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.478 5047-5047/? I/PanelView: n.B.P.E.C:false, false, false, false, false, false
2019-12-22 13:10:24.478 4431-4431/? I/SurfaceFlinger: Display 0 HWC layers:
        type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name 
    ------------+--------------+------+-----------+----------------------------+---------------------+------
         Device | 0xf2752900 | 0002 | RGBA_8888 |   0.0    0.0  720.0 1480.0 |    0    0  720 1480 | com.wavestracker.app/com.wavestracker.app.MainActivity[19875]#0
         Client |              | 0000 |  Unknown  |   0.0    0.0   -1.0   -1.0 |    0    0  720 1480 | Dim Layer for - Task=4931#0
         Client | 0xf2321900 | 0000 | RGBA_8888 |   0.0    0.0  720.0 1480.0 |    0    0  720 1480 | com.android.vending/com.google.andro[...]uire.PhoenixAcquireActivity[21014]#0
         Device | 0xf2321540 | 0000 | RGBA_8888 |   0.0    0.0  720.0   96.0 |    0 1384  720 1480 | NavigationBar[5047]#0
2019-12-22 13:10:24.479 5047-5047/? D/PanelView: setVisibility 4
2019-12-22 13:10:24.479 21014-21014/? D/ViewRootImpl@8a24c74[PhoenixAcquireActivity]: MSG_RESIZED: frame=[0,0][720,1480] ci=[0,0][0,96] vi=[0,0][0,96] or=1
2019-12-22 13:10:24.489 4431-4431/? I/Layer: id=19516 onRemoved Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash#0 
2019-12-22 13:10:24.491 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:24.715 4769-4769/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT  frequency : 1482000  uid : 1000  pid : 4769  tag : AMS_RESUME_TAIL@CPU_MIN@22
2019-12-22 13:10:24.491 5047-5047/? I/chatty: uid=10008(com.sec.android.easyonehand) com.android.systemui identical 1 line
2019-12-22 13:10:24.491 5047-5047/? I/StackScroller: ADJUST STACK.TRANSLATION
2019-12-22 13:10:25.218 4769-4853/? D/SensorService: [SO] 2.528 8.748 3.922
2019-12-22 13:10:25.308 5047-5047/? D/SecStatusBarWifiView: updateState: WifiIconState(resId=2131232671, visible=true, activityId=2131232678)
2019-12-22 13:10:25.578 21014-21481/? D/Volley: [35633] fms.b: Could not delete cache entry for key=[RGJ3frXV1RP-xxdL-DpWLSWW6wlNsJzSNG1eAkti6sM], filename=-3064180201651243039
2019-12-22 13:10:25.609 21014-21014/? D/ScrollView:  onsize change changed 
2019-12-22 13:10:25.917 4769-4769/? D/Telecom:SamsungPrebindingServiceImpl: handleMessage 0
2019-12-22 13:10:25.917 4769-4769/? I/Telecom:SamsungPrebindingServiceImpl: isSktTPhoneMode supportTPhone: false
2019-12-22 13:10:25.917 4769-4769/? I/Telecom:SamsungPrebindingServiceImpl: needToKeepBinding - false - match not found
2019-12-22 13:10:26.310 5047-5047/? D/SecStatusBarWifiView: updateState: WifiIconState(resId=2131232671, visible=true, activityId=2131232679)
2019-12-22 13:10:26.325 4430-18392/? I/display: [PrimaryDisplay] [DYNAMIC_RECOMP] HWC_2_GLES by low FPS(0)
2019-12-22 13:10:26.489 4769-4890/? D/InputReader: Input event(11): value=1 when=490143.864627
2019-12-22 13:10:26.489 4769-4890/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.25214 ] when=490143.864627
2019-12-22 13:10:26.490 4769-4889/? I/InputDispatcher: Delivering touch to (5047): action: 0x4, displayId: 0, '2c23298', toolType: 1
2019-12-22 13:10:26.490 4769-4889/? I/clp-JNI: Add pinfo) 0
2019-12-22 13:10:26.490 4769-4889/? I/InputDispatcher: Delivering touch to (21014): action: 0x0, displayId: 0, '351736b', toolType: 1
2019-12-22 13:10:26.491 21014-21014/? D/ViewRootImpl@8a24c74[PhoenixAcquireActivity]: ViewPostIme pointer 0
2019-12-22 13:10:26.573 4769-4890/? D/InputReader: Input event(11): value=0 when=490143.949107
2019-12-22 13:10:26.573 4769-4890/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=490143.949107
2019-12-22 13:10:26.573 4769-4889/? I/clp-JNI: Add pinfo) 351736b com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity (server) : AppWindowToken{8cb114f token=Token{18fffae ActivityRecord{2ba4029 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity t4931}}} : 21014 : 10044 : 1
2019-12-22 13:10:26.573 4769-4889/? I/clp-JNI: Add pinfo) 1
2019-12-22 13:10:26.573 4769-4889/? I/InputDispatcher: Delivering touch to (21014): action: 0x1, displayId: 0, '351736b', toolType: 1
2019-12-22 13:10:26.574 21014-21014/? D/ViewRootImpl@8a24c74[PhoenixAcquireActivity]: ViewPostIme pointer 1
2019-12-22 13:10:26.609 4430-30923/? I/display: [PrimaryDisplay] [DYNAMIC_RECOMP] first frame after HWC_2_GLES
2019-12-22 13:10:26.609 4430-30923/? I/display: [PrimaryDisplay] [DYNAMIC_RECOMP] GLES_2_HWC by high FPS(5)
2019-12-22 13:10:26.634 4769-4919/? D/WifiStateMachine: enter getWifiLinkLayerStats
2019-12-22 13:10:26.634 4769-4919/? I/WifiVendorHal: getWifiLinkLayerStats(l.2989) before calling iface.getLinkLayerStats
2019-12-22 13:10:26.634 2831-2831/? I/android.hardware.wifi@1.0-service: enter getLinkLayerStats
2019-12-22 13:10:26.635 2831-2831/? I/android.hardware.wifi@1.0-service: enter getLinkLayerStatsInternal
2019-12-22 13:10:26.649 2831-2831/? I/android.hardware.wifi@1.0-service: Successfully getLinkLayerStats.
2019-12-22 13:10:26.649 4769-4919/? I/WifiVendorHal: getWifiLinkLayerStats(l.2989) after calling iface.getLinkLayerStats
2019-12-22 13:10:26.658 4769-4919/? I/WifiStateMachine: checkScoreBasedQuality -  mPreviousScore[0]:68 mPreviousScore[1]:70 mPreviousScore[2]:69 s2Score:69mPrevoiusScoreAverage:69
2019-12-22 13:10:26.814 4769-4769/? D/Telecom:SamsungPrebindingServiceImpl: onTopActivityChanged : ComponentInfo{com.wavestracker.app/com.wavestracker.app.MainActivity}
2019-12-22 13:10:26.836 4769-5310/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT  frequency : 1352000  uid : 1000  pid : 4769  pkgName : AMS_ACT_RESUME@CPU_MIN@35
2019-12-22 13:10:26.838 4769-5310/? D/ActivityManagerPerformance: AMP_acquire() ACT_RESUME
2019-12-22 13:10:26.838 4769-5310/? D/InputDispatcher: Focused application set to: 1ad033f
2019-12-22 13:10:26.840 4769-5310/? V/WindowManager: Changing focus from Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity} to Window{5020394 u0 com.wavestracker.app/com.wavestracker.app.MainActivity} Callers=com.android.server.wm.WindowManagerService.setFocusedApp:3148 com.android.server.am.ActivityManagerService.setResumedActivityUncheckLocked:4492 com.android.server.am.ActivityStack.onActivityStateChanged:560 com.android.server.am.TaskRecord.onActivityStateChanged:2200 
2019-12-22 13:10:26.840 4769-5310/? D/StatusBarManagerService: notifyRequestedSystemKey recent=false home=false
2019-12-22 13:10:26.840 4769-4789/? D/WindowManager: setSystemUiVisibility: vis= 0xa018, fullscreenVis= 0x0, dockedVis= 0x0, win=Window{5020394 u0 com.wavestracker.app/com.wavestracker.app.MainActivity}
2019-12-22 13:10:26.841 4769-5310/? D/InputDispatcher: Focus left window (21014): 351736b 0
2019-12-22 13:10:26.841 4769-5310/? D/InputDispatcher: Focus entered window (19875): 5020394 0
2019-12-22 13:10:26.842 5047-5047/? D/LightBarController: onNavigationVisibilityChanged : vis = a018, nbModeChanged = false navigationBarMode = 4
2019-12-22 13:10:26.846 4769-5310/? V/WindowOrientationListener: getProposedRotation :0
2019-12-22 13:10:26.846 4769-5310/? V/WindowManager: rotationForOrientationLw(orient=-1, last=0); user=0  sensorRotation=0 mLidState=-1 mDockMode=0 mHdmiPlugged=false
2019-12-22 13:10:26.847 4769-4780/? D/SamsungPhoneWindowManager: adjustSystemUiVisibilityLw: vis=0xa018
2019-12-22 13:10:26.847 4769-4780/? D/InputManager-JNI: setSystemUiVisibility dexmode: false changed: true displayid: 0 visibility: 0xa018 DD: 0xa018 OD: 0x0
2019-12-22 13:10:26.848 19875-19875/? D/CordovaActivity: Incoming Result. Request code = 10001
2019-12-22 13:10:26.848 19875-19875/? D/CordovaInterfaceImpl: Sending activity result to plugin
2019-12-22 13:10:26.848 4769-4800/? D/WindowManager: reportFocusChangedSerialized, focused=true, inTouchMode=true, win=Window{5020394 u0 com.wavestracker.app/com.wavestracker.app.MainActivity}
2019-12-22 13:10:26.848 19875-19875/? D/CordovaPurchase: onActivityResult(10001,0,Intent { (has extras) }
2019-12-22 13:10:26.848 19875-19875/? D/IabHelper: Ending async operation: launchPurchaseFlow
2019-12-22 13:10:26.848 4769-4800/? D/WindowManager: reportFocusChangedSerialized, focused=false, inTouchMode=true, win=Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}
2019-12-22 13:10:26.848 4769-5310/? D/GameManagerService: noteResumeComponent(), resumeComponent: com.wavestracker.app
2019-12-22 13:10:26.848 4769-5310/? D/GamePkgDataHelper: getSosPolicy(). com.wavestracker.app
2019-12-22 13:10:26.848 4769-4997/? D/GameManagerService: handleForegroundChange(). pkgName: com.wavestracker.app, clsName: com.wavestracker.app.MainActivity,FgActivityName:com.wavestracker.app/.MainActivity
2019-12-22 13:10:26.848 4769-4997/? D/GameManagerService:   handleForegroundChange(). set mFgApp: com.wavestracker.app
2019-12-22 13:10:26.849 4769-4997/? D/GameManagerService: notifyResumePause(). pkg: com.wavestracker.app, type: 4, isMinimized: false, isTunableApp: false
2019-12-22 13:10:26.849 4769-4997/? D/GameManagerService:   notifyResumePause(). do nothing. mKillNotiCount: 3
2019-12-22 13:10:26.849 4769-5310/? D/GameManagerService: identifyGamePackage. com.wavestracker.app
2019-12-22 13:10:26.849 4769-5310/? D/GamePkgDataHelper: getGamePkgData(). com.wavestracker.app
2019-12-22 13:10:26.849 19875-19875/? D/IabHelper: Purchase canceled - Response: 5:Error
2019-12-22 13:10:26.850 19875-19875/? D/CordovaPurchase: Purchase finished: IabResult: User canceled. (response: 6777006:Error), purchase: null
2019-12-22 13:10:26.850 4769-5310/? D/MARsPolicyManager: onPackageResumedFG pkgName = com.wavestracker.app, userId = 0
2019-12-22 13:10:26.850 4769-4780/? D/GamePkgDataHelper: getGamePkgDataIncServer(). com.wavestracker.app
2019-12-22 13:10:26.850 19875-19875/? D/CordovaPurchase: onActivityResult handled by IABUtil.
2019-12-22 13:10:26.850 19875-19875/? D/ViewRootImpl@f96ace8[MainActivity]: stopped(false) old=false
2019-12-22 13:10:26.852 4769-4769/? D/Telecom:SamsungPrebindingServiceImpl: onTopActivityChanged : ComponentInfo{com.wavestracker.app/com.wavestracker.app.MainActivity}
2019-12-22 13:10:26.872 4431-4441/? E/Layer: $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
2019-12-22 13:10:26.872 4431-4441/? E/Layer: Abnormal Layer [Screenshot Parent]
2019-12-22 13:10:26.875 4769-5310/? V/WindowManager: Setting visibility of Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}: false, caller=com.android.server.wm.WindowContainer.sendAppVisibilityToClients:615 com.android.server.wm.AppWindowToken.setClientHidden:461 com.android.server.wm.AppWindowToken.onAnimationFinished:2407 com.android.server.wm.AppWindowToken.setVisibility:552 com.android.server.wm.WindowSurfacePlacer.handleClosingApps:536 
2019-12-22 13:10:26.878 4769-5310/? I/WindowManager: Cancelling animation restarting=true, leash=null, surface=Surface(name=1c12d88 StatusBar)/@0xc133f81, parent=Surface(name=WindowToken{9c2752b android.os.BinderProxy@dd1597a})/@0x518826
2019-12-22 13:10:26.878 4769-5310/? I/WindowManager: Reparenting to leash, surface=Surface(name=1c12d88 StatusBar)/@0xc133f81
2019-12-22 13:10:26.879 4431-4431/? I/SurfaceFlinger: id=19520 createSurf (2960x2960),2 flag=4, Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash#0
2019-12-22 13:10:26.880 4769-5310/? D/WindowManager: makeSurface duration=2 leash=Surface(name=Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash)/@0x5a22437
2019-12-22 13:10:26.881 4769-5310/? D/SurfaceControl: reparent is called, sc=Surface(name=1c12d88 StatusBar)/@0xc133f81, newParentHandle=android.os.BinderProxy@69c5da4, transaction=android.view.SurfaceControl$Transaction@9889c53
2019-12-22 13:10:26.883 4769-5310/? I/WindowManager: Cancelling animation restarting=true, leash=null, surface=Surface(name=Dim Layer for - Task=4931)/@0x5d75512, parent=Surface(name=Task=4931)/@0x9cbac28
2019-12-22 13:10:26.883 4769-5310/? I/WindowManager: Reparenting to leash, surface=Surface(name=Dim Layer for - Task=4931)/@0x5d75512
2019-12-22 13:10:26.884 4431-4431/? I/SurfaceFlinger: id=19521 createSurf (2960x2960),2 flag=4, Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash#0
2019-12-22 13:10:26.885 4769-5310/? D/WindowManager: makeSurface duration=2 leash=Surface(name=Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash)/@0x5f4070d
2019-12-22 13:10:26.885 4769-5310/? D/SurfaceControl: reparent is called, sc=Surface(name=Dim Layer for - Task=4931)/@0x5d75512, newParentHandle=android.os.BinderProxy@41b26c2, transaction=android.view.SurfaceControl$Transaction@beff3e9
2019-12-22 13:10:26.886 4431-4441/? D/Layer: [1c12d88 StatusBar#0]::reparent oldParent:[WindowToken{9c2752b android.os.BinderProxy@dd1597a}#0], newParent:[Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash#0]
2019-12-22 13:10:26.890 4431-4441/? D/Layer: [Dim Layer for - Task=4931#0]::reparent oldParent:[Task=4931#0], newParent:[Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash#0]
2019-12-22 13:10:26.891 4769-4789/? D/WindowManager: setSystemUiVisibility: vis= 0xa018, fullscreenVis= 0x2000, dockedVis= 0x0, win=Window{5020394 u0 com.wavestracker.app/com.wavestracker.app.MainActivity}
2019-12-22 13:10:26.892 4769-4780/? D/GamePkgDataHelper: getSosPolicy(). com.wavestracker.app
2019-12-22 13:10:26.893 4769-4769/? D/FreeformController: Fail to invalid task id :  -1
2019-12-22 13:10:26.893 19875-19875/? D/CordovaActivity: Resumed the activity.
2019-12-22 13:10:26.893 4769-4769/? I/chatty: uid=1000 system_server identical 1 line
2019-12-22 13:10:26.893 4769-4769/? D/FreeformController: Fail to invalid task id :  -1
2019-12-22 13:10:26.893 6060-6175/? E/SDHMS:SDHMS_UTIL_IO: e = /sys/class/input_booster/touchkey/time (Permission denied)
2019-12-22 13:10:26.894 21014-21014/? D/ViewRootImpl@8a24c74[PhoenixAcquireActivity]: MSG_WINDOW_FOCUS_CHANGED 0 1
2019-12-22 13:10:26.894 21014-21014/? D/InputMethodManager: prepareNavigationBarInfo() DecorView@e7c6e9b[PhoenixAcquireActivity]
2019-12-22 13:10:26.894 21014-21014/? D/InputMethodManager: getNavigationBarColor() -855310
2019-12-22 13:10:26.896 4431-4431/? I/SurfaceFlinger: Display 0 HWC layers:
        type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name 
    ------------+--------------+------+-----------+----------------------------+---------------------+------
         Device | 0xf2752900 | 0002 | RGBA_8888 |   0.0    0.0  720.0 1480.0 |    0    0  720 1480 | com.wavestracker.app/com.wavestracker.app.MainActivity[19875]#0
         Client |              | 0000 |  Unknown  |   0.0    0.0   -1.0   -1.0 |    0    0  720 1480 | Dim Layer for - Task=4931#0
         Device | 0xf2321540 | 0000 | RGBA_8888 |   0.0    0.0  720.0   96.0 |    0 1384  720 1480 | NavigationBar[5047]#0
2019-12-22 13:10:26.898 5047-5047/? D/LightBarController: onNavigationVisibilityChanged : vis = a018, nbModeChanged = false navigationBarMode = 4
2019-12-22 13:10:26.898 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] INFO: plugin -> buy error 6777006
2019-12-22 13:10:26.898 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'wt_subs_3m_2q_2k18 cancelled'
2019-12-22 13:10:26.899 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'consumable cancelled'
2019-12-22 13:10:26.899 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'valid cancelled'
2019-12-22 13:10:26.899 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'cancelled'
2019-12-22 13:10:26.899 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'wt_subs_3m_2q_2k18 updated'
2019-12-22 13:10:26.899 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'consumable updated'
2019-12-22 13:10:26.899 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'valid updated'
2019-12-22 13:10:26.900 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'updated'
2019-12-22 13:10:26.900 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'wt_subs_3m_2q_2k18 valid'
2019-12-22 13:10:26.900 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'consumable valid'
2019-12-22 13:10:26.900 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'valid valid'
2019-12-22 13:10:26.900 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'valid'
2019-12-22 13:10:26.900 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'wt_subs_3m_2q_2k18 updated'
2019-12-22 13:10:26.894 6060-6175/? I/chatty: uid=1000(system) Binder:6060_3 identical 1 line
2019-12-22 13:10:26.894 6060-6175/? E/SDHMS:SDHMS_UTIL_IO: e = /sys/class/input_booster/touchkey/time (Permission denied)
2019-12-22 13:10:26.900 4769-5310/? D/GameManagerService: identifyGamePackage. com.wavestracker.app
2019-12-22 13:10:26.901 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'consumable updated'
2019-12-22 13:10:26.901 4769-5310/? D/GamePkgDataHelper: getGamePkgData(). com.wavestracker.app
2019-12-22 13:10:26.901 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'valid updated'
2019-12-22 13:10:26.901 19875-19875/? D/SystemWebChromeClient: http://localhost/plugins/cordova-plugin-purchase/www/store-android.js: Line 1641 : [store.js] DEBUG: store.queries !! 'updated'
2019-12-22 13:10:26.901 19875-19875/? D/ViewRootImpl@f96ace8[MainActivity]: MSG_WINDOW_FOCUS_CHANGED 1 1
2019-12-22 13:10:26.902 19875-19875/? D/InputMethodManager: prepareNavigationBarInfo() DecorView@51df92d[MainActivity]
2019-12-22 13:10:26.902 19875-19875/? D/InputMethodManager: getNavigationBarColor() -855310
2019-12-22 13:10:26.903 19875-19875/? D/InputMethodManager: prepareNavigationBarInfo() DecorView@51df92d[MainActivity]
2019-12-22 13:10:26.903 19875-19875/? D/InputMethodManager: getNavigationBarColor() -855310
2019-12-22 13:10:26.903 19875-19875/? V/InputMethodManager: Starting input: tba=com.wavestracker.app ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
2019-12-22 13:10:26.903 19875-19875/? D/InputMethodManager: startInputInner - Id : 0
2019-12-22 13:10:26.903 19875-19875/? I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
2019-12-22 13:10:26.903 4769-5310/? D/InputMethodManagerService: startInputOrWindowGainedFocus : windowGainedFocus 
2019-12-22 13:10:26.904 4769-5310/? D/InputMethodManagerService: windowGainedFocus: destinationUserId (getCallingUid) = 0
2019-12-22 13:10:26.904 4769-5310/? D/InputMethodManagerService: windowGainedFocus: currentUserId=0
2019-12-22 13:10:26.904 4769-5310/? D/InputMethodManagerService: windowGainedFocus: mCurrentFocusedUserId=0
2019-12-22 13:10:26.904 4769-5310/? D/InputMethodManagerService: windowGainedFocus : lock - currentUserId = 0 destinationUserId = 0
2019-12-22 13:10:26.904 4769-5310/? D/InputMethodManagerService: windowGainedFocus : mCurrentFocusedUserId - 0 and mSecureKeypadEnabled - false, userSwitched - false
2019-12-22 13:10:26.904 4769-5310/? V/InputMethodManagerService: windowGainedFocus : reason=WINDOW_FOCUS_GAIN client=android.os.BinderProxy@d07941b inputContext=null missingMethods= attribute=android.view.inputmethod.EditorInfo@313b010 nm = com.wavestracker.app controlFlags=#101 softInputMode=#10 windowFlags=#81810100
2019-12-22 13:10:26.905 4769-5310/? V/InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false
2019-12-22 13:10:26.905 4769-5310/? D/InputMethodManagerService: isImeSwitcherDisabledPackage : false
2019-12-22 13:10:26.905 4769-5310/? D/InputMethodManagerService: mDesktopModeManager null!
2019-12-22 13:10:26.905 4769-5310/? D/InputMethodManagerService: updateSystemUiLocked 0
2019-12-22 13:10:26.905 4769-5310/? D/InputMethodManagerService: updateSystemUiLocked(), setImeWindowStatusToType, vis : 0 backDisposition : 0
2019-12-22 13:10:26.905 21014-21014/? D/InputTransport: Input channel destroyed: fd=122
2019-12-22 13:10:26.906 4769-5310/? D/InputMethodManagerService: checkDisplayOfStartInputAndUpdateKeyboard display Id 0last 0
2019-12-22 13:10:26.906 4769-5310/? D/InputMethodManagerService: setCurrentInputInfo - inputContext : null eidtorInfo : android.view.inputmethod.EditorInfo@313b010 missingMethods : 0
2019-12-22 13:10:26.906 4769-5310/? D/InputTransport: Input channel constructed: fd=357
2019-12-22 13:10:26.906 4769-5310/? D/InputTransport: Input channel destroyed: fd=357
2019-12-22 13:10:26.906 19875-19875/? D/InputTransport: Input channel constructed: fd=149
2019-12-22 13:10:26.906 6482-6482/? I/InputMethodWrapper:  call dispatchStartInputWithToken
2019-12-22 13:10:26.906 6482-6482/? I/InputMethodService: dispatchStartInputWithToken
2019-12-22 13:10:26.906 6482-6482/? I/SKBD_Performance: [IIManager] [PF_CL][onFinishInput] 154577
2019-12-22 13:10:26.906 6482-6482/? D/InputMethodService: checkDisplayOfStartInputAndUpdateKeyboard display Id 0last 0
2019-12-22 13:10:26.906 6482-6482/? I/SKBD: SamsungKeypad [IMI] onStartInput - caller pid : 19875, caller uid : 10196
2019-12-22 13:10:26.907 6482-6482/? I/SKBD: SamsungKeypad  CACHEDIC onStartInput  isCachedICEnabled:  true
2019-12-22 13:10:26.907 6482-6482/? I/SKBD: bad getDefaultInputRange : UNKNOWN
2019-12-22 13:10:26.907 6482-6482/? I/SKBD: bad [EditorInputType]setPrivateImeOptionsToTable privateImeOptions ( null )
2019-12-22 13:10:26.907 6482-6482/? I/SKBD: bad privateImeOptions is null
2019-12-22 13:10:26.907 6482-6482/? I/SKBD_Performance: [IIManager] [PF_OP][onStartInput] 560039
2019-12-22 13:10:26.911 5047-5047/? D/NavigationBar: setImeWindowStatus() imeShown = false, backDisposition = 0, showImeSwitcher = false
2019-12-22 13:10:26.912 4431-4441/? E/BufferQueueProducer: [com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity[21014]#0] disconnect: not connected (req=1)
2019-12-22 13:10:26.912 21014-21309/? W/libEGL: EGLNativeWindowType 0xd4a98808 disconnect failed
2019-12-22 13:10:26.912 21014-21309/? D/OpenGLRenderer: eglDestroySurface = 0xd1f1b1a0, 0xd4a98800
2019-12-22 13:10:26.916 4769-4789/? D/CodecSolution: isMaxAspectPackageEx: com.wavestracker.app : true(2)
2019-12-22 13:10:26.923 4769-4780/? V/WindowManager: Relayout Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}: viewVisibility=8 req=720x1480 {(0,0)(fillxfill) sim={adjust=resize forwardNavigation} ty=BASE_APPLICATION fmt=TRANSPARENT
      fl=DIM_BEHIND LAYOUT_IN_SCREEN FULLSCREEN LAYOUT_INSET_DECOR SPLIT_TOUCH HARDWARE_ACCELERATED DRAWS_SYSTEM_BAR_BACKGROUNDS
      pfl=FORCE_DRAW_STATUS_BAR_BACKGROUND  remains{ 0x1000000 }
      vsysui=LAYOUT_STABLE LAYOUT_FULLSCREEN LIGHT_NAVIGATION_BAR naviIconColor=0}
2019-12-22 13:10:26.923 4769-4780/? E/WindowManager: win=Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity} destroySurfaces: appStopped=false win.mWindowRemovalAllowed=false win.mRemoveOnExit=false win.mViewVisibility=8 caller=com.android.server.wm.WindowManagerService.tryStartExitingAnimation:2771 com.android.server.wm.WindowManagerService.relayoutWindow:2468 com.android.server.wm.Session.relayoutForTranslate:302 android.view.IWindowSession$Stub.onTransact:518 com.android.server.wm.Session.onTransact:186 android.os.Binder.execTransact:739 <bottom of call stack> 
2019-12-22 13:10:26.924 4769-4780/? I/WindowManager: Destroying surface Surface(name=com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity[21014])/@0x591db47 called by com.android.server.wm.WindowStateAnimator.destroySurface:1901 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:838 com.android.server.wm.WindowState.destroySurfaceUnchecked:3855 com.android.server.wm.WindowState.destroySurface:3836 com.android.server.wm.WindowManagerService.tryStartExitingAnimation:2771 com.android.server.wm.WindowManagerService.relayoutWindow:2468 com.android.server.wm.Session.relayoutForTranslate:302 android.view.IWindowSession$Stub.onTransact:518 
2019-12-22 13:10:26.924 4431-4441/? I/SurfaceFlinger: id=19515 Removed com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity[21014]#0 (0/52)
2019-12-22 13:10:26.925 4431-4431/? I/Layer: id=19515 onRemoved com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity[21014]#0 
2019-12-22 13:10:26.931 21014-21014/? D/ViewRootImpl@8a24c74[PhoenixAcquireActivity]: Relayout returned: old=[0,0][720,1480] new=[0,0][720,1480] result=0x5 surface={false 0} changed=true
2019-12-22 13:10:26.932 21014-21014/? D/ViewRootImpl@8a24c74[PhoenixAcquireActivity]: stopped(true) old=false
2019-12-22 13:10:26.933 4431-4431/? I/SurfaceFlinger: Display 0 HWC layers:
        type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name 
    ------------+--------------+------+-----------+----------------------------+---------------------+------
         Device | 0xf2752900 | 0002 | RGBA_8888 |   0.0    0.0  720.0 1480.0 |    0    0  720 1480 | com.wavestracker.app/com.wavestracker.app.MainActivity[19875]#0
         Client |              | 0000 |  Unknown  |   0.0    0.0   -1.0   -1.0 |    0    0  720 1480 | Dim Layer for - Task=4931#0
         Client | 0xf2321000 | 0000 | RGBA_8888 |   0.0   39.0  720.0   48.0 |    0    0  720    9 | StatusBar[5047]#0
         Device | 0xf2321540 | 0000 | RGBA_8888 |   0.0    0.0  720.0   96.0 |    0 1384  720 1480 | NavigationBar[5047]#0
2019-12-22 13:10:26.937 21014-21014/? D/ViewRootImpl@8a24c74[PhoenixAcquireActivity]: dispatchDetachedFromWindow
2019-12-22 13:10:26.938 4769-4780/? V/WindowManager: Remove Window{351736b u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity}: mSurfaceController=null mAnimatingExit=false mRemoveOnExit=false mHasSurface=false surfaceShowing=false isAnimationSet=false app-animation=false mWillReplaceWindow=false inPendingTransaction=false mDisplayFrozen=false callers=com.android.server.wm.WindowState.removeIfPossible:2780 com.android.server.wm.WindowManagerService.removeWindow:1956 com.android.server.wm.Session.remove:268 android.view.IWindowSession$Stub.onTransact:347 com.android.server.wm.Session.onTransact:186 android.os.Binder.execTransact:739 
2019-12-22 13:10:26.941 4431-4441/? I/SurfaceFlinger: id=19514 Removed 351736b com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity#0 (0/51)
2019-12-22 13:10:26.942 4431-4431/? I/Layer: id=19514 onRemoved 351736b com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity#0 
2019-12-22 13:10:26.942 4769-4780/? D/InputTransport: Input channel destroyed: fd=340
2019-12-22 13:10:26.943 21014-21014/? D/InputTransport: Input channel destroyed: fd=120
2019-12-22 13:10:26.945 4769-4780/? I/WindowManager: Cancelling animation restarting=false, leash=null, surface=Surface(name=AppWindowToken{8cb114f token=Token{18fffae ActivityRecord{2ba4029 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity t4931}}})/@0xf6bbd3c, parent=Surface(name=Task=4931)/@0x9cbac28
2019-12-22 13:10:26.947 4431-4431/? I/SurfaceFlinger: Display 0 HWC layers:
        type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name 
    ------------+--------------+------+-----------+----------------------------+---------------------+------
         Device | 0xf2752900 | 0002 | RGBA_8888 |   0.0    0.0  720.0 1480.0 |    0    0  720 1480 | com.wavestracker.app/com.wavestracker.app.MainActivity[19875]#0
         Client | 0xf2321180 | 0000 | RGBA_8888 |   0.0   31.0  720.0   48.0 |    0    0  720   17 | StatusBar[5047]#0
         Device | 0xf2321540 | 0000 | RGBA_8888 |   0.0    0.0  720.0   96.0 |    0 1384  720 1480 | NavigationBar[5047]#0
2019-12-22 13:10:26.959 4431-4440/? I/SurfaceFlinger: id=19513 Removed AppWindowToken{8cb114f token=Token{18fffae ActivityRecord{2ba4029 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity t4931}}}#0 (2/50)
2019-12-22 13:10:26.975 4431-4431/? I/Layer: id=19513 onRemoved AppWindowToken{8cb114f token=Token{18fffae ActivityRecord{2ba4029 u0 com.android.vending/com.google.android.finsky.billing.acquire.PhoenixAcquireActivity t4931}}}#0 
2019-12-22 13:10:27.046 4769-5276/? D/MdnieScenarioControlService:  packageName : com.wavestracker.app    className : com.wavestracker.app.MainActivity
2019-12-22 13:10:27.047 4769-5276/? V/MdnieScenarioControlService: setUIMode from UI function(3)
2019-12-22 13:10:27.071 5047-5064/? I/ndroid.systemu: NativeAlloc concurrent copying GC freed 18252(923KB) AllocSpace objects, 0(0B) LOS objects, 49% free, 11MB/22MB, paused 283us total 160.102ms
2019-12-22 13:10:27.092 4769-4846/? I/WindowManager: reset, Reparenting to original parent, shouldDeferScheduleAnimation=false, destroyLeash=true, surface=Surface(name=Dim Layer for - Task=4931)/@0x5d75512, parent=Surface(name=Task=4931)/@0x9cbac28, parentNativeHandle=android.os.BinderProxy@ada0d5b, caller=com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$0:97 com.android.server.wm.-$$Lambda$SurfaceAnimator$SIBia0mND666K8lMCPsoid8pUTI.run:4 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$1:104 com.android.server.wm.-$$Lambda$SurfaceAnimator$vdRZk66hQVbQCvVXEaQCT1kVmFc.onAnimationFinished:4 com.android.server.wm.LocalAnimationAdapter.lambda$startAnimation$0:74 
2019-12-22 13:10:27.092 4769-4846/? D/SurfaceControl: reparent is called, sc=Surface(name=Dim Layer for - Task=4931)/@0x5d75512, newParentHandle=android.os.BinderProxy@ada0d5b, transaction=android.view.SurfaceControl$Transaction@beff3e9
2019-12-22 13:10:27.093 4769-4846/? D/SurfaceControl: destroy(transaction), animation-leash is destroyed, sc=Surface(name=Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash)/@0x5f4070d, transaction=android.view.SurfaceControl$Transaction@beff3e9, caller=com.android.server.wm.SurfaceAnimator.reset:338 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$0:97 com.android.server.wm.-$$Lambda$SurfaceAnimator$SIBia0mND666K8lMCPsoid8pUTI.run:4 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$1:104 com.android.server.wm.-$$Lambda$SurfaceAnimator$vdRZk66hQVbQCvVXEaQCT1kVmFc.onAnimationFinished:4 com.android.server.wm.LocalAnimationAdapter.lambda$startAnimation$0:74 com.android.server.wm.-$$Lambda$LocalAnimationAdapter$X--EomqUvw4qy89IeeTFTH7aCMo.run:4 
2019-12-22 13:10:27.093 4431-4548/? I/SurfaceFlinger: id=19517 Removed Dim Layer for - Task=4931#0 (0/49)
2019-12-22 13:10:27.109 4431-4431/? I/Layer: id=19517 onRemoved Dim Layer for - Task=4931#0 
2019-12-22 13:10:27.110 4431-4440/? I/SurfaceFlinger: id=19521 Removed Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash#0 (1/48)
2019-12-22 13:10:27.125 4431-4431/? I/Layer: id=19521 onRemoved Surface(name=Dim Layer for - Task=4931)/@0x5d75512 - animation-leash#0 
2019-12-22 13:10:27.142 4769-4846/? I/WindowManager: reset, Reparenting to original parent, shouldDeferScheduleAnimation=false, destroyLeash=true, surface=Surface(name=1c12d88 StatusBar)/@0xc133f81, parent=Surface(name=WindowToken{9c2752b android.os.BinderProxy@dd1597a})/@0x518826, parentNativeHandle=android.os.BinderProxy@cea4ed1, caller=com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$0:97 com.android.server.wm.-$$Lambda$SurfaceAnimator$SIBia0mND666K8lMCPsoid8pUTI.run:4 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$1:104 com.android.server.wm.-$$Lambda$SurfaceAnimator$vdRZk66hQVbQCvVXEaQCT1kVmFc.onAnimationFinished:4 com.android.server.wm.LocalAnimationAdapter.lambda$startAnimation$0:74 
2019-12-22 13:10:27.143 4769-4846/? D/SurfaceControl: reparent is called, sc=Surface(name=1c12d88 StatusBar)/@0xc133f81, newParentHandle=android.os.BinderProxy@cea4ed1, transaction=android.view.SurfaceControl$Transaction@9889c53
2019-12-22 13:10:27.143 4769-4846/? D/SurfaceControl: destroy(transaction), animation-leash is destroyed, sc=Surface(name=Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash)/@0x5a22437, transaction=android.view.SurfaceControl$Transaction@9889c53, caller=com.android.server.wm.SurfaceAnimator.reset:338 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$0:97 com.android.server.wm.-$$Lambda$SurfaceAnimator$SIBia0mND666K8lMCPsoid8pUTI.run:4 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$1:104 com.android.server.wm.-$$Lambda$SurfaceAnimator$vdRZk66hQVbQCvVXEaQCT1kVmFc.onAnimationFinished:4 com.android.server.wm.LocalAnimationAdapter.lambda$startAnimation$0:74 com.android.server.wm.-$$Lambda$LocalAnimationAdapter$X--EomqUvw4qy89IeeTFTH7aCMo.run:4 
2019-12-22 13:10:27.159 4769-4846/? D/WindowManager: prepareSurfaces, request to clear saved leash, surface=Surface(name=1c12d88 StatusBar)/@0xc133f81
2019-12-22 13:10:27.160 4431-4548/? D/Layer: [1c12d88 StatusBar#0]::reparent oldParent:[Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash#0], newParent:[WindowToken{9c2752b android.os.BinderProxy@dd1597a}#0]
2019-12-22 13:10:27.160 4431-4548/? I/SurfaceFlinger: id=19520 Removed Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash#0 (1/47)
2019-12-22 13:10:27.160 4769-4846/? D/WindowManager: clearSavedLeashOnCommit, savedLeash=Surface(name=Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash)/@0x5a22437, caller=com.android.server.wm.WindowContainer.clearSavedLeashOnCommit:1156 com.android.server.wm.WindowContainer.clearSavedLeashOnCommit:1160 com.android.server.wm.WindowContainer.clearSavedLeashOnCommit:1160 com.android.server.wm.WindowContainer.clearSavedLeashOnCommit:1160 com.android.server.wm.WindowAnimator.animate:253 com.android.server.wm.WindowAnimator.lambda$new$1:112 
2019-12-22 13:10:27.176 4431-4431/? I/Layer: id=19520 onRemoved Surface(name=1c12d88 StatusBar)/@0xc133f81 - animation-leash#0 
2019-12-22 13:10:27.206 5781-5781/? D/io_stats: !@ 179,0 r 12383978 388316921 w 3808590 62901060 d 274322 70374408 f 779936 779781 iot 6019370 5988453 th 51200 0 0 pt 0 inp 0 0 490144.581
2019-12-22 13:10:27.312 5047-5047/? D/SecStatusBarWifiView: updateState: WifiIconState(resId=2131232671, visible=true, activityId=2131232698)
2019-12-22 13:10:27.627 4430-18392/? I/display: [PrimaryDisplay] [DYNAMIC_RECOMP] HWC_2_GLES by low FPS(0)
2019-12-22 13:10:27.659 4769-5310/? D/WifiPermissionsUtil: canAccessScanResults: pkgName = com.google.android.gms, uid = 10024
2019-12-22 13:10:27.847 4769-5782/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT  frequency : 1352000  uid : 1000  pid : 4769  tag : AMS_ACT_RESUME@CPU_MIN@35
2019-12-22 13:10:27.849 4769-5782/? D/ActivityManagerPerformance: AMP_release() ACT_RESUME
2019-12-22 13:10:28.138 4769-4890/? D/InputReader: Input event(11): value=1 when=490145.513456
2019-12-22 13:10:28.138 4769-4890/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.25215 ] when=490145.513456
2019-12-22 13:10:28.138 4769-4889/? I/InputDispatcher: Delivering touch to (5047): action: 0x4, displayId: 0, '2c23298', toolType: 1
2019-12-22 13:10:28.138 4769-4889/? I/InputDispatcher: Delivering touch to (5047): action: 0x4, displayId: 0, '1c12d88', toolType: 1
2019-12-22 13:10:28.139 4769-4889/? I/clp-JNI: Add pinfo) 0
2019-12-22 13:10:28.139 4769-4889/? I/InputDispatcher: Delivering touch to (19875): action: 0x0, displayId: 0, '5020394', toolType: 1
2019-12-22 13:10:28.141 19875-19875/? D/ViewRootImpl@f96ace8[MainActivity]: ViewPostIme pointer 0
2019-12-22 13:10:28.148 4769-4788/? D/StorageManagerService: getExternalStorageMountMode : 3
2019-12-22 13:10:28.149 4769-4788/? D/StorageManagerService: getExternalStorageMountMode : 3
2019-12-22 13:10:28.149 4769-4788/? D/StorageManagerService: getExternalStorageMountMode : final mountMode=3, uid : 5004, packageName : com.samsung.faceservice
2019-12-22 13:10:28.149 4769-4788/? I/ApplicationPolicy: isApplicationExternalStorageWhitelisted:com.samsung.faceservice user:0
2019-12-22 13:10:28.149 4769-4788/? D/ApplicationPolicy: isApplicationExternalStorageWhitelisted: DO is not enabled on user 0. Allowed.
2019-12-22 13:10:28.149 4769-4788/? D/ActivityManager: package  com.samsung.faceservice, user - 0 is SDcard whitelisted
2019-12-22 13:10:28.149 4769-4788/? I/ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.samsung.faceservice user:0
2019-12-22 13:10:28.149 4769-4788/? D/ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
2019-12-22 13:10:28.149 4769-4788/? I/ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.samsung.faceservice user:0
2019-12-22 13:10:28.149 4769-4788/? D/ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
2019-12-22 13:10:28.164 21484-21484/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-12-22 13:10:28.164 4769-4790/? I/ActivityManager: Start proc 21484:com.samsung.faceservice/5004 for service com.samsung.faceservice/.FaceService
2019-12-22 13:10:28.166 21484-21484/? E/Zygote: accessInfo : 1
2019-12-22 13:10:28.178 21484-21484/? E/ung.faceservic: Not starting debugger since process cannot load the jdwp agent.
2019-12-22 13:10:28.192 4769-5310/? I/ActivityManager: DSS on for com.samsung.faceservice and scale is 1.0
2019-12-22 13:10:28.218 21484-21484/? I/ung.faceservic: The ClassLoaderContext is a special shared library.
2019-12-22 13:10:28.224 21484-21484/? I/ung.faceservic: The ClassLoaderContext is a special shared library.
2019-12-22 13:10:28.229 4769-4890/? D/InputReader: Input event(11): value=0 when=490145.604978
2019-12-22 13:10:28.229 4769-4890/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=490145.604978
2019-12-22 13:10:28.229 4769-4889/? I/clp-JNI: Add pinfo) 5020394 com.wavestracker.app/com.wavestracker.app.MainActivity (server) : AppWindowToken{1ad033f token=Token{23bc35e ActivityRecord{d510499 u0 com.wavestracker.app/.MainActivity t4931}}} : 19875 : 10196 : 1
2019-12-22 13:10:28.229 4769-4889/? I/clp-JNI: Add pinfo) 1
2019-12-22 13:10:28.229 4769-4889/? I/InputDispatcher: Delivering touch to (19875): action: 0x1, displayId: 0, '5020394', toolType: 1
2019-12-22 13:10:28.229 19875-19875/? D/ViewRootImpl@f96ace8[MainActivity]: ViewPostIme pointer 1
2019-12-22 13:10:28.246 19875-19875/? D/InputMethodManager: HSIFW - flag : 0 Pid : 19875
2019-12-22 13:10:28.247 4769-5310/? V/InputMethodManagerService: Client requesting input be hidden, flags : 0
2019-12-22 13:10:28.248 4769-5310/? V/InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false
2019-12-22 13:10:28.282 21484-21484/? I/FaceService: [FaceService] onBind() called 
2019-12-22 13:10:28.294 4430-30923/? I/display: [PrimaryDisplay] [DYNAMIC_RECOMP] first frame after HWC_2_GLES
2019-12-22 13:10:28.294 4430-30923/? I/display: [PrimaryDisplay] [DYNAMIC_RECOMP] GLES_2_HWC by high FPS(5)
2019-12-22 13:10:28.309 21484-21484/? I/FaceController: [FaceService] release engines before initialize 
2019-12-22 13:10:28.319 21484-21484/? I/SemFaceRecognition: create new instance
2019-12-22 13:10:28.360 21484-21484/? I/SAIV_FACE: File : /data/user/0/com.samsung.faceservice/face/face_data
2019-12-22 13:10:28.379 21484-21484/? I/[SCE_3]: [SmartCropping v3.0] native version is 2018-12-03-01
2019-12-22 13:10:28.379 21484-21484/? I/[SCE_3]: [SmartCropping v2.0] DB path is /system/saiv/smartcropping_2.0/db
2019-12-22 13:10:28.381 21484-21484/? I/[SCE_3]: smart_cropping in srcb_Smartcrop_Init() : -333683968 & its size is 4
2019-12-22 13:10:28.381 21484-21484/? I/[SCE_3]: SmartCropper Handle after srcb_Smartcrop_Init() : -333683968 & its size is 4
2019-12-22 13:10:28.381 21484-21484/? I/[SCE_3]: long bytes num: 4
2019-12-22 13:10:28.381 21484-21484/? I/[SCE_3]: jlong bytes num: 8
2019-12-22 13:10:28.381 21484-21484/? I/[SCE_3]: filepathname: /system/saiv/smartcropping_2.0/db/smartcrop_saliency_deploy.prototxt
2019-12-22 13:10:28.382 21484-21484/? I/[SCE_3]: o_f_d loading start
2019-12-22 13:10:28.382 21484-21484/? I/[SCE_3]: o_f_d loading success
2019-12-22 13:10:28.382 21484-21484/? I/[SCE_3]: filepathname: /system/saiv/smartcropping_2.0/db/.
2019-12-22 13:10:28.382 21484-21484/? I/[SCE_3]: filepathname: /system/saiv/smartcropping_2.0/db/..
2019-12-22 13:10:28.382 21484-21484/? I/[SCE_3]: filepathname: /system/saiv/smartcropping_2.0/db/smartcrop_saliency_train
2019-12-22 13:10:28.382 21484-21484/? I/[SCE_3]: o_f_t loading start
2019-12-22 13:10:28.415 21484-21484/? I/[SCE_3]: o_f_t loading success
2019-12-22 13:10:28.415 21484-21484/? I/[SCE_3]: DB file count : 2
2019-12-22 13:10:28.480 19875-19875/? D/InputMethodManager: HSIFW - flag : 0 Pid : 19875
2019-12-22 13:10:28.480 4769-5310/? V/InputMethodManagerService: Client requesting input be hidden, flags : 0
2019-12-22 13:10:28.481 4769-5310/? V/InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false
2019-12-22 13:10:28.504 21484-21484/? I/[SCE_3]: native init exit
2019-12-22 13:10:28.504 21484-21484/? I/[SCE_3]: SmartCropper Handle is -333683968
2019-12-22 13:10:28.504 21484-21484/? I/[SCE_3]: SmartCropper Handle is -333683968 & its size is 4
2019-12-22 13:10:28.504 21484-21484/? I/[SCE_3]: address(jlong): -333683968
2019-12-22 13:10:28.518 21484-21484/? I/SAIV_FACE: SAIV_HPRFACE_GAE_VERSION : 20170310
2019-12-22 13:10:28.518 21484-21484/? D/native_gae: CGAEMain_success
2019-12-22 13:10:28.531 21484-21484/? D/native_gae: GAE Init Success
2019-12-22 13:10:28.532 21484-21484/? I/SAIV_FACE_LD_API: DMC LMD ENGINE INIT 1.0.08 [Option-0/Profile-0]
2019-12-22 13:10:28.538 21484-21484/? I/SAIV_FACE_LD_API: DMC LMD ENGINE : ret 4096
2019-12-22 13:10:28.544 3034-3034/? I/ServiceManager: [#CMH#] Bound to Package  com.samsung.faceservice
2019-12-22 13:10:28.545 4769-5310/? I/ActivityManager: KPU : put [com.samsung.android.SettingsReceiver] : 4452 K
2019-12-22 13:10:28.546 4769-5310/? I/ActivityManager: Killing 20695:com.samsung.android.SettingsReceiver/1000 (adj 906): DHA:empty #25
2019-12-22 13:10:28.544 3034-3034/? I/ServiceManager: [#CMH#] Bound to Package  com.samsung.faceservice
2019-12-22 13:10:28.546 4769-4791/? W/libprocessgroup: kill(-20695, 9) failed: No such process
2019-12-22 13:10:28.557 4769-4791/? I/chatty: uid=1000(system) ActivityManager identical 2 lines
2019-12-22 13:10:28.562 4769-4791/? W/libprocessgroup: kill(-20695, 9) failed: No such process
2019-12-22 13:10:28.562 4769-4791/? I/libprocessgroup: Successfully killed process cgroup uid 1000 pid 20695 in 16ms
2019-12-22 13:10:28.563 4497-4497/? I/Zygote: Process 20695 exited due to signal (9)
2019-12-22 13:10:28.814 4769-4769/? D/Telecom:SamsungPrebindingServiceImpl: handleMessage 0
2019-12-22 13:10:28.815 4769-4769/? I/Telecom:SamsungPrebindingServiceImpl: isSktTPhoneMode supportTPhone: false
2019-12-22 13:10:28.815 4769-4769/? I/Telecom:SamsungPrebindingServiceImpl: needToKeepBinding - false - match not found
2019-12-22 13:10:28.828 4430-18392/? I/display: [PrimaryDisplay] [DYNAMIC_RECOMP] HWC_2_GLES by low FPS(0)
2019-12-22 13:10:28.959 4769-4921/? D/BatteryService: Sending ACTION_BATTERY_CHANGED. scale:100, info:{.chargerAcOnline = false, .chargerUsbOnline = true, .chargerWirelessOnline = false, .maxChargingCurrent = 0, .maxChargingVoltage = 0, .batteryStatus = CHARGING, .batteryHealth = GOOD, .batteryPresent = true, .batteryLevel = 50, .batteryVoltage = 3900, .batteryTemperature = 314, .batteryCurrent = 0, .batteryCycleCount = 0, .batteryFullCharge = 3000000, .batteryChargeCounter = 1512000, .batteryTechnology = Li-ion}
2019-12-22 13:10:28.959 4769-4921/? D/BatteryService: online:4, current avg:193, charge type:1, POGO powered:false, power sharing:false, high voltage charger:false, charger_type:0, capacity:280000, batterySWSelfDischarging:false, misc_event:0, current_event:0, current_now:205
2019-12-22 13:10:28.961 4769-4769/? I/MotionRecognitionService: Plugged
2019-12-22 13:10:28.961 4769-4769/? D/MotionRecognitionService:   mCableConnection= 1
2019-12-22 13:10:28.961 4769-4769/? D/MotionRecognitionService: setPowerConnected : mGripEnabled = false
2019-12-22 13:10:28.962 4769-4769/? D/SamsungPhoneWindowManager: ACTION_BATTERY_CHANGED - Level :: 50, battStatus :: 2
2019-12-22 13:10:28.963 4769-4769/? D/UsbDeviceManager: received ACTION_BATTERY_CHANGED
2019-12-22 13:10:28.964 4769-4798/? D/UsbDeviceManager: handleMessage -> MSG_UPDATE_CHARGING_STATE = 1
2019-12-22 13:10:28.964 5006-5006/? D/BigDataInfoController: Intent : android.intent.action.BATTERY_CHANGED
2019-12-22 13:10:28.964 4769-4798/? D/UsbDeviceManager: updateUsbNotification(false) : mConnected = true, mConfigured = true, mCurrentFunctions = 5, mHostConnected = false, mSourcePower = false, mSinkPower = false, mUsbCharging = true, mUseUsbNotification = true
2019-12-22 13:10:28.965 4769-4798/? D/UsbDeviceManager: updateUsbNotification, set mCurrentFunctionsForNoti : mtp
2019-12-22 13:10:28.966 4769-4798/? D/DexObserverFW: isDexModeOn() : false
2019-12-22 13:10:28.966 4769-4798/? D/DexObserverFW: isSemiDexModeOn() : false
2019-12-22 13:10:28.965 5006-5006/? D/BigDataInfoController: Intent : android.intent.action.BATTERY_CHANGED
2019-12-22 13:10:28.966 5047-5047/? D/KeyguardUpdateMonitor: received broadcast android.intent.action.BATTERY_CHANGED
2019-12-22 13:10:28.966 4769-4798/? D/UsbDeviceManager: id=27, mUsbNotificationId=27, titleRes=17042116

Recap of my setup:

  1. versionCode and versionName do match the current live/prod version.
  2. APK is signed with prod Keystore then 'zip aligned'
  3. the uses-permission 'com.android.vending.BILLING' is present
  4. product is live (it has been for more than a year now) / active
  5. in the APK the referred classes seem to be in the classpath

I still cannot understand why this is happening, cheers.

guy-keller commented 4 years ago

TIL - no code changes.

Changed the app versionName and versionCode to a version 3/4 ago. It all magically works, as it should from the very beginning - happiness.

Revert back to the current prod versionName and versionCode. Price retrieval works, 'buy/purchase/order' does not - madness.

I am guessing something is missing approval, consent, agreeing This only serves to prove that IAP can be a total nightmare

Sulorb commented 9 months ago

TIL - no code changes.

Changed the app versionName and versionCode to a version 3/4 ago. It all magically works, as it should from the very beginning - happiness.

I am guessing the version build needs to have been uploaded on Google Play first with the billing permission so it can work.