Virexa
HomeAIProgrammingCloudSecurityOpen SourceGamesMobile GamesDeveloper Hub
Sign InSign Up
Virexa
Sign InSign Up
AIProgrammingCloudSecurityOpen SourceGamesMobile GamesDeveloper Hub
Virexa

Modern AI news aggregation and newsletter platform covering technology, business, AI, games and world news.

Categories

  • AI
  • Programming
  • Cloud
  • Security
  • Open Source
  • Developer Hub

Company

  • About
  • Contact
  • Advertise

Resources

  • RSS Feed
  • API
  • Privacy Policy
  • Terms of Service

© 2026 Virexa. All rights reserved.

Virexa
HomeAIProgrammingCloudSecurityOpen SourceGamesMobile GamesDeveloper Hub
Sign InSign Up
Virexa
Sign InSign Up
AIProgrammingCloudSecurityOpen SourceGamesMobile GamesDeveloper Hub
Home›News Explorer

Explore

News Explorer

Browse every article collected by VIREXA. Newest articles appear first.

Filters

6,933 results • Page 32 of 578

‘Tremendous costs’: Can Trump stop other countries from trading with Iran?
WorldNews

‘Tremendous costs’: Can Trump stop other countries from trading with Iran?

Iran's foreign minister has dismissed Trump’s latest threats, calling them a “diversion" from America’s own crisis."

Al Jazeera·August 20, 2026·1 min read
Store and Ads having problems on device - first Unity 6.5 build
Games
← Previous1…3031323334…578Next →
🔥

Developer Pulse

What developers are discussing today

  • GPT-5.5 API↗9.4K
  • Next.js 16↗6.2K
  • Claude Code↗5.8K
  • Kubernetes→3.4K
  • Rust↗2.7K
Release

Store and Ads having problems on device - first Unity 6.5 build

Hello, Updated my app to build on Unity 6.5. Everything works well in the Unity editor, but I’ve had a few issues with the app after publishing it to Google Play and running the app on my device. These problems had not been happening in the older builds. The first is related to the shop. It’s just a simple shop that has three single-purchase products. It’s supposed to update the display prices based on the user’s local currency, and then block out any products that have already been purchased/unlocked in-game. However, it’s not doing any of these anymore. After opening the shop with Android Logcat running, here are the error messages it gives: 2026/08/20 13:52:45.248 16430 16455 Error Unity AndroidJavaException: java.lang.ClassNotFoundException: com.android.billingclient.api.PurchasesUpdatedListener 2026/08/20 13:52:45.248 16430 16455 Error Unity java.lang.ClassNotFoundException: com.android.billingclient.api.PurchasesUpdatedListener 2026/08/20 13:52:45.248 16430 16455 Error Unity at java.lang.Class.classForName(Native Method) 2026/08/20 13:52:45.248 16430 16455 Error Unity at java.lang.Class.forName(Class.java:454) 2026/08/20 13:52:45.248 16430 16455 Error Unity at com.unity3d.player.UnityPlayerForActivityOrService.nativeRender(Native Method) 2026/08/20 13:52:45.248 16430 16455 Error Unity at com.unity3d.player.Y.handleMessage(r8-map-id-079eaf055d45cb077ed8cede8ce6424e9d80718eac1a7c3d95b007b085162bbf:113) 2026/08/20 13:52:45.248 16430 16455 Error Unity at android.os.Handler.dispatchMessage(Handler.java:102) 2026/08/20 13:52:45.248 16430 16455 Error Unity at android.os.Looper.loopOnce(Looper.java:201) 2026/08/20 13:52:45.248 16430 16455 Error Unity at android.os.Looper.loop(Looper.java:288) 2026/08/20 13:52:45.248 16430 16455 Error Unity at com.unity3d.player.a0.run(r8-map-id-079eaf055d45cb077ed8cede8ce6424e9d80718eac1a7c3d95b007b085162bbf:30) 2026/08/20 13:52:45.248 16430 16455 Error Unity Caused by: java.lang.ClassNotFoundException: com.android.billingclient.api.PurchasesUpdatedListener 2026/08/20 13:52:45.248 16430 16455 Error Unity ... 8 more 2026/08/20 13:52:45.248 16430 16455 Error Unity at UnityEngine.AndroidJNISafe.CheckException () [0x00000] in :0 2026/08/20 13:52:45.248 16430 16455 Error Unity at UnityEngine.AndroidJNISafe.FindClass (System.String n The second is that the ads simply aren’t running at all. There’s two ways ads get activated in in the game; the first is if the player completes two levels, and the second is if the player gets a Game Over. These are the Logcat messages when either condition occurs: Completing two levels 2026/08/20 15:18:17.361 21138 21160 Error Unity Interstitial ad is not ready yet. 2026/08/20 15:18:17.361 21138 21160 Error Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object) 2026/08/20 15:18:17.361 21138 21160 Error Unity LevelLoader:LoadLevel() 2026/08/20 15:18:17.361 21138 21160 Error Unity d__17:MoveNext() 2026/08/20 15:18:17.361 21138 21160 Error Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) Getting a Game Over: 2026/08/20 13:56:00.203 16430 16455 Error Unity Interstitial ad is not ready yet. 2026/08/20 13:56:00.203 16430 16455 Error Unity UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object) 2026/08/20 13:56:00.203 16430 16455 Error Unity Scoreboard:ContinueToMenu() 2026/08/20 13:56:00.203 16430 16455 Error Unity UnityEngine.Events.UnityEvent:Invoke() 2026/08/20 13:56:00.203 16430 16455 Error Unity UnityEngine.EventSystems.ExecuteEvents:Execute(GameObject, BaseEventData, EventFunction`1) 2026/08/20 13:56:00.203 16430 16455 Error Unity UnityEngine.InputSystem.UI.InputSystemUIInputModule:ProcessPointerButton(ButtonState&, PointerEventData) 2026/08/20 13:56:00.203 16430 16455 Error Unity UnityEngine.InputSystem.UI.InputSystemUIInputModule:ProcessPointer(PointerModel&) 2026/08/20 13:56:00.203 16430 16455 Error Unity UnityEngine.InputSystem.UI.InputSystemUIInputModule:Process() 2026/08/20 13:56:00.203 16430 16455 Error Unity In the past, I understand that the “Interstitial ad is not ready” error usually occurs if you simply haven’t given the device enough time to load the ad (or if you’re offline), but the interstitial ad function is called as soon as the game starts, so I know it’s not a time issue. Part of me wonders if there’s a simpler explanation for this, as my Google Ads account had been deactivated through inactivity, but I had let it deactivate because I believed this account was only for running your own ads through someone else’s app, as opposed to running other ads on your own app. Do correct me if I’m wrong. I did reactivate my Google Ads account, but my app hasn’t shown any ads yet. I do hope this one is just a matter of waiting things out. Thanks in advance. Really puzzling me as all of these things work perfectly fine in the Unity Editor. 1 post - 1 participant Read full topic

Unity Discussions·August 20, 2026·3 min read
U.S. Open To Pay Players $108 Million, The Highest Total In Tennis
BusinessNews

U.S. Open To Pay Players $108 Million, The Highest Total In Tennis

This represents a 20% increase from the previous record set at the 2025 US Open ($90 million) - the second consecutive year of a 20% increase.

Forbes·August 20, 2026·1 min read
USS Washington arrives in Arabian Sea after aircraft carrier outcry
WorldNews

USS Washington arrives in Arabian Sea after aircraft carrier outcry

Vessel expected to replace USS Lincoln after reports of dire conditions on board raised questions over US war planning.

Al Jazeera·August 20, 2026·1 min read
New Cryptographic Context Injection Attack Could Let Web Pages Steal Grok Chat Data
SecuritySecurity Advisory

New Cryptographic Context Injection Attack Could Let Web Pages Steal Grok Chat Data

Adversa AI has disclosed an attack technique that it says can cause xAI's Grok chatbot to send a user's name, approximate location, subscription tier, and the prompts from the ongoing conversation to an attacker-controlled server after the user asks it to summarize an ordinary web page. The AI security company, which has codenamed the technique "Cryptographic Context Injection," said the

The Hacker News·August 20, 2026·1 min read
Genesis joins the giant electric SUV club with new GV90
TechnologyNews

Genesis joins the giant electric SUV club with new GV90

A retractable screen, a huge heads-up display, and an optional 4-seat VIP interior.

Ars Technica·August 20, 2026·1 min read
Visual Studio Editor Package 2.0.28 breaks editor integration
Mobile GamesRelease

Visual Studio Editor Package 2.0.28 breaks editor integration

After updating the Visual Studio Editor Package to 2.0.28 the scripts will no longer open as a project. Edit > Preferences > External Script Editor > Shows “Microsoft Visual Studio (Internal).” Also, there are many bugs in the console related to this. UnityException: Calls to "AssetDatabase.IsAssetImportWorkerProcess" are restricted during . Please make sure this function is not called from code that runs during code reload (e.g. [OnCodeLoaded]) Microsoft.Unity.VisualStudio.Editor.UnityInstallation.get_IsMainUnityEditorProcess () (at ./Library/PackageCache/com.unity.ide.visualstudio@b5edea5f33f4/Editor/UnityInstallation.cs:18) Microsoft.Unity.VisualStudio.Editor.VisualStudioEditor..cctor () (at ./Library/PackageCache/com.unity.ide.visualstudio@b5edea5f33f4/Editor/VisualStudioEditor.cs:34) Rethrow as TypeInitializationException: The type initializer for 'Microsoft.Unity.VisualStudio.Editor.VisualStudioEditor' threw an exception. Microsoft.Unity.VisualStudio.Editor.VisualStudioIntegration..cctor () (at ./Library/PackageCache/com.unity.ide.visualstudio@b5edea5f33f4/Editor/VisualStudioIntegration.cs:40) Rethrow as TypeInitializationException: The type initializer for 'Microsoft.Unity.VisualStudio.Editor.VisualStudioIntegration' threw an exception. __UnityModuleInitialization.Initialize () (at ./Library/Bee/artifacts/1900b0aEDbg.dag/Unity.Analyzers.Common/Unity.Analyzers.Common.LifecycleAttributes.LifecycleAttributesCodeGenerator/UnityModuleInitialization.lifecycle.generated.cs:8) System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) (at :0) Rethrow as TargetInvocationException: Exception has been thrown by the target of an invocation. System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) (at :0) System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) (at :0) Unity.Scripting.LifecycleManagement.LifecycleController.ExecuteInitializationMethods (Unity.Scripting.LifecycleManagement.OrderedAssemblyList loadedAssemblies) (at :0) Unity.Scripting.LifecycleManagement.LifecycleController.OnAssembliesLoaded (Unity.Scripting.LifecycleManagement.OrderedAssemblyList loadedAssemblies) (at :0) Unity.Scripting.LifecycleManagement.AssemblyLoadedScopeBase.Enter (Unity.Scripting.LifecycleManagement.ScopeTransitionHelper scopeTransitionHelper) (at :0) Unity.Scripting.LifecycleManagement.LifecycleScopeBase.OnEnter (Unity.Scripting.LifecycleManagement.ScopeTransitionHelper scopeTransitionHelper) (at :0) Unity.Scripting.LifecycleManagement.ActiveLifecycleScopeWithContext`1[T].OnEnter (Unity.Scripting.LifecycleManagement.ScopeTransitionHelper helper) (at :0) Unity.Scripting.LifecycleManagement.ActiveLifecycleScopesTracker.TryEnterScope[TContext] (Unity.Scripting.LifecycleManagement.LifecycleScopeWithContext`1[T] lifecycleScope) (at :0) Unity.Scripting.LifecycleManagement.ActiveLifecycleScopesTracker+ScopeTransitionRequestWithContext`1[T].Transition (Unity.Scripting.LifecycleManagement.ActiveLifecycleScopesTracker tracker) (at :0) Unity.Scripting.LifecycleManagement.ActiveLifecycleScopesTracker.ExecuteTransitions (System.Boolean executeAndPop) (at :0) Unity.Scripting.LifecycleManagement.ActiveLifecycleScopesTracker.CreateScopeTransitionRequest[T] (Unity.Scripting.LifecycleManagement.LifecycleScopeWithContext`1[T] lifecycleScope, Unity.Scripting.LifecycleManagement.ActiveLifecycleScopesTracker+ScopeTransitionType scopeTransitionType, System.Boolean alsoExitNestedScopes) (at :0) Unity.Scripting.LifecycleManagement.ActiveLifecycleScopesTracker.RequestEnterScope[T] (Unity.Scripting.LifecycleManagement.LifecycleScopeWithContext`1[T] lifecycleScope) (at :0) Unity.Scripting.LifecycleManagement.LifecycleController+<>c__DisplayClass38_0`1[T]. b__0 () (at :0) Unity.Scripting.LifecycleManagement.LifecycleController.ExecuteOnMainThread (System.String transitionType, System.String scopeName, System.Action action) (at :0) Unity.Scripting.LifecycleManagement.LifecycleController.EnterScope[T] (Unity.Scripting.LifecycleManagement.LifecycleScopeWithContext`1[T] scope) (at :0) UnityEngine.DomainReloadLifecycleController.Internal_EnterAssembliesLoadedLifecycleScopes_PreDeserialization () (at :0) UnityEngine.DomainReloadLifecycleController:Internal_EnterAssembliesLoadedLifecycleScopes_PreDeserialization() 1 post - 1 participant Read full topic

Unity Discussions·August 20, 2026·1 min read
IRS Updates Business Interest Deduction Guidance Following Tax Law Changes
BusinessNews

IRS Updates Business Interest Deduction Guidance Following Tax Law Changes

Revised FAQs for the business interest deduction explain changes to adjusted taxable income, floor plan financing, capitalization rules, and CFC inclusions.

Forbes·August 20, 2026·1 min read
The View from Above: The Gemini Visual Acuity Experiments
SpaceNews

The View from Above: The Gemini Visual Acuity Experiments

NASA astronaut L. Gordon Cooper, Jr. took 29 color photographs of the Earth with a 70mm camera as he orbited our planet during the Mercury-Atlas 9 mission in May 1963. Cooper’s view from the window of his Faith 7 spacecraft was spectacular, and he reported that he could see vehicles motoring on dirt roads, smoke-belching&#160;trains, [&#8230;]

NASA·August 20, 2026·5 min read
The ‘Insidious: Out Of The Further’ Rotten Tomatoes Review Score Is In
BusinessNews

The ‘Insidious: Out Of The Further’ Rotten Tomatoes Review Score Is In

'Insidious: Out of the Further' is out this weekend, and critic reviews are in, giving it what is in fact a record Rotten Tomatoes score.

Forbes·August 20, 2026·1 min read
Lady Gaga’s Emmy-Nominated Smash May Lead To More Grammy Nods
BusinessNews

Lady Gaga’s Emmy-Nominated Smash May Lead To More Grammy Nods

Lady Gaga's "The Dead Dance" could earn the singer her first Primetime Emmy — and its nomination for that honor may bring her back to the Grammys as well.

Forbes·August 20, 2026·1 min read
Ossoff Says MAGA ‘Melt Down’ Over His Natalie Harp Comments Has Been ‘Amazing’: ‘The Truth Hurts’
BusinessNews

Ossoff Says MAGA ‘Melt Down’ Over His Natalie Harp Comments Has Been ‘Amazing’: ‘The Truth Hurts’

Ossoff Defends Natalie Harp Comments, Says ‘No One Cares’ About Her ‘Feelings’

Forbes·August 20, 2026·1 min read
Zero-Day
↘2K
💬

Top Discussion

HN

Hacker News

“GPT-5.5's API pricing is reshaping how startups build AI products”

14.1K932 comments
View discussion→

Filters

Time
Categories
Sources
Content Type