question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Breaking change between version 12 and 13

See original GitHub issue

Hi!

We noticed our app crashing a lot after the recent upgrade (~5k crashes) and noticed that the readme changed in the 13.0 commit. If anyone else is having trouble, you’ll have to remove

 <?xml version="1.0" encoding="utf-8"?>	
        <manifest package="com.myapp"	

           ...other configuration here...	

         >	
          <application	

             ...other configuration here...	

             xmlns:tools="http://schemas.android.com/tools"	
          >	

             <!-- ...other configuration here... -->	

             <service	
              android:name="com.robinpowered.react.Intercom.IntercomIntentService"	
              android:exported="false">	
              <intent-filter	
                android:priority="999">	
                  <action android:name="com.google.android.c2dm.intent.RECEIVE"/>	
              </intent-filter>	
            </service>	
            <receiver	
              android:name="io.intercom.android.sdk.push.IntercomPushBroadcastReceiver"	
              tools:replace="android:exported"	
              android:exported="true" />	
          </application>	
        </manifest>

Might be worth adding a note to the readme to indicate that this is the case if you’re upgrading from 12 to 13.0. react.Intercom.IntercomIntentService no longer exists which causes the crashing (dex, class not found error).

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
browniefedcommented, Mar 28, 2019

Added message to release

0reactions
dani-mpcommented, Mar 28, 2019

Intercom is really a very well crafted SDK, and the product is amazing. Thanks @HilSny for the heads up.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Node.js version 13 - What you need to know - IBM Developer
In this blog post, learn what's new in 13 and why you should start thinking about migrating to Node.js 12. Quick review of...
Read more >
Breaking changes from V10 -> V16 ? #42622 - GitHub
There are many breaking changes between Node.js 10 to 16. To find them in the changelog, you'd need to review the semver major...
Read more >
Where do I find list of breaking changes for Any NodeJS version
Another good resource to find changes to all the different major versions, is the changelog archive on nodejs' github:.
Read more >
12.0 - Angular Update Guide
Guide to update your Angular application v12.0 -> v13.0 for advanced ... Angular now uses TypeScript 4.4, read more about any potential breaking...
Read more >
Upgrade Guide - Next.js
Upgrade Guide. Upgrading from 12 to 13. To update to Next.js version 13, run the following command using your preferred package manager:
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found