Qualcomm thinks long-term by capping its licensing deals

  • In an earnings call yesterday, Qualcomm admitted it would strategically alter its lucrative patent licensing deals.
  • This new, long-term strategy will keep the “golden goose” of Qualcomm licensing chugging along.
  • Qualcomm is also looking ahead to 5G, with which it stands to become even more profitable.

Qualcomm’s business structure is referred to as a “virtuous cycle.” This means that its two divisions – chip-making and patent licensing – provide for each other, in that the chip-making business creates patents and the patent-licensing business fuels R&D for more chips.

Editor’s Pick

This arrangement is incredibly lucrative for Qualcomm, and its earnings call yesterday proved just how far the company would go to preserve that arrangement. During the call, via Reuters, Qualcomm admitted that going forward, it will cap the pricing of specific patent licensing deals to make it cheaper for smartphone manufacturers to use Qualcomm technology in their products.

In other words, Qualcomm is ready to make less money from its “golden goose” patent licensing business in order to keep that business churning along.

Most people think of Qualcomm as a chip-making enterprise, since its Snapdragon line of chips is in almost every major flagship smartphone. However, the bulk of Qualcomm’s money comes from patents it owns that give basic cellular connectivity to smartphones. In other words, if a company wants its devices to connect to a cell tower, it must pay Qualcomm a patent licensing fee.

There are a lot of smartphones out there, and almost all of them are giving a cut of each device sold back to Qualcomm.

Before yesterday’s change, Qualcomm determined the percentage cut of each smartphone by the smartphone’s retail price. For example, an $840 Samsung Galaxy S9 Plus would have a higher licensing fee than the $200 Honor 7x. Now, the percentage cut is capped at a retail price of $400, so a $400 phone and a $1,000 phone both pay the same amount to Qualcomm.

By making it cheaper for companies to use Qualcomm patents, Qualcomm knows that smartphone manufacturers will be more happy to sign new deals, which will keep business secure for at least another couple of years. As a concession, Qualcomm will merely make a little less money than it would have if it kept the original pricing in place. Like I said: long-term thinking.

Editor’s Pick

Qualcomm owns patents that relate heavily to 5G connection technology (which is why Broadcom wanted to buy the company), which means that future 5G-enabled phones will also have to cut licensing deals with Qualcomm. Back in November, Qualcomm dropped the pricing of that licensing to only 3.25 percent, also in an effort to keep its business model strong.

When you’re in Qualcomm’s position – i.e., you make most of your money just by sitting around and watching the cash roll in – you will work very hard to keep that arrangement humming along. Yesterday’s earnings call proves that Qualcomm is smart enough to see that keeping everyone happy with the arrangement is more important than making tons of money right now.

Now if only IBM could go back in time and alter its poor decisions when it comes to licensing…

NEXT: Qualcomm releases chipsets exclusively for IoT hardware

Source: Android Zone

The post Qualcomm thinks long-term by capping its licensing deals appeared first on TuneMaster.ml.

Surprise Giveaway: Win a FREE ExpressVPN Wireless Router ($250 value)

  • We’re giving away a $250 wireless router to one lucky winner
  • The router is equipped with ExpressVPN services
  • First entry is free!

Surprise! Normally we reserve our Givewaways for Sundays, but every once in a while we like to keep you on your toes with a no-warning, mid-week Giveaway!

Variety is the spice of life, no?

This week we’ve got a top of the line VPN router raring to get a new owner, and that lucky someone could be you! The official ExpressVPN router is a Linksys WRT AC3200 natively equipped with one of the most robust virtual private networks on the market.

It’s 2018: if you’re not protecting your privacy online, nobody is going to do it for you anymore. ExpressVPN is our staff’s preferred VPN, and this router gives your entire household protection from prying eyes, freedom from regional restrictions, and full anonymity online.

Stream media from anywhere in the world, browse without having your traffic monitored, and torrent without getting throttled by your ISP… from any computer on your network! Check out the ways you can enter below. You might as well make at least one entry because the first one is on the house:

ExpressVPN Wireless Router Giveaway!

Read also:

Source: Android Zone

The post Surprise Giveaway: Win a FREE ExpressVPN Wireless Router ($250 value) appeared first on TuneMaster.ml.

How to Fix Add Media Button Not Working in WordPress

Recently one of our users reported that the ‘Add Media’ button on their WordPress site has suddenly stopped working. This problem does not display any error or warning which leaves users clueless about why their ‘Add Media’ button is not working. In this article, we will show you how to easily fix the ‘Add Media’ button not working issue in WordPress.

Fixing add media button not working in WordPress

What causes the WordPress ‘Add Media’ Button to Stop Working?

This problem is commonly caused by conflicting scripts or stylesheets loaded by WordPress plugins or themes installed on your site. The default behavior of WordPress is to load all required scripts and stylesheets by combining the requests.

This is usually done in the WordPress admin area to improve performance and speed.

The WordPress post editor uses JavaScript for all buttons on the screen including the add media button. A conflict can stop JavaScript from working which will disable the ‘Add Media’ button.

Add media button stopped working in WordPress

That being said, let’s take a look at how to troubleshoot and fix the ‘Add Media’ button not working in WordPress.

Fixing Add Media Button Not Working Issue in WordPress

The quick fix is to add the following code to your wp-config.php file. You can do this by editing wp-config.php file and adding this code just before the line that says ‘That’s all, stop editing! Happy blogging’.

define('CONCATENATE_SCRIPTS', false );

This code simply tells WordPress to load each script separately which helps avoiding a JavaScript conflict with buggy scripts and the core WordPress features.

After you have added the code, go ahead and the visit post edit screen to see if the add media button is working as expected.

Note: Adding this code is not a proper long-term solution because you still have a script that is causing the issue. An easier way to find the source of the problem is by using the inspect tool. It will show you console errors which can lead you to the source of the conflict.

If you want a long-term fix for this issue, then you need to perform the basic WordPress troubleshooting tips to figure out which plugin or theme may be causing the issue.

We strongly recommend that you do this on your staging site instead of a live site. Here’s a step by step guide on how to create a WordPress staging site. All the best WordPress hosting companies like Bluehost, SiteGround, WP Engine, and Liquid Web offer 1-click staging functionality.

On your staging site, you need to start by deactivating all your WordPress plugins and then check if it fixed the ‘Add Media’ button. If it does, then this means one of the plugins was causing the issue.

Deactivate all plugins

You can now activate the plugins one-by-one, and after activating a plugin check the ‘Add Media’ button. This will help you find out which plugin is causing the issue. After you find the culprit, you can replace it with another plugin or ask plugin author for help.

If deactivating plugins doesn’t solve the issue, then the next step is to temporarily switch to a default WordPress theme like Twenty Seventeen.

Switch to a default WordPress theme

If switching to the default theme fixes the issue for you, then this means your theme is causing the conflict. You can ask theme author for support or switch to a different WordPress theme.

Once you find the source of the problem on your staging site, then you can apply the fix on your live WordPress site.

We hope this article helped you learn how to fix add media button not working in WordPress. You may also want to see our list of the most common WordPress errors and how to fix them.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post How to Fix Add Media Button Not Working in WordPress appeared first on WPBeginner.

Source: Wordpres

The post How to Fix Add Media Button Not Working in WordPress appeared first on TuneMaster.ml.