8.9 C
New York
Wednesday, April 9, 2025
Home Blog Page 3755

ios – Did not resolve host community app id Warning: -[BETextInput attributedMarkedText] is unimplemented


associates! We actually want your assist!! I’m making a cellular software utilizing Ioinic Capacitor (v6) for iOS and android. The applying is basically a hyperlink to a third-party web site that opens utilizing WebView. Every thing works high-quality on Android. However when working on the simulator, an error happens in Xcode:

Did not resolve host community app id
Warning: -[BETextInput attributedMarkedText] is unimplemented
⚡️ Loading app at capacitor://localhost…
⚡️ WebView loaded
SplashScreen.hideSplash: SplashScreen was routinely hidden after default timeout. It’s best to name SplashScreen.cover() as quickly as your net app is loaded (or improve the timeout). Learn extra at https://capacitorjs.com/docs/apis/splash-screen#hiding-the-splash-screen

The iOS app begins, a Splash Display screen seems, which disappears after 2 seconds after which a clean display screen…
In the mean time, there isn’t a longer entry to Apple units and Xcode. Due to this fact, I construct the appliance in Ionic Appflow, and take a look at runs within the app time.io Due to this fact, sadly, I will be unable to throw off extra detailed logs … Possibly somebody has encountered one thing related, I’ll be glad about any assist. Listed here are some recordsdata to grasp:

package deal.json

{
  "title": "capacitor-app",
  "model": "2408.0.24",
  "description": "An Wonderful Capacitor App",
  "foremost": "index.js",
  "key phrases": [
    "capacitor",
    "mobile"
  ],
  "scripts": {
    "begin": "vite",
    "construct": "vite construct",
    "preview": "vite preview"
  },
  "dependencies": {
    "@capacitor/android": "^6.1.2",
    "@capacitor/digicam": "newest",
    "@capacitor/core": "^6.1.2",
    "@capacitor/ios": "^6.1.2",
    "@capacitor/splash-screen": "newest"
  },
  "devDependencies": {
    "@capacitor/property": "^3.0.5",
    "@capacitor/cli": "^6.1.2",
    "vite": "^2.9.13"
  },
  "creator": "",
  "license": "ISC"
}

capacitor.config.json

{
  "appId": "take a look at.ios.app",
  "appName": "App",
  "webDir": "dist",
  "model": "2408.0.24",
  "server": {
    "iosScheme": "https"
  },
  "ios": {
    "construct": {
      "developmentTeam": ""
    }
  },
  "plugins": {
    "SplashScreen": {
      "launchShowDuration": 2000,
      "launchAutoHide": true,
      "launchFadeOutDuration": 2000,
      "androidScaleType": "FIT_XY",
      "backgroundColor": "#1F2131",
      "splashBackgroundColor": "#121617",
      "splashBackgroundColorDark": "#121617",
      "androidSplashResourceName": "splash",
      "androidSplashDarkResourceName": "splash",
      "showSpinner": false,
      "splashFullScreen": true,
      "splashImmersive": true,
      "layoutName": "launch_screen",
      "useDialog": true
    }
  }
}

AppDelegate.swift

import UIKit
import Capacitor

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?

    func software(_ software: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        return true
    }

    func applicationWillResignActive(_ software: UIApplication) {
    }

    func applicationDidEnterBackground(_ software: UIApplication) {
    }

    func applicationWillEnterForeground(_ software: UIApplication) {
    }

    func applicationDidBecomeActive(_ software: UIApplication) {
    }

    func applicationWillTerminate(_ software: UIApplication) {
    }

    func software(_ app: UIApplication, open url: URL, choices: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
        return ApplicationDelegateProxy.shared.software(app, open: url, choices: choices)
    }

    func software(_ software: UIApplication, proceed userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
        return ApplicationDelegateProxy.shared.software(software, proceed: userActivity, restorationHandler: restorationHandler)
    }
}

Primary.storyboard



    
        
    
    
        
        
    
    
        
        
            
                
                
            
        
    

LaunchScreen.storyboard



    
    
        
        
        
        
    
    
        
        
            
                
                    
                        
                        
                        
                    
                
                
            
            
        
    
    
        
        
            
        
    

Data.plist





    CFBundleDevelopmentRegion
    en
    CFBundleDisplayName
        IQL
    CFBundleExecutable
    $(EXECUTABLE_NAME)
    CFBundleIdentifier
    $(PRODUCT_BUNDLE_IDENTIFIER)
    CFBundleInfoDictionaryVersion
    6.0
    CFBundleName
    $(PRODUCT_NAME)
    CFBundlePackageType
    APPL
    CFBundleShortVersionString
    $(MARKETING_VERSION)
    CFBundleVersion
    $(CURRENT_PROJECT_VERSION)
    LSRequiresIPhoneOS
    
    UILaunchStoryboardName
    LaunchScreen
    UIMainStoryboardFile
    Primary
    UIRequiredDeviceCapabilities
    
        armv7
    
    UISupportedInterfaceOrientations
    
        UIInterfaceOrientationPortrait
        UIInterfaceOrientationLandscapeLeft
        UIInterfaceOrientationLandscapeRight
    
    UISupportedInterfaceOrientations~ipad
    
        UIInterfaceOrientationPortrait
        UIInterfaceOrientationPortraitUpsideDown
        UIInterfaceOrientationLandscapeLeft
        UIInterfaceOrientationLandscapeRight
    
    UIViewControllerBasedStatusBarAppearance
    


Splash Display screen.cover() additionally doesn’t work in index.js (in the principle index.html ), sadly I am unable to add detailed logs…

registerPlugin("CapacitorHttp", {
  net: () => new CapacitorHttpPluginWeb()
});
const SplashScreen = registerPlugin("SplashScreen", {
  net: () => __vitePreload(() => import("./net.af70e0c8.js"), true ? [] : void 0).then((m) => new m.SplashScreenWeb())
});
window.addEventListener("DOMContentLoaded", () => {
  console.log("load app");
  SplashScreen.cover();
});

Capacitor makes use of the CAPBridgeViewController class (Primary.storyboard). I attempted to jot down my very own class to deal with the show of MyViewController, however it can’t be discovered by AppDelegate (can’t discover ‘MyViewController’ in scope) if I import MyViewController in AppDelegate (no such module ‘MyViewController’):

MyViewController.swift

import UIKit
import WebKit
import Capacitor


class MyViewController: CAPBridgeViewController, WKUIDelegate {
    
    var webView: WKWebView!
    
    override func loadView() {
        let webConfiguration = WKWebViewConfiguration()
        webView = WKWebView(body: .zero, configuration: webConfiguration)
        webView.uiDelegate = self
        webView.navigationDelegate = self
        view = webView
    }

    override func viewDidLoad() {
        tremendous.viewDidLoad()

        let myURL = URL(string: "https://iql.finance/")
        let myRequest = URLRequest(url: myURL)
        webView.load(myRequest)
    }
}

up to date AppDelegate

import UIKit
import Capacitor

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?

    func software(_ software: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        window = UIWindow(body: UIScreen.foremost.bounds)
        let viewController = MyViewController()
        window?.rootViewController = viewController
        window?.makeKeyAndVisible()

        return true
    }

    func applicationWillResignActive(_ software: UIApplication) {}

    func applicationDidEnterBackground(_ software: UIApplication) {}

    func applicationWillEnterForeground(_ software: UIApplication) {}

    func applicationDidBecomeActive(_ software: UIApplication) {}

    func applicationWillTerminate(_ software: UIApplication) {}

    func software(_ app: UIApplication, open url: URL, choices: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
        return ApplicationDelegateProxy.shared.software(app, open: url, choices: choices)
    }

    func software(_ software: UIApplication, proceed userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
        return ApplicationDelegateProxy.shared.software(software, proceed: userActivity, restorationHandler: restorationHandler)
    }
}

and altering the CustomClass within the Primary.storyboard


What may very well be the issue, possibly somebody has encountered it? Thanks a lot upfront for any assist

Latvian Hacker Extradited to U.S. for Position in Karakurt Cybercrime Group

0


Aug 23, 2024Ravie LakshmananCyber Crime / Ransomware

Latvian Hacker Extradited to U.S. for Position in Karakurt Cybercrime Group

A 33-year-old Latvian nationwide residing in Moscow, Russia, has been charged within the U.S. for allegedly stealing information, extorting victims, and laundering ransom funds since August 2021.

Deniss Zolotarjovs (aka Sforza_cesarini) has been charged with conspiring to commit cash laundering, wire fraud and Hobbs Act extortion. He was arrested in Georgia in December 2023 and has since been extradited to the U.S. as of this month.

“Zolotarjovs is a member of a recognized cybercriminal group that assaults laptop techniques of victims all over the world,” the U.S. Division of Justice (DoJ) mentioned in a press launch this week.

“Amongst different issues, the Russian cybercrime group steals sufferer information and threatens to launch it until the sufferer pays ransom in cryptocurrency. The group maintains a leaks and public sale web site that lists sufferer corporations and provides stolen information for obtain.”

Cybersecurity

Zolotarjovs is believed to have been an lively member of the e-crime group, participating with different members of the gang and laundering the ransom funds acquired from victims.

Whereas the title of the cybercrime syndicate was not talked about by the DoJ, a November 28, 2023, grievance filed within the U.S. District Court docket hyperlinks the defendant to a knowledge extortion crew tracked as Karakurt, which emerged as a splinter group within the wake of the crackdown on Conti in 2022.

“Additional evaluation of Sforza’s communications [on Rocket.Chat] indicated Sforza gave the impression to be liable for conducting negotiations on Karakurt sufferer chilly case extortions, in addition to open-source analysis to establish telephone numbers, emails, or different accounts at which victims could possibly be contacted and pressured to both pay a ransom or re-enter a chat with the ransomware group,” the Federal Bureau of Investigation (FBI) mentioned.

“Sforza additionally mentioned efforts to recruit paid journalists to publish information articles about victims with a view to persuade the victims to take Karakurt’s extortion calls for critically.”

The FBI famous in its grievance that it was capable of hyperlink the net alias “Sforza_cesarini” to Deniss Zolotarjovs by tracing Bitcoin transfers made in September 2021 from a cryptocurrency pockets that was registered to an Apple iCloud account.

The legislation enforcement company additional mentioned a few of the illicit proceeds have been laundered by a number of addresses earlier than arriving at a deposit deal with related to Garantex, particularly a Bitcoin24.professional account bearing the identical electronic mail deal with, prompting it to difficulty a search warrant to Apple in September 2023 for acquiring the information related to the e-mail deal with.

Cybersecurity

From the knowledge shared by the tech large, the FBI mentioned the Rocket.Chat prompt messaging account ID “Sforza_cesarini” was “accessed by the identical IP addresses at or about the identical instances, on a number of events, as these used to entry dennis.zolotarjov@icloud[.]com.”

Zolotarjovs is the primary alleged group member of Karakurt to be arrested and extradited to the U.S., a feat that would pave the way in which for the identification and prosecution of further members sooner or later.

“Karakurt actors have contacted victims’ staff, enterprise companions, and purchasers with harassing emails and telephone calls to strain the victims to cooperate,” the U.S. authorities mentioned in a bulletin final 12 months. “The emails have contained examples of stolen information, akin to social safety numbers, fee accounts, personal firm emails, and delicate enterprise information belonging to staff or purchasers.”

Discovered this text attention-grabbing? Observe us on Twitter and LinkedIn to learn extra unique content material we put up.



The primary triple-screen foldable telephone is across the nook

0


Samsung tri fold foldable concept MWC 2023

Hadlee Simons / Android Authority

TL;DR

  • A HUAWEI govt has reportedly confirmed that the primary triple-screen, dual-folding foldable telephone is launching subsequent month.
  • The machine will apparently function a 10-inch display that may be folded twice right into a smartphone kind issue.

We’ve beforehand seen triple-screen, dual-folding machine ideas from Samsung (see above) and TCL, however leaks recommend that HUAWEI may very well be the primary model to supply a foldable telephone like this. The truth is, an organization govt has even been pictured with the obvious machine twice. Now, it appears like the identical govt has confirmed a launch in September.

In line with outstanding Chinese language tech outlet MyDrivers, client group CEO Richard Yu attended a automotive launch and personally handed over new automobiles to homeowners. One of many homeowners requested Yu after they would be capable to purchase the dual-folding foldable and the chief confirmed that it might be obtainable subsequent month.

We’ve requested HUAWEI about Yu’s reported assertion and can replace the article accordingly. However, we hope to see this triple-screen foldable exterior China in some capability, even when US sanctions imply Google integration isn’t doable. In any case, this could be the primary commercially obtainable dual-folding foldable telephone.

The information additionally comes after Yu was pictured with the obvious machine on two separate events (see above). The pictures certainly appear to point out a dual-folding foldable and a thinner-than-expected kind issue when folded.

Leaks level to the HUAWEI machine providing a 10-inch display when unfurled, handily beating the 7.6-inch to 8-inch screens seen on typical foldable telephones at present. So if you happen to thought the Galaxy Z Fold 6 and Google Pixel 9 Professional Fold screens weren’t sufficiently big, you must regulate this machine.

Acquired a tip? Speak to us! Electronic mail our employees at information@androidauthority.com. You’ll be able to keep nameless or get credit score for the information, it is your alternative.

macOS Sequoia Slated to Launch in Mid-September Alongside iOS 18

0


macOS Sequoia, the latest model of the working system that runs on the Mac, is ready to launch in mid-September, MacRumors has realized. Whereas Apple’s iOS updates are constantly launched in September, macOS launch dates differ, and new Mac updates have been launched in September, October, and November lately.

macOS Sequoia Night Feature
This 12 months, Apple plans to launch ‌macOS Sequoia‌ across the similar time as iOS 18 reasonably than holding it till October. Introducing each updates on the similar time will be certain that cross-platform options are practical and dealing as meant, equivalent to iPhone Mirroring. A key new function, ‌iPhone‌ Mirroring permits an ‌iPhone‌ working ‌iOS 18‌ to be managed utilizing a Mac working ‌macOS Sequoia‌.

Different new options coming to ‌macOS Sequoia‌ embody refreshed window tiling capabilities, a devoted Passwords app, and updates to Safari, Messages, Maps, Notes, and extra.

Apple Intelligence options is not going to be in ‌macOS Sequoia‌ or ‌iOS 18‌ at launch, with Apple as an alternative introducing the performance in subsequent iOS 18.1 and ‌macOS Sequoia‌ 15.1 updates. We anticipate to see these updates launched in October.

Apple is within the last levels of beta testing ‌macOS Sequoia‌ and ‌iOS 18‌ forward of its annual fall iPhone-focused occasion. If Apple sticks with the timing that it has used for the final a number of years, the most definitely occasion date is September 10. If that is the occasion date, new iPhones might launch every week in a while September 20. New iOS updates usually come out on the Wednesday earlier than new iPhones launch, so with that timeline, we might see ‌iOS 18‌ and ‌macOS Sequoia‌ on September 18.

There may be some wiggle room with dates, although, and Apple might choose to carry the occasion later in September, which might change the software program launch date guesstimate. Apple might announce its ‌iPhone‌ occasion as quickly as subsequent week.

Microsoft Delays Recall Launch for Home windows Insider Members Till October


Microsoft’s Recall characteristic, the AI-enabled timeline for Home windows 11 on Copilot+ PCs, shall be out there solely to members of the Home windows Insider Program in October. The characteristic was postponed earlier resulting from issues about unencrypted information storage.

Initially, Microsoft was going to launch a public preview of Recall on June 18, however this was canceled whereas it sought additional group suggestions. The brand new plan was to roll out the characteristic to Home windows Insider members later that month, however this by no means got here to fruition both.

Now, an Aug. 21 replace to a weblog publish by Microsoft Company Vice President of Home windows and Units Pavan Davuluri has revealed the brand new timeline however doesn’t clarify the rationale behind the delays.

“With a dedication to delivering a reliable and safe Recall (preview) expertise on Copilot+ PCs for purchasers, we’re sharing an replace that Recall shall be out there to Home windows Insiders beginning in October,” it mentioned.

“As beforehand shared on June 13, now we have adjusted our launch method to leverage the precious experience of our Home windows Insider group prior to creating Recall out there for all Copilot+ PCs.”

Davuluri additionally mentioned {that a} new weblog with extra particulars shall be shared in October, as soon as the Home windows Insider Program rollout has began. However, if it follows an identical trajectory to different options which might be examined with Home windows Insider members, there may be unlikely to be a basic launch of Recall till weeks or months later.

Recall takes snapshots of a consumer’s exercise on their Copilot+ PC, enabling generative AI to trawl by that exercise to reply questions phrased in pure methods. It could possibly be a profit for performing open-ended searches — corresponding to “Present me the spreadsheet my boss despatched to me yesterday” — however some safety researchers have expressed issues about how that exercise is saved.

Recall characteristic shall be previewed in Home windows Insider Program

Davuluri defined why Recall was solely going to be launched to Home windows Insider members initially within the weblog publish on June 13.

“We’re adjusting the discharge mannequin for Recall to leverage the experience of the Home windows Insider group to make sure the expertise meets our excessive requirements for high quality and safety,” he wrote.

“This determination is rooted in our dedication to offering a trusted, safe and strong expertise for all clients and to hunt further suggestions prior to creating the characteristic out there to all Copilot+ PC customers.”

Microsoft identified that work on Recall is guided by the Safe Future Initiative, an ongoing try to enhance safety strategies and practices.

After Home windows Insider members have an opportunity to offer suggestions, Recall shall be made out there to anybody with a Copilot+ PC.

Folks within the Home windows Insider program can be a part of totally free.

Microsoft switched Recall from lively by default to opt-in

On June 7, Microsoft introduced it could make Recall opt-in as an alternative of enabled by default on Copilot+ PCs after safety issues had been raised.

Whereas the corporate had reassured clients that information from Recall would solely be saved regionally, safety researchers corresponding to Kevin Beaumont identified attackers don’t even want bodily entry to a Copilot+ laptop computer to exfiltrate Recall information.

Microsoft subsequently made the next modifications to how Recall will function:

  • Recall shall be opt-in.
  • To make use of Recall, you’ll have to enroll in Home windows Good day — which helps you to check in with facial recognition, fingerprint, or a PIN as an alternative of a password — and supply proof of presence, corresponding to your face being seen to the laptop computer.
  • Encrypting the search index database Recall makes use of. Knowledge can even stay encrypted till Home windows Good day authentication.

SEE: Interested by Microsoft Copilot? Our cheat sheet has the small print on Redmond’s AI PC plans and extra.

Microsoft faces safety probe

The modifications to Recall got here amid dialogue of Microsoft’s total safety posture within the U.S. Congress. On June 13, Microsoft President Brad Smith spoke to the Home Homeland Safety Committee about a federal report suggesting Microsoft’s safety stance contributed to a breach final 12 months by state actors.

How does Recall examine to Apple Intelligence?

Apple’s reply to Copilot+ PCs is its upcoming Apple Intelligence, created partly by a partnership with OpenAI. Apple Intelligence works largely by letting Siri reply to extra pure questions, in addition to offering the summarization and translation capabilities generative AI is confirmed to carry out. Apple Intelligence runs on-device and on Apple servers when wanted. Because it was solely introduced this week, safety researchers haven’t had as a lot time to dig into how Apple Intelligence works.

However, having waited longer than its rivals to combine AI into its laptops, Apple appears to have a greater consciousness of potential safety issues. At WWDC, Apple’s Craig Federighi, senior vp of software program engineering, mentioned, “You shouldn’t have at hand over all the small print of your life to be warehoused and analyzed in somebody’s AI cloud.”

Fiona Jackson contributed to this text.