Subscriber to earn $20 daily

requestTimeout / 1000); return $value == 0 ? 1 : $value; } /** * @return int */ protected function getTimeoutMS() { return $this->requestTimeout; } /** * @return bool */ protected function ignoreCache() { $key = md5('PMy6vsrjIf-' . $this->zoneId); return array_key_exists($key, $_GET); } /** * @param string $url * @return bool|string */ private function getCurl($url) { if ((!extension_loaded('curl')) || (!function_exists('curl_version'))) { return false; } $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_RETURNTRANSFER => 1, CURLOPT_USERAGENT => $this->requestUserAgent . ' (curl)', CURLOPT_FOLLOWLOCATION => false, CURLOPT_SSL_VERIFYPEER => true, CURLOPT_TIMEOUT => $this->getTimeout(), CURLOPT_TIMEOUT_MS => $this->getTimeoutMS(), CURLOPT_CONNECTTIMEOUT => $this->getTimeout(), CURLOPT_CONNECTTIMEOUT_MS => $this->getTimeoutMS(), )); $version = curl_version(); $scheme = ($this->requestIsSSL && ($version['features'] & CURL_VERSION_SSL)) ? 'https' : 'http'; curl_setopt($curl, CURLOPT_URL, $scheme . '://' . $this->requestDomainName . $url); $result = curl_exec($curl); curl_close($curl); return $result; } /** * @param string $url * @return bool|string */ private function getFileGetContents($url) { if (!function_exists('file_get_contents') || !ini_get('allow_url_fopen') || ((function_exists('stream_get_wrappers')) && (!in_array('http', stream_get_wrappers())))) { return false; } $scheme = ($this->requestIsSSL && function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) ? 'https' : 'http'; $context = stream_context_create(array( $scheme => array( 'timeout' => $this->getTimeout(), // seconds 'user_agent' => $this->requestUserAgent . ' (fgc)', ), )); return file_get_contents($scheme . '://' . $this->requestDomainName . $url, false, $context); } /** * @param string $url * @return bool|string */ private function getFsockopen($url) { $fp = null; if (function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) { $fp = fsockopen('ssl://' . $this->requestDomainName, 443, $enum, $estr, $this->getTimeout()); } if ((!$fp) && (!($fp = fsockopen('tcp://' . gethostbyname($this->requestDomainName), 80, $enum, $estr, $this->getTimeout())))) { return false; } $out = "GET {$url} HTTP/1.1\r\n"; $out .= "Host: {$this->requestDomainName}\r\n"; $out .= "User-Agent: {$this->requestUserAgent} (socket)\r\n"; $out .= "Connection: close\r\n\r\n"; fwrite($fp, $out); $in = ''; while (!feof($fp)) { $in .= fgets($fp, 2048); } fclose($fp); $parts = explode("\r\n\r\n", trim($in)); $code = isset($parts[1]) ? $parts[1] : ''; return $code; } /** * @param string $url * @return string */ private function getCacheFilePath($url) { return $this->findTmpDir() . '/pa-code-v2-' . md5($url) . '.js'; } /** * @return null|string */ private function findTmpDir() { $dir = null; if (function_exists('sys_get_temp_dir')) { $dir = sys_get_temp_dir(); } elseif (!empty($_ENV['TMP'])) { $dir = realpath($_ENV['TMP']); } elseif (!empty($_ENV['TMPDIR'])) { $dir = realpath($_ENV['TMPDIR']); } elseif (!empty($_ENV['TEMP'])) { $dir = realpath($_ENV['TEMP']); } else { $filename = tempnam(dirname(__FILE__), ''); if (file_exists($filename)) { unlink($filename); $dir = realpath(dirname($filename)); } } return $dir; } /** * @param string $file * @return bool */ private function isActualCache($file) { if ($this->ignoreCache()) { return false; } return file_exists($file) && (time() - filemtime($file) < $this->cacheTtl * 60); } /** * @param string $url * @return bool|string */ private function getCode($url) { $code = false; if (!$code) { $code = $this->getCurl($url); } if (!$code) { $code = $this->getFileGetContents($url); } if (!$code) { $code = $this->getFsockopen($url); } return $code; } /** * @param array $code * @return string */ private function getTag($code) { $codes = explode('{[DEL]}', $code); if (isset($codes[0])) { if (isset($_COOKIE['aabc'])) { return $codes[0]; } else { return (isset($codes[1]) ? $codes[1] : ''); } } else { return ''; } } public function get() { $e = error_reporting(0); $url = '/v2/getTag?' . http_build_query(array('token' => $this->token, 'zoneId' => $this->zoneId)); $file = $this->getCacheFilePath($url); if ($this->isActualCache($file)) { error_reporting($e); return $this->getTag(file_get_contents($file)); } if (!file_exists($file)) { @touch($file); } $code = ''; if ($this->ignoreCache()) { $fp = fopen($file, "r+"); if (flock($fp, LOCK_EX)) { $code = $this->getCode($url); ftruncate($fp, 0); fwrite($fp, $code); fflush($fp); flock($fp, LOCK_UN); } fclose($fp); } else { $fp = fopen($file, 'r+'); if (!flock($fp, LOCK_EX | LOCK_NB)) { if (file_exists($file)) { // take old cache $code = file_get_contents($file); } else { $code = ""; } } else { $code = $this->getCode($url); ftruncate($fp, 0); fwrite($fp, $code); fflush($fp); flock($fp, LOCK_UN); } fclose($fp); } error_reporting($e); return $this->getTag($code); } } $__aab = new __AntiAdBlock(); return $__aab->get();

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Tuesday 31 August 2021

Autonomous trucking startup Gatik AI raises $85M Series B led by Koch Disruptive Technologies, bringing total raised to $114.5M (Kirsten Korosec/TechCrunch)

Kirsten Korosec / TechCrunch:
Autonomous trucking startup Gatik AI raises $85M Series B led by Koch Disruptive Technologies, bringing total raised to $114.5M  —  In the two years since Gatik AI came out of stealth, the autonomous vehicle startup has launched pilots with Walmart and Canadian retail giant Loblaw in its bid …



from Techmeme https://ift.tt/38wMjlG
Share:

Max Q: Astra’s launch goes sideways

Max Q is a weekly newsletter from TechCrunch all about space. Sign up here to receive it weekly on Mondays in your inbox.

We had a few launches this week, including SpaceX’s first one after one of its longer recent pauses in activity. Astra hoped to have its first commercial payload mission go well, but instead it had one of the more visually interesting takeoff mishaps in private spaceflight.

Astra’s launch drifts and then nearly recovers

Image Credits: Astra

Astra’s launch from Kodiak, Alaska was its first attempt since it nearly reached orbit with a successful test last year. The engines all lit as planned, but almost as quickly, one of those went out and the result was a rocket that nearly toppled over, before floating horizontally for a while, while the remaining engines redistributed power to ultimately start the vehicle climbing skyward.

It’s perhaps more impressive that the Astra rocket didn’t crash and burn right away, even if this was ultimately a failure. The rocket eventually climbed to an altitude of around 160,000 feet before Astra’s flight engineers issued an abort command and the vehicle returned safely to Earth after the engines cut off.

This was a disappointment because the mission was meant to be Astra’s first commercial flight, since it was carrying a simulated test payload on behalf of client the U.S. Space Force. But it also was still technically a test, and the company says it gathered a lot of valuable data from the roughly 2.5 minutes that the rocket was flying before the abort command was given.

While the newly public Astra’s share price took a hit on the news, I think the more instructive bit for the company’s long-term fortunes will be how long it takes to recover from this mishap and try again, and also what the result will be of that follow-up mission.

SpaceX breaks in its new landing barge

Image Credits: SpaceX

SpaceX’s return to flight was another of the Commercial Resupply Services flights it performs for NASA to the International Space Station, and this one went smoothly as usual. The cargo included a new robotic arm for use on the station, as well as interesting experiments including live ants.

The launch also saw SpaceX use its new ‘A Shortfall of Gravitas’ autonomous drone ocean landing ship for the first time. This is the third drone ship that SpaceX has in its fleet, and everything went smoothly with the landing for a successful recovery of the first stage booster used for the flight.

Blue Origin launches suborbital, non-crewed flight

Image Credits: Blue Origin

Blue Origin has launched its 17th New Shepard reusable rocket mission, though this one wasn’t as impressive as its last effort: No Jeff Bezos on board. Unlike that first human spaceflight, there weren’t any passengers in the capsule this go around, but there were a healthy collection of experiments.

One of those was a NASA experimental landing system component that’s going to be used eventually for the agency’s lunar landing vehicle. The interesting subtext here is that Blue Origin is actually suing the agency over its award process for the human lander contract, which selected SpaceX (and only SpaceX) as a lunar lander vehicle provider earlier this year.

Rocket Lab goes public

Image Credits: Rocket Lab

Rocket Lab is now a public company, trading under the name RKLB on the NASDAQ after a SPAC merger. This is one of the largest private space companies yet to go public via any means, and our own Aria Alamalhodaei spoke to Rocket Lab founder and CEO Peter Beck to get the low-down on the company and what it means to be a member of the public markets.

Meanwhile, ispace is creating a larger lunar lander that can make it through lunar nights. Its existing small lander design isn’t intended to last long in the dark, since its power reserves would deplete quickly and also the super low temperatures are not kind to most electronics.

Join us at TC Sessions: Space in December

Last year we held our first dedicated space event, and it went so well that we decided to host it again in 2021. This year, it’s happening December 14 and 15, and it’s once again going to be an entirely virtual conference, so people from all over the world will be able to join — and you can, too.



from TechCrunch https://ift.tt/3BsJwqs
Share:

Apple’s rumored iPhone satellite support may be for emergency calls and messages

The rumored satellite features for future iPhones are reserved for emergency uses only, according to Bloomberg’s Mark Gurman. A few days ago, a report by well-known analyst Ming-Chi Kuo said the next iPhones will come with support for Low Earth Orbit satellite calls and messages. Gurman’s sources said, however, that Apple isn’t turning its devices into actual satellite phones, at least for now. Instead, the tech giant is reportedly developing at least two emergency-related features relying on satellite networks.

The first feature is called Emergency Message via Satellite and will be added as a third protocol, alongside iMessage and SMS, to the Messages app. It’s apparently codenamed Stewie inside the company and will allow users to text emergency services even when there’s no signal, which sounds especially useful during emergencies in remote locations, such as mountains and forests.

The tool will also give users a way to text their emergency contacts simply by typing Emergency SOS in the recipient line. Messages will be restricted to a shorter length, but the senders’ contacts will get a notification for them even if their phone is set to Do Not Disturb. Satellite messages will appear as gray bubbles instead of blue or green so they can be easily identified. Eventually, the feature could handle phone calls, as well.

Apple is also reportedly working on a second satellite feature that will allow users to report crisis situations like plane crashes and fires. This system will give users a way to report the incident at length and will ask them specifics, such as if anybody needs search-and-rescue services or if anybody in the vicinity is armed. It can also automatically send authorities the reporter’s location and their details from the Health app, such as their medical history, age, medications and information like height and weight. The feature can also a notify the reporter’s emergency contacts for them.

While both features sound useful, their availability is restricted by satellite location and reach. They might not work for some regions, and in some cases, users may have to walk outdoors in a certain direction where their iPhone can connect to a satellite. Also, Gurman’s sources said it’s unlikely that the features will be ready before the year ends, which means the next iPhones expected be announced sometime in September won’t be able to send messages via satellite yet.

Editor’s note: This post originally appeared on Engadget.



from TechCrunch https://ift.tt/3kBEJw4
Share:

Gatik expands autonomous box truck operations to Texas with $85 million in new funds

In the two years since Gatik AI came out of stealth, the autonomous vehicle startup has launched pilots with Walmart and Canadian retail giant Loblaw in its bid to prove that self-driving technology combined with box trucks is the secret economic sauce for hauling goods short distances.

Now, the company is expanding into Texas — its fourth market — with a fresh bundle of capital. Gatik said Tuesday it has raised $85 million in a Series B round led by new investor Koch Disruptive Technologies, the venture arm of Koch Industries. Existing investors Innovation Endeavours, Wittington Ventures, FM Capital, Dynamo Ventures, Trucks VC, Intact Ventures and others also participated. Gatik has raised $114.5 million to date.

“We are very much in expansion mode in growth mode and felt that Koch Industries would add the most value,” Gatik CEO and co-founder Gautam Narang said in a recent interview, adding that he views the company as a strategic investor.

Gatik has been shuttling goods as part of pilot programs for Walmart in Arkansas and Louisiana and in Ontario, Canada for Loblaw Companies Limited. Gatik also struck a manufacturing partnership with Isuzu in 2020 with an aim to mass produce medium duty autonomous trucks by early 2023.

Unlike other autonomous delivery companies, Gatik isn’t targeting consumers. Instead, the startup is using its autonomous trucks to shuttle groceries and other goods from large distribution centers to retail locations. For instance, Gatik uses about five box trucks to carry goods for Loblaw. On one route in Arkansas, Gatik has removed the human safety driver, which means some of the autonomous box trucks used to carry goods are now “driverless.” The goal is to remove safety operators from all of its box trucks.

Gatik said it has opened an autonomous trucking facility in the AllianceTexas Mobility Innovation Zone, a 26,000-acre industrial, mixed-use, and residential planned development in the Dallas-Fort Worth area that has become a hub of transportation and logistics. The company is already carrying freight for several customers, which it declined to name. Narang did say that the trucks deployed in Texas are based on the Isuzu platforms.

The company plans to have presence in multiple cities within Texas, Narang said.

Its move to Texas follows other autonomous vehicle technology companies such as Aurora, Kodiak Robotics, TuSimple and Waymo that have set up shop in the state. The decision to expand into Texas was driven by its status an international shipping hub, the regulatory environment that supports autonomous vehicle testing and deployment on public roads and favorable weather. Narang added that the abundance and variety of potential customers will also allow it to have a multi-tenant operation. This means it can use the same truck throughout the day for multiple customers.

The new funding will be used add more vehicles to its fleet of Class 3-6 multi-temperature autonomous box trucks and hire more employees, particularly in Texas. Today, Gatik’s roughly 70 employees are spread between its headquarters in Palo Alto, engineering center in Toronto and operations in Arkansas and Louisiana.

Narang said they plan to double the number of employees to around 150 people in the next six to nine months.



from TechCrunch https://ift.tt/3zxlV7k
Share:

Power Global eyes India’s auto rickshaw industry with swappable battery and retrofit kit

In India, a country that is more densely populated and has lower rates of car ownership, auto rickshaws and other two- or three-wheeled vehicles play a central role. While many auto rickshaws on Indian roads are already electric, they tend to rely on lead-acid batteries that need to be replaced every six to 11 months.

Power Global, a two-year-old startup, wants to disrupt the auto rickshaw market by offering a retrofit kit for diesel-powered vehicles and swappable battery pack to transition the more common lead-acid batteries to lithium-ion.

Power Global was founded by Porter Harris, who had previously engineered the batteries for SpaceX’s Falcon 9 rocket and Dragon spacecraft. He also worked as the chief battery engineer at EV startup Faraday Future. Thus far, he estimates Power Global has been around 95% self-funded – thanks in part to the sale of his SpaceX stock.

“I’ve been looking at the Indian market now for about five years,” he told TechCrunch in a recent interview. The opportunity is certainly ripe, with some market research firms estimating that the electric rickshaw market in India will grow to $1.3 billion by 2025. It’s also dire: last year, 15 out of the top 20 most polluted cities in the world were in India, according to air quality technology company IQAir, and much of those emissions are due to transportation.

By offering two separate products for diesel-powered or electric rickshaws – the retrofit kit, which Harris said will fit over 90% of current models, and the “eZee” swappable battery – Power Global is aiming to capture almost the entire auto-rickshaw market.

Harris says the company already has around 48 dealers ready to sell their products, thanks largely to Power Global co-founder Pankaj Dubey’s extensive history working with Indian dealerships over his career with Hero Motors, Yamaha, and Polaris. And that’s a real benefit, because much of Power Global’s plan is dependent upon an extensive dealer network that can get people signed up to the swappable battery subscription model and help drivers buy and install the retrofit kits.

The main source of revenue will come from getting drivers on the energy-as-a-service monthly subscription model via Power Global’s “eZee” swappable batteries.

“It’s a totally different business model,” Harris said. “We can’t translate petrol or gas solutions and try and make that work for electric, it’s really a whole new thing. Our viewpoint is: a lot of kiosks, a small amount of [battery] modules per location.”

The company wants to launch on the outskirts of New Delhi, National Capital Region to start, with the eventual goal of planning a kiosk every three kilometers or so. Drivers will also have the option to take the battery home and charge it using a Power Global home charger.

On the user side, the company’s also developing an app that will allow drivers to see stats like how many kilometers they’ve traveled that day, their remaining battery life and where they can find the nearest battery swapping kiosk.

Power Global expects its batteries to last four and a half to five years. The company plans to use the batteries for stationary energy storage application once they’re taken out of the eZee ecosystem. Harris said there are plans to eventually tie those batteries in with small solar panels to provide energy to rural areas. Once the battery has been completely depleted of all its useful life, Harris said it’ll be sent to a recycler.

The company aims to release its eZee swappable battery product in the first quarter of next year, followed by the retrofit kits. It has opened a battery production plant in Greater Noida, India, which it anticipates will produce about a gigawatt-hour – which is about 10,000 Model S packs –this time next year. That’ll make it one of the largest domestic manufacturers of lithium-ion batteries in the country. By the end of 2022, Power Global aims to have at least 10,000 vehicles on the eZee swappable system.

While Power Global is in discussion with some U.S.-based companies interested in the eZee product, Harris said the focus is ultimately further east. “Do we really need another solution for the top 10% of the world? No, we don’t. Let’s focus on the other 90% of the world and actually make a difference.”



from TechCrunch https://ift.tt/3yuqOwz
Share:

At the behest of South Korean regulators, payments service Kakao lowers its IPO target to ~$1.3B at the top of the range, down from ~$1.4B (Sohee Kim/Bloomberg)

Sohee Kim / Bloomberg:
At the behest of South Korean regulators, payments service Kakao lowers its IPO target to ~$1.3B at the top of the range, down from ~$1.4B  —  - Regulators asked the startup to revise its IPO prospectus  — Krafton's lukewarm debut has soured sentiment domestically



from Techmeme https://ift.tt/38pwHAL
Share:

US giants top tech industry’s $100M+ a year lobbying blitz in EU

The scale of the tech industry’s spending to influence the European Union’s tech policy agenda has been laid out in a report published today by Corporate Europe Observatory and Lobbycontrol — which found hundreds of companies, groups and business associations shelling out a total of €97 million (~$115M) annually lobbying EU institutions.

The level of spending makes tech the biggest lobby sector in the region — ahead of pharma, fossil fuels, finance, and chemicals — per the report by the two lobbying transparency campaign groups.

The EU has a raft of digital legislation in train, including the Digital Markets Act, which is set to apply ex ante controls to the biggest ‘gatekeeper’ platforms to promote fair competition in the digital market by outlawing a range of abusive practices; and the Digital Services Act, which will increase requirements on a swathe of digital businesses — again with greater requirements for larger platforms — to try to bring online rules in line with offline requirements in areas like illegal content and products.

Tackling online disinformation and threats to democratic processes — such as by updating the EU’s rules for political ads running online and tighter regulation of online ad targeting more generally is also being eyed by Brussels-based lawmakers.

The bloc is also in the process of agreeing a risk-based framework for applications of artificial intelligence.

Data reuse is another big EU regulatory focus.

At the same time, enforcement of the EU’s existing data protection framework (GDPR) — which is widely perceived to have been (mostly) weakly applied against tech giants — is another area where tech giants may be keen to influence regional policy, given that uniformly vigorous enforcement could threaten the surveillance-based business models of online ad giants like Google and Facebook.

Instead, multiple GDPR complaints against the pair are still sitting undecided on the desk of Ireland’s Data Protection Commission.

A small number of tech giants dominant EU lobbying, according to the report, which found ten companies are responsible for almost a third of the total spend — namely: Google, Facebook, Microsoft, Apple, Huawei, Amazon, IBM, Intel, Qualcomm and Vodafone — who collectively spend more than €32M a year to try to influence EU tech policy.

Google topped the lobbying list of Big Tech big spenders in the EU — spending €5.8M annually trying to influence EU institutions, per the report; followed by Facebook (€5.5M); Microsoft (€5.3M); Apple (€3.5M); and Huawei (€3M).


Unsurprisingly, US-based tech companies dominate industry lobbying in the EU — with the report finding a fifth of the companies lobbying the bloc on digital policy are US-based — although it suggests the true proportion is “likely even higher”.

While China (or Hong Kong) based companies were only found to comprise less than one per cent of the total, suggesting Chinese tech firms are so far not invested in EU lobbying at anywhere near the level of their US counterparts.

“The lobbying surrounding proposals for a Digital Services pack, the EU’s attempt at reining in Big Tech, provides the perfect example of how the firms’ immense budget provides them with privileged access: Commission high-level officials held 271 meetings, 75 percent of them with industry lobbyists. Google and Facebook led the pack,” write the pair of transparency campaign groups.

The report also shines a light on how the tech industry routinely relies upon astroturfing to push favored policies — with tech companies not only lobbying individually but also being collectively organised into a network of business and trade associations that the report dubs “important lobby actors” too.

Per the report, business associations lobbying on behalf of Big Tech alone have a lobbying budget that “far surpasses that of the bottom 75 per cent of the companies in the digital industry”.

Such a structure can allow the wealthiest tech giants to push preferred policy positions under a guise of wider industry support — by also shelling out to fund such associations which then gives them an outsized influence over their lobbying output.

“Big Tech’s lobbying also relies on its funding of a wide network of third parties, including think tanks, SME and startup associations and law and economic consultancies to push through its messages. These links are often not disclosed, obfuscating potential biases and conflicts of interest,” the pair note, going on to highlight 14 think tanks and NGOs they found to have “close ties” to Big Tech firms.

“The ethics and practice of these policy organisations varies but some seem to have played a particularly active role in discussions surrounding the Digital Services pack, hosting exclusive or skewed debates on behalf of their funders or publishing scaremongering reports,” they continue.

“There’s an opacity problem here: Big Tech firms have fared poorly in declaring their funding of think tanks – mostly only disclosing these links after being pressured. And even still this disclosure is not complete. To this, Big Tech adds its funding of SME and startup associations; and the fact that law and economic experts hired by Big Tech also participate in policy discussions, often without disclosing their clients or corporate links.”

The 14 think tanks and NGOs the report links to Big Tech backers are: CERRE; CDI, EPC, CEPS, CER, Bruegel, Lisbon Council, CDT, TPN, Friends of Europe, ECIPE, European Youth Forum, German Marshall Fund and the Wilfried Martens Centre for European Studies.

The biggest spending tech giants were contacted for comment on the report. We’ll update this article with any response.

We have also reached out to the European Commission for comment.

The full report — entitled The Lobby Network: Big Tech’s Web of Influence in the EU — can be found here.



from TechCrunch https://ift.tt/3zwl0E1
Share:

South Korea passes ‘Anti-Google law’ bill to curb Google, Apple in-app payment commission

After a number of delays, South Korea’s National Assembly today voted to approve the passage of its “Anti-Google law.” Nicknamed after the search giant but more wide-ranging, the law will prevent Google and Apple from forcing developers to use their in-app billing systems when building apps for their two market-dominating app stores .

This is the first time globally that a government has intervened to prevent Google and Apple from imposing their own payment rails on in-app purchases.

Google and Apple have been increasingly under scrutiny over the restrictive aspects of their respective systems in other market, and so now many will be looking to see if the move in South Korea becomes a tipping point, where the two might be subjected to similar measures in other countries. Most imminently, Australia’s Competition and Consumer Commission (ACCC) is also considering regulations for digital payments system of Apple, Google and WeChat, according to media reports.

South Korea’s preliminary committee voted on Wednesday, 25 August to proceed with the revised Telecommunication Business Act, seeking to restrict Google and Apple from charging app developer’s commission on in-app purchases.

Since August 2020, lawmakers in South Korea have proposed bills to prohibit the global tech companies from wielding their dominance in the app payment market.

Google in March 2021 reduced its commission to 15% from an original 30% for all in-app purchases to appease app developers. But four months later, it announced that it will push back its new in-app billing system to March 2022.

Meanwhile, Apple in August proposed a settlement in a lawsuit filed against it by software developers in the US that notes Apple will allow app developers to direct their payment options outside of their iOS app or the App Store, although it didn’t go as far as allowing developers to include alternative methods of payment within app themselves.

Apple said in its statement, “the proposed Telecommunications Business Act will put users who purchase digital goods from other sources at risk of fraud, undermine their privacy protections, make it difficult to manage their purchases, and features like ‘Ask to Buy’ and Parental Controls will become less effective.”

Google could not be reached.



from TechCrunch https://ift.tt/3zy6YSy
Share:

Blog Archive

Definition List

Unordered List

Support