How to fix app crash on recieving FCM Push Notification built on FlutterHow to handle notification when app in background in FirebaseNo static method zzUr() in Firebase when I try to use Analytics with NotificationsiOS: Firebase token returning nullFirebase Initialized but not able to get token (Xamarin.Android)Try send message to test if FCM works but the app crashFlutter FCM Push Notification Not Working when app is in foregroundFirebase Messaging Error(Android only) - Fatal Exception on new Push NotificationFlutter App - FCM - Android not sending NotificationsAutomatically open app when receive push notification for FCM (Flutter)Launch a service or action on getting FCM notification in Flutter
Applicants clearly not having the skills they advertise
Can a magnetic field of a large body be stronger than its gravity?
Is it OK to bring delicacies from hometown as tokens of gratitude for an out-of-town interview?
If a problem only occurs randomly once in every N times on average, how many tests do I have to perform to be certain that it's now fixed?
What is the best option to connect old computer to modern TV
What is a simple, physical situation where complex numbers emerge naturally?
Why use water tanks from a retired Space Shuttle?
Can those paralyzed by the Hold Person spell be forcibly moved?
Can an old DSLR be upgraded to match modern smartphone image quality
Accidentally cashed a check twice
Can you please explain this joke: "I'm going bananas is what I tell my bananas before I leave the house"?
How do I get a cleat that's stuck in a pedal, detached from the shoe, out?
Why is Colorado so different politically from nearby states?
Hygienic footwear for prehensile feet?
Homophone fills the blanks
Is there any Biblical Basis for 400 years of silence between Old and New Testament?
Do I add my ability modifier to the damage of the bonus-action attack granted by the Crossbow Expert feat?
How can I add depth to my story or how do I determine if my story already has depth?
Relativistic resistance transformation
Is it grammatical to use "car" like this?
How to detach yourself from a character you're going to kill?
PhD student with mental health issues and bad performance
Word for a small burst of laughter that can't be held back
What is the right way to float a home lab?
How to fix app crash on recieving FCM Push Notification built on Flutter
How to handle notification when app in background in FirebaseNo static method zzUr() in Firebase when I try to use Analytics with NotificationsiOS: Firebase token returning nullFirebase Initialized but not able to get token (Xamarin.Android)Try send message to test if FCM works but the app crashFlutter FCM Push Notification Not Working when app is in foregroundFirebase Messaging Error(Android only) - Fatal Exception on new Push NotificationFlutter App - FCM - Android not sending NotificationsAutomatically open app when receive push notification for FCM (Flutter)Launch a service or action on getting FCM notification in Flutter
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have built an app on Flutter and was trying to send Push Notifications through FCM. Earlier it was working but after changing the version of Firebase messaging the app crashes as soon as I send a push notification.
I haven't made any changes in the Code per se. I looked into the GitHub issues but couldn't resolve it.
This is the code I have been using in the main.dart file.
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();
void initState() {
super.initState();
_firebaseMessaging.configure(
onMessage: (Map<String, dynamic> message)
print('on message $message');
,
onResume: (Map<String, dynamic> message)
print('on resume $message');
,
onLaunch: (Map<String, dynamic> message)
print('on launch $message');
,
);
_firebaseMessaging.requestNotificationPermissions(
const IosNotificationSettings(sound: true, badge: true, alert: true));
_firebaseMessaging.getToken().then((token)
print(token);
);
My firebase_messaging dependency
firebase_messaging: ^1.0.2
I had also changed the version of google-services in app/build.gradle
dependencies
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.google.gms:google-services:3.2.0'
This is the part added to the AndroidManifest.xml file for notifications
<intent-filter>
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
The Device Log
03-24 19:14:25.044 2630 2663 I ActivityManager: Start proc 17709:com.example.notif_app/u0a206 for broadcast com.example.notif_app/com.google.firebase.iid.FirebaseInstanceIdReceiver
03-24 19:14:25.047 17709 17709 I art : Late-enabling -Xcheck:jni
03-24 19:14:25.181 17709 17709 D FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
03-24 19:14:25.182 17709 17709 D FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
03-24 19:14:25.182 17709 17709 I FirebaseInitProvider: FirebaseApp initialization successful
03-24 19:14:25.199 17709 17730 I ResourceExtractor: Found extracted resources res_timestamp-1-1553431828587
03-24 19:14:25.206 17709 17727 I FA : App measurement is starting up, version: 15300
03-24 19:14:25.206 17709 17727 I FA : To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
03-24 19:14:25.207 17709 17727 I FA : To enable faster debug mode event logging run:
03-24 19:14:25.207 17709 17727 I FA : adb shell setprop debug.firebase.analytics.app com.example.notif_app
03-24 19:14:25.220 17709 17709 D AndroidRuntime: Shutting down VM
03-24 19:14:25.221 17709 17709 E AndroidRuntime: FATAL EXCEPTION: main
03-24 19:14:25.221 17709 17709 E AndroidRuntime: Process: com.example.notif_app, PID: 17709
03-24 19:14:25.221 17709 17709 E AndroidRuntime: java.lang.NoSuchMethodError: No static method zzad()Lcom/google/firebase/iid/zzan; in class Lcom/google/firebase/iid/zzan; or its super classes (declaration of 'com.google.firebase.iid.zzan' appears in /data/app/com.example.notif_app-1/base.apk:classes2.dex)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at com.google.firebase.messaging.FirebaseMessagingService.zzb(Unknown Source)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at com.google.firebase.iid.zzb.onStartCommand(Unknown Source)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3318)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at android.app.ActivityThread.-wrap21(ActivityThread.java)
Can anyone help me with this? Thanks in advance.
flutter firebase-cloud-messaging flutter-dependencies
|
show 2 more comments
I have built an app on Flutter and was trying to send Push Notifications through FCM. Earlier it was working but after changing the version of Firebase messaging the app crashes as soon as I send a push notification.
I haven't made any changes in the Code per se. I looked into the GitHub issues but couldn't resolve it.
This is the code I have been using in the main.dart file.
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();
void initState() {
super.initState();
_firebaseMessaging.configure(
onMessage: (Map<String, dynamic> message)
print('on message $message');
,
onResume: (Map<String, dynamic> message)
print('on resume $message');
,
onLaunch: (Map<String, dynamic> message)
print('on launch $message');
,
);
_firebaseMessaging.requestNotificationPermissions(
const IosNotificationSettings(sound: true, badge: true, alert: true));
_firebaseMessaging.getToken().then((token)
print(token);
);
My firebase_messaging dependency
firebase_messaging: ^1.0.2
I had also changed the version of google-services in app/build.gradle
dependencies
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.google.gms:google-services:3.2.0'
This is the part added to the AndroidManifest.xml file for notifications
<intent-filter>
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
The Device Log
03-24 19:14:25.044 2630 2663 I ActivityManager: Start proc 17709:com.example.notif_app/u0a206 for broadcast com.example.notif_app/com.google.firebase.iid.FirebaseInstanceIdReceiver
03-24 19:14:25.047 17709 17709 I art : Late-enabling -Xcheck:jni
03-24 19:14:25.181 17709 17709 D FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
03-24 19:14:25.182 17709 17709 D FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
03-24 19:14:25.182 17709 17709 I FirebaseInitProvider: FirebaseApp initialization successful
03-24 19:14:25.199 17709 17730 I ResourceExtractor: Found extracted resources res_timestamp-1-1553431828587
03-24 19:14:25.206 17709 17727 I FA : App measurement is starting up, version: 15300
03-24 19:14:25.206 17709 17727 I FA : To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
03-24 19:14:25.207 17709 17727 I FA : To enable faster debug mode event logging run:
03-24 19:14:25.207 17709 17727 I FA : adb shell setprop debug.firebase.analytics.app com.example.notif_app
03-24 19:14:25.220 17709 17709 D AndroidRuntime: Shutting down VM
03-24 19:14:25.221 17709 17709 E AndroidRuntime: FATAL EXCEPTION: main
03-24 19:14:25.221 17709 17709 E AndroidRuntime: Process: com.example.notif_app, PID: 17709
03-24 19:14:25.221 17709 17709 E AndroidRuntime: java.lang.NoSuchMethodError: No static method zzad()Lcom/google/firebase/iid/zzan; in class Lcom/google/firebase/iid/zzan; or its super classes (declaration of 'com.google.firebase.iid.zzan' appears in /data/app/com.example.notif_app-1/base.apk:classes2.dex)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at com.google.firebase.messaging.FirebaseMessagingService.zzb(Unknown Source)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at com.google.firebase.iid.zzb.onStartCommand(Unknown Source)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3318)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at android.app.ActivityThread.-wrap21(ActivityThread.java)
Can anyone help me with this? Thanks in advance.
flutter firebase-cloud-messaging flutter-dependencies
add the error output.
– Ryosuke
Mar 24 at 12:32
@Ryosuke when the app crashed there was no error log in the logcat neither in the run tab. Any other way to check the error log
– Sparsh Dutta
Mar 24 at 12:54
which IDE are you using?
– Ryosuke
Mar 24 at 12:56
open the android folder inside Android Studio. There in the logcat edit filter configuration and set you package name.
– Ryosuke
Mar 24 at 12:58
I used adb logcat to check the device log and extracted the required ones needed concerning my app. I have edited the question with the same.
– Sparsh Dutta
Mar 24 at 13:47
|
show 2 more comments
I have built an app on Flutter and was trying to send Push Notifications through FCM. Earlier it was working but after changing the version of Firebase messaging the app crashes as soon as I send a push notification.
I haven't made any changes in the Code per se. I looked into the GitHub issues but couldn't resolve it.
This is the code I have been using in the main.dart file.
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();
void initState() {
super.initState();
_firebaseMessaging.configure(
onMessage: (Map<String, dynamic> message)
print('on message $message');
,
onResume: (Map<String, dynamic> message)
print('on resume $message');
,
onLaunch: (Map<String, dynamic> message)
print('on launch $message');
,
);
_firebaseMessaging.requestNotificationPermissions(
const IosNotificationSettings(sound: true, badge: true, alert: true));
_firebaseMessaging.getToken().then((token)
print(token);
);
My firebase_messaging dependency
firebase_messaging: ^1.0.2
I had also changed the version of google-services in app/build.gradle
dependencies
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.google.gms:google-services:3.2.0'
This is the part added to the AndroidManifest.xml file for notifications
<intent-filter>
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
The Device Log
03-24 19:14:25.044 2630 2663 I ActivityManager: Start proc 17709:com.example.notif_app/u0a206 for broadcast com.example.notif_app/com.google.firebase.iid.FirebaseInstanceIdReceiver
03-24 19:14:25.047 17709 17709 I art : Late-enabling -Xcheck:jni
03-24 19:14:25.181 17709 17709 D FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
03-24 19:14:25.182 17709 17709 D FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
03-24 19:14:25.182 17709 17709 I FirebaseInitProvider: FirebaseApp initialization successful
03-24 19:14:25.199 17709 17730 I ResourceExtractor: Found extracted resources res_timestamp-1-1553431828587
03-24 19:14:25.206 17709 17727 I FA : App measurement is starting up, version: 15300
03-24 19:14:25.206 17709 17727 I FA : To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
03-24 19:14:25.207 17709 17727 I FA : To enable faster debug mode event logging run:
03-24 19:14:25.207 17709 17727 I FA : adb shell setprop debug.firebase.analytics.app com.example.notif_app
03-24 19:14:25.220 17709 17709 D AndroidRuntime: Shutting down VM
03-24 19:14:25.221 17709 17709 E AndroidRuntime: FATAL EXCEPTION: main
03-24 19:14:25.221 17709 17709 E AndroidRuntime: Process: com.example.notif_app, PID: 17709
03-24 19:14:25.221 17709 17709 E AndroidRuntime: java.lang.NoSuchMethodError: No static method zzad()Lcom/google/firebase/iid/zzan; in class Lcom/google/firebase/iid/zzan; or its super classes (declaration of 'com.google.firebase.iid.zzan' appears in /data/app/com.example.notif_app-1/base.apk:classes2.dex)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at com.google.firebase.messaging.FirebaseMessagingService.zzb(Unknown Source)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at com.google.firebase.iid.zzb.onStartCommand(Unknown Source)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3318)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at android.app.ActivityThread.-wrap21(ActivityThread.java)
Can anyone help me with this? Thanks in advance.
flutter firebase-cloud-messaging flutter-dependencies
I have built an app on Flutter and was trying to send Push Notifications through FCM. Earlier it was working but after changing the version of Firebase messaging the app crashes as soon as I send a push notification.
I haven't made any changes in the Code per se. I looked into the GitHub issues but couldn't resolve it.
This is the code I have been using in the main.dart file.
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();
void initState() {
super.initState();
_firebaseMessaging.configure(
onMessage: (Map<String, dynamic> message)
print('on message $message');
,
onResume: (Map<String, dynamic> message)
print('on resume $message');
,
onLaunch: (Map<String, dynamic> message)
print('on launch $message');
,
);
_firebaseMessaging.requestNotificationPermissions(
const IosNotificationSettings(sound: true, badge: true, alert: true));
_firebaseMessaging.getToken().then((token)
print(token);
);
My firebase_messaging dependency
firebase_messaging: ^1.0.2
I had also changed the version of google-services in app/build.gradle
dependencies
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.google.gms:google-services:3.2.0'
This is the part added to the AndroidManifest.xml file for notifications
<intent-filter>
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
The Device Log
03-24 19:14:25.044 2630 2663 I ActivityManager: Start proc 17709:com.example.notif_app/u0a206 for broadcast com.example.notif_app/com.google.firebase.iid.FirebaseInstanceIdReceiver
03-24 19:14:25.047 17709 17709 I art : Late-enabling -Xcheck:jni
03-24 19:14:25.181 17709 17709 D FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
03-24 19:14:25.182 17709 17709 D FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
03-24 19:14:25.182 17709 17709 I FirebaseInitProvider: FirebaseApp initialization successful
03-24 19:14:25.199 17709 17730 I ResourceExtractor: Found extracted resources res_timestamp-1-1553431828587
03-24 19:14:25.206 17709 17727 I FA : App measurement is starting up, version: 15300
03-24 19:14:25.206 17709 17727 I FA : To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
03-24 19:14:25.207 17709 17727 I FA : To enable faster debug mode event logging run:
03-24 19:14:25.207 17709 17727 I FA : adb shell setprop debug.firebase.analytics.app com.example.notif_app
03-24 19:14:25.220 17709 17709 D AndroidRuntime: Shutting down VM
03-24 19:14:25.221 17709 17709 E AndroidRuntime: FATAL EXCEPTION: main
03-24 19:14:25.221 17709 17709 E AndroidRuntime: Process: com.example.notif_app, PID: 17709
03-24 19:14:25.221 17709 17709 E AndroidRuntime: java.lang.NoSuchMethodError: No static method zzad()Lcom/google/firebase/iid/zzan; in class Lcom/google/firebase/iid/zzan; or its super classes (declaration of 'com.google.firebase.iid.zzan' appears in /data/app/com.example.notif_app-1/base.apk:classes2.dex)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at com.google.firebase.messaging.FirebaseMessagingService.zzb(Unknown Source)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at com.google.firebase.iid.zzb.onStartCommand(Unknown Source)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3318)
03-24 19:14:25.221 17709 17709 E AndroidRuntime: at android.app.ActivityThread.-wrap21(ActivityThread.java)
Can anyone help me with this? Thanks in advance.
flutter firebase-cloud-messaging flutter-dependencies
flutter firebase-cloud-messaging flutter-dependencies
edited Mar 24 at 13:49
Sparsh Dutta
asked Mar 24 at 11:40
Sparsh DuttaSparsh Dutta
11
11
add the error output.
– Ryosuke
Mar 24 at 12:32
@Ryosuke when the app crashed there was no error log in the logcat neither in the run tab. Any other way to check the error log
– Sparsh Dutta
Mar 24 at 12:54
which IDE are you using?
– Ryosuke
Mar 24 at 12:56
open the android folder inside Android Studio. There in the logcat edit filter configuration and set you package name.
– Ryosuke
Mar 24 at 12:58
I used adb logcat to check the device log and extracted the required ones needed concerning my app. I have edited the question with the same.
– Sparsh Dutta
Mar 24 at 13:47
|
show 2 more comments
add the error output.
– Ryosuke
Mar 24 at 12:32
@Ryosuke when the app crashed there was no error log in the logcat neither in the run tab. Any other way to check the error log
– Sparsh Dutta
Mar 24 at 12:54
which IDE are you using?
– Ryosuke
Mar 24 at 12:56
open the android folder inside Android Studio. There in the logcat edit filter configuration and set you package name.
– Ryosuke
Mar 24 at 12:58
I used adb logcat to check the device log and extracted the required ones needed concerning my app. I have edited the question with the same.
– Sparsh Dutta
Mar 24 at 13:47
add the error output.
– Ryosuke
Mar 24 at 12:32
add the error output.
– Ryosuke
Mar 24 at 12:32
@Ryosuke when the app crashed there was no error log in the logcat neither in the run tab. Any other way to check the error log
– Sparsh Dutta
Mar 24 at 12:54
@Ryosuke when the app crashed there was no error log in the logcat neither in the run tab. Any other way to check the error log
– Sparsh Dutta
Mar 24 at 12:54
which IDE are you using?
– Ryosuke
Mar 24 at 12:56
which IDE are you using?
– Ryosuke
Mar 24 at 12:56
open the android folder inside Android Studio. There in the logcat edit filter configuration and set you package name.
– Ryosuke
Mar 24 at 12:58
open the android folder inside Android Studio. There in the logcat edit filter configuration and set you package name.
– Ryosuke
Mar 24 at 12:58
I used adb logcat to check the device log and extracted the required ones needed concerning my app. I have edited the question with the same.
– Sparsh Dutta
Mar 24 at 13:47
I used adb logcat to check the device log and extracted the required ones needed concerning my app. I have edited the question with the same.
– Sparsh Dutta
Mar 24 at 13:47
|
show 2 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55323403%2fhow-to-fix-app-crash-on-recieving-fcm-push-notification-built-on-flutter%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55323403%2fhow-to-fix-app-crash-on-recieving-fcm-push-notification-built-on-flutter%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
add the error output.
– Ryosuke
Mar 24 at 12:32
@Ryosuke when the app crashed there was no error log in the logcat neither in the run tab. Any other way to check the error log
– Sparsh Dutta
Mar 24 at 12:54
which IDE are you using?
– Ryosuke
Mar 24 at 12:56
open the android folder inside Android Studio. There in the logcat edit filter configuration and set you package name.
– Ryosuke
Mar 24 at 12:58
I used adb logcat to check the device log and extracted the required ones needed concerning my app. I have edited the question with the same.
– Sparsh Dutta
Mar 24 at 13:47