Java lang error fatal exception main

I am currently making an android app and am trying to resolve this issue. Whenever I compile my code and lode it onto the emulator, it initially loads up with these errors: 05-22 00:12:54.753: W/

I am currently making an android app and am trying to resolve this issue. Whenever I compile my code and lode it onto the emulator, it initially loads up with these errors:

05-22 00:12:54.753: W/dalvikvm(1631): threadid=1: thread exiting with uncaught exception (group=0x409c01f8)
05-22 00:12:54.783: E/AndroidRuntime(1631): FATAL EXCEPTION: main
05-22 00:12:54.783: E/AndroidRuntime(1631): java.lang.RuntimeException: Unable to instantiate application android.app.Application: java.lang.NullPointerException
05-22 00:12:54.783: E/AndroidRuntime(1631):     at android.app.LoadedApk.makeApplication(LoadedApk.java:482)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at android.app.ActivityThread.handleBindApplication(ActivityThread.java:3938)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at android.app.ActivityThread.access$1300(ActivityThread.java:123)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1185)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at android.os.Handler.dispatchMessage(Handler.java:99)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at android.os.Looper.loop(Looper.java:137)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at android.app.ActivityThread.main(ActivityThread.java:4424)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at java.lang.reflect.Method.invokeNative(Native Method)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at java.lang.reflect.Method.invoke(Method.java:511)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at dalvik.system.NativeStart.main(Native Method)
05-22 00:12:54.783: E/AndroidRuntime(1631): Caused by: java.lang.NullPointerException
05-22 00:12:54.783: E/AndroidRuntime(1631):     at android.app.LoadedApk.initializeJavaContextClassLoader(LoadedApk.java:362)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at android.app.LoadedApk.getClassLoader(LoadedApk.java:305)
05-22 00:12:54.783: E/AndroidRuntime(1631):     at android.app.LoadedApk.makeApplication(LoadedApk.java:474)
05-22 00:12:54.783: E/AndroidRuntime(1631):     ... 11 more

Then it kicks me out of the app with a force close but it boots back up soon after automatically and runs just fine. If I close the app and kill it, it doesn’t force close or anything. Just when it initially boots up on the emulator. I was wondering what would be the reasoning for this. Here are the messages that pop up after it loads up the second time:

05-22 00:13:07.113: D/dalvikvm(1664): GC_FOR_ALLOC freed 38K, 3% free 9110K/9347K, paused 61ms
05-22 00:13:07.165: I/dalvikvm-heap(1664): Grow heap (frag case) to 12.525MB for 3732496-byte allocation
05-22 00:13:07.263: D/dalvikvm(1664): GC_CONCURRENT freed 1K, 2% free 12754K/12999K, paused 5ms+5ms
05-22 00:13:07.543: D/dalvikvm(1664): GC_FOR_ALLOC freed <1K, 2% free 12755K/12999K, paused 37ms
05-22 00:13:07.573: I/dalvikvm-heap(1664): Grow heap (frag case) to 14.502MB for 2073616-byte allocation
05-22 00:13:07.753: D/dalvikvm(1664): GC_CONCURRENT freed <1K, 2% free 14780K/15047K, paused 5ms+5ms
05-22 00:13:08.033: D/gralloc_goldfish(1664): Emulator without GPU emulation detected.

I will supply you with any and all coding you guys need but unfortunately I do not know where this error would be at? I have many files inside of my program so I would rather not post all of them if at all possible.

Sorry that this question hasn’t given much information, I just don’t know what information to give to you (if that makes sense?) Please respond and tell me what information you would need and thank you for any and all of your help

EDIT

here is my splash.java

package com.food;

import com.food.odu.R;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

//creating a splash effect so the company logo appears for a few seconds before the program
public class Splash extends Activity{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.splash);  //defined the reference id 'splash' in the splash.xml file

        Thread timer = new Thread(){    //creates a new timer for our splash effect
            public void run(){   //runs the splash program
                try{
                     sleep(5000);    //attempts to run the splash picture for 5000 milliseconds (5 seconds)
                   } catch(InterruptedException e){
                      e.printStackTrace();    //if that doesn't work, this line is debugging information
                      }finally{
                        Intent openStartingPoint = new Intent("com.rhodes.jacob.COM.FOOD.ODUACTIVITY"); //creating an intent which is basically a reference to the Android Manifest
                        startActivity(openStartingPoint);                                               //file saying that when this intent is called, to go to the address at that name in the Android Manifest file
                      }
                  }

        };

        timer.start();

    }

    @Override
    protected void onPause() {
        // TODO Auto-generated method stub
        super.onPause();
        finish();
    }



}

and here is my oduActivity.java (my main, i suppose)

package com.food;


import com.food.odu.R;
//import com.food.odu.R;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;



public class oduActivity extends Activity {
    /** Called when the activity is first created. */

    Button Cafe1201, Legends, Rogers, Faculty;
    TextView display;


    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);        
        setContentView(R.layout.main);

        Button Cafe1201 = (Button)findViewById(R.id.cafe1201);
        Button Legends = (Button)findViewById(R.id.legends);
        Button Rogers = (Button)findViewById(R.id.rogers);
        Button Faculty = (Button)findViewById(R.id.fac_n_staff);

  //    Button Legal = (Button)findViewById(R.id.legal);
  //    Button Other = (Button)findViewById(R.id.other);
  //    Button About = (Button)findViewById(R.id.aboutUs);
        //Button Mainpage = (Button)findViewById(R.id.main_page);

        //Changes page to the cafe1201 page
        Cafe1201.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                Intent whichCafe = new Intent(oduActivity.this,cafe1201.class);
                startActivity(whichCafe);

            }
        });


         //changes page to the legends page
          Legends.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    Intent whichCafe = new Intent(oduActivity.this,legends.class);
                    startActivity(whichCafe);

                }
            }); 


          //changes page to the rogers page
          Rogers.setOnClickListener(new View.OnClickListener() {
              public void onClick(View v) {
                  Intent whichCafe = new Intent(oduActivity.this,rogers.class);
                  startActivity(whichCafe);

              }
          }); 


          //changes page to the faculty page
          Faculty.setOnClickListener(new View.OnClickListener() {
              public void onClick(View v) {
                  Intent whichCafe = new Intent(oduActivity.this,faculty.class);
                  startActivity(whichCafe);

              }
          }); 


    }

    //Options menu
    @Override
    public boolean onCreateOptionsMenu(android.view.Menu menu) {
        // TODO Auto-generated method stub
        super.onCreateOptionsMenu(menu);
        MenuInflater blowUp = getMenuInflater();
        blowUp.inflate(R.menu.menu, menu);
        return true;

    }


    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // TODO Auto-generated method stub
        switch(item.getItemId()){

        case R.id.main_page:

            Intent whichOption = new Intent(oduActivity.this,oduActivity.class);
            startActivity(whichOption);
            break;
        case R.id.other:

            whichOption = new Intent(oduActivity.this,menu.class);
            startActivity(whichOption);
            break;
        case R.id.aboutUs:

            whichOption = new Intent(oduActivity.this,aboutUs.class);
            startActivity(whichOption);
            break;
        case R.id.legal:

            whichOption = new Intent(oduActivity.this,legal.class);
            startActivity(whichOption);
            break;

        }
        return false;
    }






     //   display = (TextView) findViewById(R.id.tvDisplay);
  //  }
 }

в манифесте прописано следующее:
<uses-permission android:name=»android.permission.READ_CONTACTS» />
<uses-permission android:name=»com.android.vending.BILLING» />
<uses-permission android:name=»android.permission.SEND_SMS» />
<uses-permission android:name=»android.permission.WRITE_EXTERNAL_ST ORAGE»/>
<uses-permission android:name=»android.permission.WRITE_INTERNAL_ST ORAGE»/>

Добавлено через 1 минуту
все работало, потом я открыл свой проект и сначало просто изменения сделанные в программе не были видны, а потом вообще при запуске ошибка. Код большой, покажу ток в функции onCreate, я так понял на нее ошибка указывает.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

nobn=false;
play_potok1=play_potok2=false;
imageButton13=(ImageButton)findViewById(R.id.image Button13);
//local = new Locale(«ru»,»RU»);
df = DateFormat.getDateInstance(DateFormat.DEFAULT, local);
sqh = new base(this);
sqdb = sqh.getWritableDatabase();
tabs = (TabHost) findViewById(R.id.tabHost2);
tabs.setup();
TabHost.TabSpec spec = tabs.newTabSpec(«tag1»);
spec.setContent(R.id.tab1);
spec.setIndicator(getString(R.string.n91), getResources().getDrawable(R.drawable.liner));
tabs.addTab(spec);
spec = tabs.newTabSpec(«tag2»);
spec.setContent(R.id.tab2);
spec.setIndicator(getString(R.string.n92), getResources().getDrawable(R.drawable.tab_date_tim e));
tabs.addTab(spec);
mSettings = getSharedPreferences(APP_PREFERENCES, Context.MODE_PRIVATE);
if(mSettings.getString(«SETTINGS», «»).equalsIgnoreCase(«»)) SetSettings();
listView10=(ListView)findViewById(R.id.listView10) ;
listView11=(ListView)findViewById(R.id.listView11) ;
tsms=mSettings.getInt(«TSMS», 0);
rposition1=mSettings.getInt(«RPOS1», 0);
position1=mSettings.getInt(«POS1», 0);
position2=mSettings.getInt(«POS2», 0);
temail=tsms;
tabs.setCurrentTab(mSettings.getInt(«NUMTAB», 0));
maxsizesms=mSettings.getInt(«MAXSIZE», 0);
id1 = new ArrayList <Integer>();
message = new ArrayList <String>();
kcontacts = new ArrayList <Integer>();
kfiles = new ArrayList <Integer>();
tsend = new ArrayList <String>();
kolm1 = new ArrayList <Integer>();
id2 = new ArrayList <Integer>();
message2 = new ArrayList <String>();
kcontacts2 = new ArrayList <Integer>();
kfiles2 = new ArrayList <Integer>();
data2 = new ArrayList<String>();
time2 = new ArrayList<String>();
tsend2 = new ArrayList <String>();
kolm2 = new ArrayList <Integer>();
//set_list1();
//set_list2();
mAdapter1 = new MyAdapter1(this);
listView10.setAdapter(mAdapter1);
mAdapter2 = new MyAdapter2(this);
listView11.setAdapter(mAdapter2);
datep2=timep2=»»;
}

Добавлено через 1 минуту
я уже пробовал убрать код из onCreate, все равно ошибка.

Содержание

  1. Xiaomi crash java.lang.SecurityException SYSTEM_ALERT_WINDOW #505
  2. Comments
  3. Footer
  4. Fatal Exception: java.lang.Error: FATAL EXCEPTION [UnityMain] libunity.0007f0c0 #818
  5. Comments
  6. [REQUIRED] Please fill in the following fields:
  7. [REQUIRED] Please describe the issue here:
  8. Игра Unity начала вылетать на android 8
  9. java.lang.Error: FATAL EXCEPTION Caused by com.unity3d.player.UnityPlayer.nativeRestartActivityIndicator #974
  10. Comments

Xiaomi crash java.lang.SecurityException SYSTEM_ALERT_WINDOW #505

Crash on myMethodWithPermissionCheck() when use @NeedsPermission(Manifest.permission.SYSTEM_ALERT_WINDOW)

Library version : 3.3.1 with kapt processor
Devices affected : Only Xiaomi Mi A1
Stacktrace:

The text was updated successfully, but these errors were encountered:

Seems Xiaomi doesn’t support SYSTEM_ALERT_WINDOW ? 🤔

@francescobonni if you don’t use the library can you deal with the problem? 👀 (thank you for your report and sorry for being late 🙇 )

No problem, I’m trying to find a Xiaomi MI A1 to perform the test without using the library and check if the problem is in the library or device. I will give you updates on the problem as soon as possible

@francescobonni any update? 🙇

@hotchemi I’m sorry I had a lot of problems, but I found the device, this weekend I send you updates.

@hotchemi
Finally I have updates, I tested with a clean application, the system overlay request and I found the behavior to replicate the crash on xiaomi mi a1 (now on Fabric i see same crash with redmi note 4 and android 6).
The crash occurs only if you use the library, step to reproduce the crash:

  1. Activate the permission for the overlay through the app
  2. I open the app information (eg through the launcher) and revoke the permission for the overlay
  3. Return to the app and try to activate the permission again
  4. Crash
  5. Reopen app and retry to activate permission
  6. Crash
  7. Close app from recent
  8. Open and retry to activate permission
  9. Crash
  10. I install the same app with manual permissions, everything works
  11. I try in my Nexus 6P, everything works, both permission dispatcher and manual permissions

If you want I can put on my github the sample project I used, but it’s very simple, a button that requires overlay permissions

@francescobonni oh it’s happening on Android 6 as well..could you give us your sample project if possible? 🙇 Weird.. 👁

I’m new on github, I did not know how to do things correctly, in the project at the moment you find 2 branches in addition to master (the first for the test without using the library and the second to test the library)

@francescobonni Thank you!

Device afflicted update:

  • Xiaomi Mi A1 (Android 8.1 & Android 8.0)
  • Xiaomi Mi A2 Lite (Android 8.1)
  • Xiaomi Redmi Note 4 (Android 6)

Sorry for the late. I think the cause is in

if ( Build . VERSION . SDK_INT >= Build . VERSION_CODES . M && «Xiaomi» . equalsIgnoreCase ( Build . MANUFACTURER )) <

May be we don’t need to have a workaround for SYSTEM_ALERT_WINDOW 🤔

@francescobonni Do you think the same thing would happen with WRITE_SETTINGS ? 👀

@hotchemi this weekend I’ll try the WRITE_SETTINGS and update you

I guess you never tried it that weekend

Yes, I’m so sorry, but today I tried the write settings, same problem

ooh thank you. I’ll address.

Let us know your opinion #544

Since we’ve already removed Xiaomi support from the lib let us close the issue.
@francescobonni thank you for your dedicated contribution 🙇

© 2023 GitHub, Inc.

You can’t perform that action at this time.

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.

Источник

Fatal Exception: java.lang.Error: FATAL EXCEPTION [UnityMain] libunity.0007f0c0 #818

[REQUIRED] Please fill in the following fields:

  • Unity editor version: 2019.2.21f
  • Firebase Unity SDK version: 6.15.2
  • Source you installed the SDK: Unity Package Manager
  • Problematic Firebase Component: Crashlytics
  • Other Firebase Components in use: Messaging, Analytics, Dynamic Links
  • Additional SDKs you are using: Facebook, MoPub
  • Platform you are using the Unity editor on: Mac
  • Platform you are targeting: iOS, Android
  • Scripting Runtime: IL2CPP

[REQUIRED] Please describe the issue here:

Recently we updated Firebase SDK for unity to 6.15.2. Since the SDK update, getting this crashes reported on Firebase console for Android for armv7 devices.

Logs as per Firebase console:

Have you been able to reproduce this issue with just the Firebase Unity quickstarts (this GitHub project)?
We are not able to reproduce the crash

The text was updated successfully, but these errors were encountered:

With this limited information, we cannot determine whether if this is related to Crashlytics or even Firebase SDK.
Are you able to reproduce this crash using your app on a local device and captures more information from the log?
We also released 6.16.0 which actually resolves many Android build issues related to Crashlytics. Should be worth a try and see if that resolve your issue. Though most of those are for Unity 2020. Also be aware of the duplicated package name issue described here. #806

Otherwise, it would hard for us to take any action about your issue.

Hope this helps!
Shawn

Hey @gaurangtalwadkar. We need more information to resolve this issue but there hasn’t been an update in 5 weekdays. I’m marking the issue as stale and if there are no new updates in the next 5 days I will close it automatically.

If you have more information that will help us get to the bottom of this, just add a comment!

@chkuang-g
We updated to 6.16.0 but still getting the crash. We were able to reproduce the crash.
Steps to Reproduce:

  1. Launch the app
  2. Put app in background once initialisations complete
  3. Use some heavy memory hogging apps.
  4. Open app through push notification.

Источник

Игра Unity начала вылетать на android 8

Получил следующую трассировку стека от Android Vitals:

Понятия не имею. Любая помощь или объяснение будут приветствоваться.

Вероятно, ошибка. Обновите Unity до версии 2017.2. Может, починили.

Сегодня для нашего проекта в Android Vitals для пользователей на Android 8.0 и 8.1 начал отображаться такой же сбой. Мы используем Unity 2017.1.3. Возможно, это не зависит от версии Unity. Я обнаружил некоторую корреляцию возникновения такого сбоя с выпуском обновлений для Google Play Market.

Обновлено: Нам удалось воспроизвести эту ошибку на нашем устройстве Android 8.1:

  • Запустить приложение на устройстве.
  • Заставить Google Play Market остановиться.
  • Попробуйте приобрести IAP в магазине.
  • Просмотрите указанный отчет об ошибке в Android Vitals

Учитывая особенность этой ошибки, которая возникает неожиданно и массово, а затем также неожиданно полностью исчезает без внесения изменений в приложение, мы пришли к выводу, что системная служба останавливается принудительно при обновлении фона Google Play Market для пользователей с включенным автообновлением. и подключение к сети Wi-Fi во время использования нашего приложения, а затем попытаться получить доступ к данным или выполнить операцию с IAP в магазине Google Play.

Мы видим то же самое, Android 8, в основном устройства Samsung

Вы можете попытаться перехватить эту ошибку, попытаться повторно подключиться к службе и снова выполнить тот же IAP.

Мы наблюдали ту же ошибку на большой части нашей базы игроков. Мы смогли связаться с Unity и разобраться в ошибке.

Из службы поддержки Unity Enterprise:

We are aware of the issue. We fixed it in 2017.3 after upgrading the JNIbridge to support Oreo APIs. Previous reports describe that when a Unity application that has INTERNET permission is running, and the Google play services is updated, stopped or reboot, it will cause the app to crash in Android 8, 8.1 devices.

The problem is that ServiceConnection.onBindingDied which was added in API level 26 is not implemented before 2017.3; we added this for GoogleAdsServiceConnection in such version an also updated the JNIbridge to solve the problem.

I’m able to reproduce it in an empty project by setting Internet Access to «Require» and when running on the device, go to settings ->Apps & notifications->google play services->storage->MANAGE SPACE->CLEAR ALL DATA, then the app crashes as described in Stack Overflow.

Do you have plans to upgrade your project to 2017.4 LTS?

I’m asking because we think that a backport of the fix is not feasible, not only because it would be for a version for which we no longer create patches (5.6.x) but an appropriate fix would involve backporting the full support for Oreo APIs which might be tricky and may cause regressions.

Мы решили попробовать обновить нашу версию Unity с 5.6.4f1 до рекомендованных версий 2017 года. Похоже, это должно решить наши проблемы.

Источник

java.lang.Error: FATAL EXCEPTION Caused by com.unity3d.player.UnityPlayer.nativeRestartActivityIndicator #974

Unity 2019.1.11 (same for 2019.1.10)
Google Ads SDK: 3.18.1 (same for 3.17)

My app is seeing a lot of these crashes:

java.lang.Error: FATAL EXCEPTION [main] Unity version : 2019.1.11f1 Device model : SPA Condor Electronics Plume P8 Pro Device fingerprint: Condor/Plume_P8_Pro/Plume_P8_Pro:7.0/NRD90M/1506402354:user/release-keys Caused by at com.unity3d.player.UnityPlayer.nativeRestartActivityIndicator (Native Method) at com.unity3d.player.UnityPlayer.resume (Unknown Source) at com.unity3d.player.UnityPlayerActivity.onResume (Unknown Source) at android.app.Instrumentation.callActivityOnResume (Instrumentation.java:1269) at android.app.Activity.performResume (Activity.java:6775) at android.app.ActivityThread.performResumeActivity (ActivityThread.java:3487) at android.app.ActivityThread.handleResumeActivity (ActivityThread.java:3556) at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1587) at android.os.Handler.dispatchMessage (Handler.java:110) at android.os.Looper.loop (Looper.java:203) at android.app.ActivityThread.main (ActivityThread.java:6269) at java.lang.reflect.Method.invoke (Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run (ZygoteInit.java:1063) at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:924)

I know these errors do not seem to be related to Google Ads, but please see this Unity Forum thread.

I also believe this is caused by Google Ads SDK. The numbers of errors is very high, reaching the Google Play bad behavior threshold. Please fix!

The text was updated successfully, but these errors were encountered:

Источник

Здравствуйте, у меня проблема при запуске созданного приложения, что нужно сделать чтоб исправить?

Launching ‘app’ on My device API 29.
App restart successful without requiring a re-install.
$ adb shell am start -n «com.example.visourschatsfriends/com.example.visourschatsfriends.MainActivity» -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Connected to process 18630 on device ‘My_device_API_29 [emulator-5554]’.
Capturing and displaying logcat messages from application. This behavior can be disabled in the «Logcat output» section of the «Debugger» settings page.
W/urschatsfriend: Long monitor contention with owner main (18630) at void android.content.res.AssetManager.nativeSetConfiguration(long, int, int, java.lang.String, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)(AssetManager.java:-2) waiters=0 in void android.app.ActivityThread.updatePendingConfiguration(android.content.res.Configuration) for 382ms
I/FirebaseApp: Device unlocked: initializing all Firebase APIs for app [DEFAULT]
I/FirebaseInitProvider: FirebaseApp initialization successful
W/GooglePlayServicesUtil: Google Play Store is missing.
E/ActivityThread: Failed to find provider info for com.google.android.gms.chimera
W/DynamiteModule: Failed to retrieve remote module version.
D/libEGL: Emulator has host GPU support, qemu.gles is set to 1.
E/DynamiteModule: Failed to load IDynamiteLoader from GmsCore: Application package com.google.android.gms not found
I/DynamiteModule: Considering local module com.google.android.gms.measurement.dynamite:51 and remote module com.google.android.gms.measurement.dynamite:0
Selected local version of com.google.android.gms.measurement.dynamite
W/libc: Unable to set property «qemu.gles» to «1»: connection failed; errno=13 (Permission denied)
E/DynamiteModule: Failed to load IDynamiteLoader from GmsCore: Application package com.google.android.gms not found
I/FirebaseAuth: [FirebaseAuth:] Preparing to create service connection to fallback implementation
V/FA: onActivityCreated
W/urschatsfriend: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (greylist, reflection, allowed)
W/urschatsfriend: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (greylist, reflection, allowed)
D/libEGL: loaded /vendor/lib64/egl/libEGL_emulation.so
D/libEGL: loaded /vendor/lib64/egl/libGLESv1_CM_emulation.so
D/libEGL: loaded /vendor/lib64/egl/libGLESv2_emulation.so
D/AndroidRuntime: Shutting down VM
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.visourschatsfriends, PID: 18630
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.visourschatsfriends/com.example.visourschatsfriends.MainActivity}: java.lang.ClassCastException: androidx.constraintlayout.widget.ConstraintLayout cannot be cast to android.widget.RelativeLayout
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3270)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3409)
at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)
at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2016)
at android.os.Handler.dispatchMessage(Handler.java:107)
at android.os.Looper.loop(Looper.java:214)
at android.app.ActivityThread.main(ActivityThread.java:7356)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:930)
Caused by: java.lang.ClassCastException: androidx.constraintlayout.widget.ConstraintLayout cannot be cast to android.widget.RelativeLayout
at com.example.visourschatsfriends.MainActivity.onCreate(MainActivity.java:38)
at android.app.Activity.performCreate(Activity.java:7802)
at android.app.Activity.performCreate(Activity.java:7791)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1299)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3245)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3409) 
at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83) 
at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135) 
at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95) 
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2016) 
at android.os.Handler.dispatchMessage(Handler.java:107) 
at android.os.Looper.loop(Looper.java:214) 
at android.app.ActivityThread.main(ActivityThread.java:7356) 
at java.lang.reflect.Method.invoke(Native Method) 
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:930) 
I/Process: Sending signal. PID: 18630 SIG: 9
W/RenderThread: type=1400 audit(0.0:66): avc: denied { write } for name=»property_service» dev=»tmpfs» ino=6722 scontext=u:r:untrusted_app:s0:c106,c256,c512,c768 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=0 app=com.example.visourschatsfriends


  • Вопрос задан

    более года назад

  • 1389 просмотров

В логах же есть всё.

MainActivity}: java.lang.ClassCastException: androidx.constraintlayout.widget.ConstraintLayout cannot be cast to android.widget.RelativeLayout

Где-то в вашем лейауте для MainActivity (activity_main.xml) используется ConstraintLayout , который вы у себя в коде в MainActivity приводите/кастите к RelativeLayout . Смотрите что у вас в методе onCreate(MainActivity.java:38) на 38 строчке

Пригласить эксперта


  • Показать ещё
    Загружается…

09 февр. 2023, в 23:14

1500 руб./за проект

09 февр. 2023, в 23:00

1500 руб./за проект

09 февр. 2023, в 22:06

500 руб./за проект

Минуточку внимания

Hello Guys, How are you all? Hope You all Are Fine. I am implementing Firebase in my project And I am trying to write data in the firebase database But I am facing the following error FATAL EXCEPTION: main Process java.lang.RuntimeException: Unable to start activity ComponentInfo in firebase. So Here I am Explain to you all the possible solutions here.

Without wasting your time, Let’s start This Article to Solve This Error.

Contents

  1. How FATAL EXCEPTION: main Process java.lang.RuntimeException: Unable to start activity ComponentInfo in firebase Error Occurs ?
  2. How To Solve FATAL EXCEPTION: main Process java.lang.RuntimeException: Unable to start activity ComponentInfo in firebase Error ?
  3. Solution 1: Downgrade google-services to google-services:4.3.8
  4. Summery

I am implementing Firebase in my project And I am trying to write data in the firebase database But the firebase real-time database is unable to write data. I am facing the following error.

2021-08-06 22:57:51.467 8980-8980/? E/e.firebasefetc: Unknown bits set in runtime_flags: 0x8000
2021-08-06 22:57:52.207 8980-9018/com.example.upcApp E/Perf: Fail to get file list com.example.upcApp
2021-08-06 22:57:52.208 8980-9018/com.example.upcApp E/Perf: getFolderSize() : Exception_1 = java.lang.NullPointerException: Attempt to get length of null array
2021-08-06 22:57:52.209 8980-9018/com.example.upcApp E/Perf: Fail to get file list com.example.upcApp
2021-08-06 22:57:52.209 8980-9018/com.example.upcApp E/Perf: getFolderSize() : Exception_1 = java.lang.NullPointerException: Attempt to get length of null array
2021-08-06 22:57:52.553 8980-8980/com.example.upcApp E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.example.upcApp, PID: 8980
    java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.upcApp/com.example.upcApp.MainActivity}: java.lang.IllegalStateException: Default FirebaseApp is not initialized in this process com.example.upcApp. Make sure to call FirebaseApp.initializeApp(Context) first.

How To Solve FATAL EXCEPTION: main Process java.lang.RuntimeException: Unable to start activity ComponentInfo in firebase Error ?

  1. How To Solve FATAL EXCEPTION: main Process java.lang.RuntimeException: Unable to start activity ComponentInfo in firebase Error?

    To Solve FATAL EXCEPTION: main Process java.lang.RuntimeException: Unable to start activity ComponentInfo in firebase Error Here The problem Is Google has broken something in google-services:4.3.9 So we just need to downgrade google-services to google-services:4.3.8 here is How. Just Change this below line present in your build.gradle file.

  2. FATAL EXCEPTION: main Process java.lang.RuntimeException: Unable to start activity ComponentInfo in firebase

    To Solve FATAL EXCEPTION: main Process java.lang.RuntimeException: Unable to start activity ComponentInfo in firebase Error Here The problem Is Google has broken something in google-services:4.3.9 So we just need to downgrade google-services to google-services:4.3.8 here is How. Just Change this below line present in your build.gradle file.

Solution 1: Downgrade google-services to google-services:4.3.8

Here The problem Is Google has broken something in google-services:4.3.9 So we just need to downgrade google-services to google-services:4.3.8 here is How.

Just Change this below line present in your build.gradle file.


classpath 'com.google.gms:google-services:4.3.9'

Change it to


classpath 'com.google.gms:google-services:4.3.8'

Summery

It’s all About this issue. Hope all solution helped you a lot. Comment below Your thoughts and your queries. Also, Comment below which solution worked for you?

Also Read

  • SyntaxError: invalid syntax to repo init in the AOSP code.

hi dudes
i have this code in class file:

ublic class MainActivity extends ListActivity {

	 DBAdapter db;
	 List <Story> storyList;
	 ListView lvMain;
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
    	Log.i("#%%%%%%%%%%%%%%%%%%%%%","1");
    	
        super.onCreate(savedInstanceState);
        Log.i("#%%%%%%%%%%%%%%%%%%%%%","1.5");
        setContentView(R.layout.activity_main2);
        Log.i("#%%%%%%%%%%%%%%%%%%%%%","2");
        db.open();
        storyList=db.GetAllItems();
        Log.i("#%%%%%%%%%%%%%%%%%%%%%","3");
        if (storyList.size()==0)
        {
        	Log.i("#%%%%%%%%%%%%%%%%%%%%%","4");
        	InputStream sourcePath;
        	OutputStream destPath;
			try {
				sourcePath = getBaseContext().getAssets().open("StoryDB");
			    destPath=new FileOutputStream( "/data/data/"+getPackageName()+"/databases/data");
			    Log.i("#%%%%%%%%%%%%%%%%%%%%%","5");
			    CopyDB(sourcePath,destPath);
			    Log.i("#%%%%%%%%%%%%%%%%%%%%%","5.5");
				
			} catch (IOException e) {
				
				e.printStackTrace();
			}
       			
        
        	Log.i(DBAdapter.TAG,"@@@DB copy finished.");
        	 
        	storyList=db.GetAllItems();
        	
        }
    }

and in xml file (activity_main) i have this:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/button1"
        android:layout_toRightOf="@+id/button1"
        android:text="Button" />

    <EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/button2"
        android:layout_toRightOf="@+id/button2"
        android:ems="10" >

        <requestFocus />
    </EditText>

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="25dp"
        android:text="Button" />

    <ListView
        android:id="@+id/lvMain"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/button1"
        android:layout_below="@+id/button1"
        android:layout_marginTop="14dp" >
    </ListView>

</RelativeLayout>

now i wanna start that i get this error:

02-14 21:06:57.715: W/ActivityThread(19498): Application behnam.mohammadi.book1 can be debugged on port 8100...
02-14 21:06:57.745: I/#%%%%%%%%%%%%%%%%%%%%%(19498): 1
02-14 21:06:57.745: I/#%%%%%%%%%%%%%%%%%%%%%(19498): 1.5
02-14 21:06:57.815: D/AndroidRuntime(19498): Shutting down VM
02-14 21:06:57.815: W/dalvikvm(19498): threadid=1: thread exiting with uncaught exception (group=0x40f922a0)
02-14 21:06:57.835: E/AndroidRuntime(19498): FATAL EXCEPTION: main
02-14 21:06:57.835: E/AndroidRuntime(19498): java.lang.RuntimeException: Unable to start activity ComponentInfo{behnam.mohammadi.book1/behnam.mohammadi.book1.MainActivity}: java.lang.RuntimeException: Your content must have a ListView whose id attribute is 'android.R.id.list'
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2100)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2125)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.app.ActivityThread.access$600(ActivityThread.java:140)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1227)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.os.Handler.dispatchMessage(Handler.java:99)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.os.Looper.loop(Looper.java:137)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.app.ActivityThread.main(ActivityThread.java:4898)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at java.lang.reflect.Method.invokeNative(Native Method)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at java.lang.reflect.Method.invoke(Method.java:511)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1006)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:773)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at dalvik.system.NativeStart.main(Native Method)
02-14 21:06:57.835: E/AndroidRuntime(19498): Caused by: java.lang.RuntimeException: Your content must have a ListView whose id attribute is 'android.R.id.list'
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.app.ListActivity.onContentChanged(ListActivity.java:243)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:311)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.app.Activity.setContentView(Activity.java:1924)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at behnam.mohammadi.book1.MainActivity.onCreate(MainActivity.java:30)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.app.Activity.performCreate(Activity.java:5206)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1083)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2064)
02-14 21:06:57.835: E/AndroidRuntime(19498): 	... 11 more


This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

CodeProject,
20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8
+1 (416) 849-8900

@chkuang-g
We updated to 6.16.0 but still getting the crash. We were able to reproduce the crash.
Steps to Reproduce:

10-21 14:49:47.514 29564 30526 E CRASH   : 	#00  pc 0011e426  /data/app/air.com.bitrhymes.bingo-QmUbRlp95q4u7BBMh4oejA==/lib/arm/libunity.so (core::StringStorageDefault<char>::assign(char const*, unsigned int)+13)
10-21 14:49:47.514 29564 30526 E CRASH   : 	#01  pc 0074bb43  /data/app/air.com.bitrhymes.bingo-QmUbRlp95q4u7BBMh4oejA==/lib/arm/libunity.so (PlayerSettings::SetAbsoluteURL(core::basic_string<char, core::StringStorageDefault<char> > const&)+22)
10-21 14:49:47.514 29564 30526 E CRASH   : 	#02  pc 00975c61  /data/app/air.com.bitrhymes.bingo-QmUbRlp95q4u7BBMh4oejA==/lib/arm/libunity.so (nativeSetLaunchURL(_JNIEnv*, _jobject*, _jstring*)+72)
10-21 14:49:47.514 29564 30526 E CRASH   : 	#03  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.514 29564 30526 E CRASH   : 	#04  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.514 29564 30526 E CRASH   : 	#05  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.514 29564 30526 E CRASH   : 	#06  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.514 29564 30526 E CRASH   : 	#07  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.514 29564 30526 E CRASH   : 	#08  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.514 29564 30526 E CRASH   : 	#09  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.514 29564 30526 E CRASH   : 	#10  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.514 29564 30526 E CRASH   : 	#11  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.514 29564 30526 E CRASH   : 	#12  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#13  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#14  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#15  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#16  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#17  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#18  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#19  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#20  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#21  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#22  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#23  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#24  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#25  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#26  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#27  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#28  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#29  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#30  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 	#31  pc 0000d519  /apex/com.android.runtime/lib/libart.so
10-21 14:49:47.515 29564 30526 E CRASH   : 
10-21 14:49:47.515 29564 30526 E CRASH   : memory near r1:
10-21 14:49:47.516 29564 30526 E CRASH   :     b8571cc0 00000000 00000000 b8571be8 000000dc  ..........W.....
10-21 14:49:47.516 29564 30526 E CRASH   :     b8571cd0 00000009 00000181 00000000 ffffffff  ................
10-21 14:49:47.516 29564 30526 E CRASH   :     b8571ce0 35386266 39343734 36323539 682f2f3a  fb8547499526://h
10-21 14:49:47.517 29564 30526 E CRASH   :     b8571cf0 73707474 612f2f3a 2e737070 65636166  ttps://apps.face
10-21 14:49:47.517 29564 30526 E CRASH   :     b8571d00 6b6f6f62 6d6f632e 6765762f 612d7361  book.com/vegas-a
10-21 14:49:47.517 29564 30526 E CRASH   :     b8571d10 702f7070 2e79616c 3f706870 68736168  pp/play.php?hash
10-21 14:49:47.518 29564 30526 E CRASH   :     b8571d20 7266263d 3d64695f 6d697426 74263d65  =&fr_id=&time=&t
10-21 14:49:47.519 29564 30526 E CRASH   :     b8571d30 3d657079 68635050 727a6e69 72617765  ype=PPchinzrewar
10-21 14:49:47.520 29564 30526 E CRASH   :     b8571d40 32527364 31533436 35313036 30343832  dsR264S160152840
10-21 14:49:47.521 29564 30526 E CRASH   :     b8571d50 36314530 30323430 39393736 65746926  0E1604206799&ite
10-21 14:49:47.521 29564 30526 E CRASH   :     b8571d60 64695f6d 7626303d 66697265 70263d79  m_id=0&verify=&p
10-21 14:49:47.522 29564 30526 E CRASH   :     b8571d70 3d707974 79746326 73263d70 79263d65  typ=&ctyp=&se=&y
10-21 14:49:47.522 29564 30526 E CRASH   :     b8571d80 6f6f6861 3d64695f 66657226 7269763d  ahoo_id=&ref=vir
10-21 14:49:47.528 29564 30526 E CRASH   :     b8571d90 75266c61 79745f73 263d6570 003d6372  al&us_type=&rc=.
10-21 14:49:47.528 29564 30526 E CRASH   :     b8571da0 00000000 00000000 b8571cc8 00000128  ..........W.(...
10-21 14:49:47.529 29564 30526 E CRASH   :     b8571db0 00000009 00000219 00000000 ffffffff  ................
10-21 14:49:47.529 29564 30526 E CRASH   : 
10-21 14:49:47.529 29564 30526 E CRASH   : memory near r7:
10-21 14:49:47.530 29564 30526 E CRASH   :     14a01b38 00000001 00010000 00000000 00000000  ................
10-21 14:49:47.532 29564 30526 E CRASH   :     14a01b48 01000001 01000101 14a01b58 00000000  ........X.......
10-21 14:49:47.532 29564 30526 E CRASH   :     14a01b58 14a00658 10000000 00000000 00000000  X...............
10-21 14:49:47.533 29564 30526 E CRASH   :     14a01b68 00000000 00000000 14be89e8 00000000  ................
10-21 14:49:47.534 29564 30526 E CRASH   :     14a01b78 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.535 29564 30526 E CRASH   :     14a01b88 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.536 29564 30526 E CRASH   :     14a01b98 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.536 29564 30526 E CRASH   :     14a01ba8 00000000 00000000 14a01a60 00000000  ........`.......
10-21 14:49:47.537 29564 30526 E CRASH   :     14a01bb8 00000000 00000000 00000000 6f8780c0  ...............o
10-21 14:49:47.538 29564 30526 E CRASH   :     14a01bc8 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.539 29564 30526 E CRASH   :     14a01bd8 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.540 29564 30526 E CRASH   :     14a01be8 00000000 00000000 00000000 14bdcb30  ............0...
10-21 14:49:47.541 29564 30526 E CRASH   :     14a01bf8 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.541 29564 30526 E CRASH   :     14a01c08 00000000 6f8b9ac8 00000000 14bd9218  .......o........
10-21 14:49:47.542 29564 30526 E CRASH   :     14a01c18 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.543 29564 30526 E CRASH   :     14a01c28 00000000 00000000 14cf98c8 00000000  ................
10-21 14:49:47.544 29564 30526 E CRASH   : 
10-21 14:49:47.544 29564 30526 E CRASH   : memory near r8:
10-21 14:49:47.579 29564 30526 E CRASH   :     b8571cc0 00000000 00000000 b8571be8 000000dc  ..........W.....
10-21 14:49:47.581 29564 30494 I System.out: (HTTPLog)-Static: isSBSettingEnabled false
10-21 14:49:47.581 29564 30494 I System.out: (HTTPLog)-Static: isSBSettingEnabled false
10-21 14:49:47.582 29564 30526 E CRASH   :     b8571cd0 00000009 00000181 00000000 ffffffff  ................
10-21 14:49:47.582 29564 30526 E CRASH   :     b8571ce0 35386266 39343734 36323539 682f2f3a  fb8547499526://h
10-21 14:49:47.583 29564 30526 E CRASH   :     b8571cf0 73707474 612f2f3a 2e737070 65636166  ttps://apps.face
10-21 14:49:47.584 29564 30526 E CRASH   :     b8571d00 6b6f6f62 6d6f632e 6765762f 612d7361  book.com/vegas-a
10-21 14:49:47.585 29564 30526 E CRASH   :     b8571d10 702f7070 2e79616c 3f706870 68736168  pp/play.php?hash
10-21 14:49:47.586 29564 30526 E CRASH   :     b8571d20 7266263d 3d64695f 6d697426 74263d65  =&fr_id=&time=&t
10-21 14:49:47.586 29564 30526 E CRASH   :     b8571d30 3d657079 68635050 727a6e69 72617765  ype=PPchinzrewar
10-21 14:49:47.587 29564 30526 E CRASH   :     b8571d40 32527364 31533436 35313036 30343832  dsR264S160152840
10-21 14:49:47.587 29564 30526 E CRASH   :     b8571d50 36314530 30323430 39393736 65746926  0E1604206799&ite
10-21 14:49:47.588 29564 30526 E CRASH   :     b8571d60 64695f6d 7626303d 66697265 70263d79  m_id=0&verify=&p
10-21 14:49:47.589 29564 30526 E CRASH   :     b8571d70 3d707974 79746326 73263d70 79263d65  typ=&ctyp=&se=&y
10-21 14:49:47.589 29564 30526 E CRASH   :     b8571d80 6f6f6861 3d64695f 66657226 7269763d  ahoo_id=&ref=vir
10-21 14:49:47.590 29564 30526 E CRASH   :     b8571d90 75266c61 79745f73 263d6570 003d6372  al&us_type=&rc=.
10-21 14:49:47.591 29564 30526 E CRASH   :     b8571da0 00000000 00000000 b8571cc8 00000128  ..........W.(...
10-21 14:49:47.591 29564 30526 E CRASH   :     b8571db0 00000009 00000219 00000000 ffffffff  ................
10-21 14:49:47.591 29564 30526 E CRASH   : 
10-21 14:49:47.591 29564 30526 E CRASH   : memory near r9:
10-21 14:49:47.592 29564 30526 E CRASH   :     b88f33e0 00000000 40000000 00217bb0 00002003  .......@.{!.. ..
10-21 14:49:47.608  3606  3668 I display : HWC setVsyncEnabled = 0
10-21 14:49:47.613 29564 30526 E CRASH   :     b88f33f0 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.613 29564 30526 E CRASH   :     b88f3400 005c0000 00000000 00000000 00000024  ...........$...
10-21 14:49:47.613 29564 30526 E CRASH   :     b88f3410 0000773e 00000000 00000000 00000000  >w..............
10-21 14:49:47.614 29564 30526 E CRASH   :     b88f3420 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.614 29564 30526 E CRASH   :     b88f3430 00000000 00000001 00000000 00000001  ................
10-21 14:49:47.623 29564 30526 E CRASH   :     b88f3440 00000001 00000000 00000000 00000000  ................
10-21 14:49:47.624 29564 30526 E CRASH   :     b88f3450 00000001 00002001 00000000 00000000  ..... ..........
10-21 14:49:47.624 29564 30526 E CRASH   :     b88f3460 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.625 29564 30526 E CRASH   :     b88f3470 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.626 29564 30526 E CRASH   :     b88f3480 00000000 00000000 00000001 00000000  ................
10-21 14:49:47.627 29564 30526 E CRASH   :     b88f3490 0000168a 00000000 e0540070 00000000  ........p.T.....
10-21 14:49:47.627 29564 30526 E CRASH   :     b88f34a0 b587e000 b597e4e1 b597e640 00000000  ........@.......
10-21 14:49:47.628 29564 30526 E CRASH   :     b88f34b0 00000000 ea164380 00000000 00000000  .....C..........
10-21 14:49:47.629 29564 30526 E CRASH   :     b88f34c0 14c760d0 00000000 b587c000 00104230  .`..........0B..
10-21 14:49:47.629 29564 30526 E CRASH   :     b88f34d0 00000000 00000000 00000000 b597e4e4  ................
10-21 14:49:47.630 29564 30526 E CRASH   : 
10-21 14:49:47.630 29564 30526 E CRASH   : memory near sl:
10-21 14:49:47.630 29564 30526 E CRASH   :     b597e4d0 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.631 29564 30526 E CRASH   :     b597e4e0 d59a7860 00000000 00000002 14a01b58  `x..........X...
10-21 14:49:47.632 29564 30526 E CRASH   :     b597e4f0 14cc97e8 14c80260 b597e5d0 b88f3400  ....`........4..
10-21 14:49:47.652 29564 30526 E CRASH   :     b597e500 b597e668 e881b260 b597ed40 00000001  h...`...@.......
10-21 14:49:47.652 29564 30526 E CRASH   :     b597e510 00000001 e5543467 b597ed40 6f516500  ....g4T.@....eQo
10-21 14:49:47.652 29564 30526 E CRASH   :     b597e520 b597e730 6f660340 00000000 00000000  0...@.fo........
10-21 14:49:47.652 29564 30526 E CRASH   :     b597e530 ea245180 d5f37920 14a01b58 14cc97e8  .Q$. y..X.......
10-21 14:49:47.653 29564 30526 E CRASH   :     b597e540 16f1b07d 00000002 00000003 14a01b58  }...........X...
10-21 14:49:47.654 29564 30526 E CRASH   :     b597e550 00000001 b597e5e8 b597e56c e540ebc7  ........l.....@.
10-21 14:49:47.654 29564 30526 E CRASH   :     b597e560 00000000 14a01b58 14cc97e8 b929242c  ....X.......,$).
10-21 14:49:47.654 29564 30526 E CRASH   :     b597e570 00000002 00000003 14a01b58 e881b260  ........X...`...
10-21 14:49:47.654 29564 30526 E CRASH   :     b597e580 b597e5a8 b597e5e8 00000000 e57659db  .............Yv.
10-21 14:49:47.655 29564 30526 E CRASH   :     b597e590 b597ed40 00000000 b597e5e8 b597e5a8  @...............
10-21 14:49:47.655 29564 30526 E CRASH   :     b597e5a0 00000008 b88f3400 b597e5d0 b88f3400  .....4.......4..
10-21 14:49:47.655 29564 30526 E CRASH   :     b597e5b0 b597e668 e881b260 b597ed40 00000001  h...`...@.......
10-21 14:49:47.655 29564 30526 E CRASH   :     b597e5c0 00000001 e5543467 b597ed40 6f516500  ....g4T.@....eQo
10-21 14:49:47.655 29564 30526 E CRASH   : 
10-21 14:49:47.655 29564 30526 E CRASH   : memory near fp:
10-21 14:49:47.655 29564 30526 E CRASH   :     b88f33e0 00000000 40000000 00217bb0 00002003  .......@.{!.. ..
10-21 14:49:47.656 29564 30526 E CRASH   :     b88f33f0 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.656 29564 30526 E CRASH   :     b88f3400 005c0000 00000000 00000000 00000024  ...........$...
10-21 14:49:47.656 29564 30526 E CRASH   :     b88f3410 0000773e 00000000 00000000 00000000  >w..............
10-21 14:49:47.656 29564 30526 E CRASH   :     b88f3420 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.656 29564 30526 E CRASH   :     b88f3430 00000000 00000000 00000000 00000001  ................
10-21 14:49:47.656 29564 30526 E CRASH   :     b88f3440 00000001 00000000 00000000 00000000  ................
10-21 14:49:47.656 29564 30526 E CRASH   :     b88f3450 00000001 00002001 00000000 00000000  ..... ..........
10-21 14:49:47.656 29564 30526 E CRASH   :     b88f3460 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.657 29564 30526 E CRASH   :     b88f3470 00000000 00000000 00000000 00000000  ................
10-21 14:49:47.657 29564 30526 E CRASH   :     b88f3480 00000000 00000000 00000001 00000000  ................
10-21 14:49:47.657 29564 30526 E CRASH   :     b88f3490 0000168a 00000000 e0540070 00000000  ........p.T.....
10-21 14:49:47.657 29564 30526 E CRASH   :     b88f34a0 b587e000 b597e4e1 b597e640 00000000  ........@.......
10-21 14:49:47.657 29564 30526 E CRASH   :     b88f34b0 00000000 ea164380 00000000 00000000  .....C..........
10-21 14:49:47.657 29564 30526 E CRASH   :     b88f34c0 14c760d0 00000000 b587c000 00104230  .`..........0B..
10-21 14:49:47.658 29564 30526 E CRASH   :     b88f34d0 00000000 00000000 00000000 b597e4e4  ................
10-21 14:49:47.658 29564 30526 E CRASH   : 
10-21 14:49:47.658 29564 30526 E CRASH   : memory near sp:
10-21 14:49:47.658 29564 30526 E CRASH   :     b597e418 b597e4b0 00000010 000000c0 b41e64c0  .............d..
10-21 14:49:47.658 29564 30526 E CRASH   :     b597e428 00000127 b597e4f0 b88f3400 b4566179  '........4..yaV.
10-21 14:49:47.658 29564 30526 E CRASH   :     b597e438 00000000 b41e64c0 b597e498 b597e498  .....d..........
10-21 14:49:47.658 29564 30526 E CRASH   :     b597e448 00000000 14a01b58 00000001 b4813b47  ....X.......G;..
10-21 14:49:47.658 29564 30526 E CRASH   :     b597e458 b8571ce0 b41e6499 b41e64c0 00000127  ..W..d...d..'...
10-21 14:49:47.658 29564 30526 E CRASH   :     b597e468 b8571c00 b597e498 00000000 14a01b58  ..W.........X...
10-21 14:49:47.659 29564 30526 E CRASH   :     b597e478 00000001 16f1b07d b8571820 b597e498  ....}... .W.....
10-21 14:49:47.659 29564 30526 E CRASH   :     b597e488 14a01b58 b4a3dc65 b597ed40 b8571c00  X...e...@.....W.
10-21 14:49:47.659 29564 30526 E CRASH   :     b597e498 b8571ce0 000000bf 00000004 b88f3400  ..W..........4..
10-21 14:49:47.664 29564 30526 E CRASH   :     b597e4a8 b597e560 000000bf 00000000 ffffffff  `...............
10-21 14:49:47.665 29564 30526 E CRASH   :     b597e4b8 00000049 16f1b07d d59a7860 00000002  I...}...`x......
10-21 14:49:47.665 29564 30526 E CRASH   :     b597e4c8 00000003 e541351b 00000000 00000000  .....5A.........
10-21 14:49:47.666 29564 30526 E CRASH   :     b597e4d8 00000000 00000000 d59a7860 00000000  ........`x......
10-21 14:49:47.666 29564 30526 E CRASH   :     b597e4e8 00000002 14a01b58 14cc97e8 14c80260  ....X.......`...
10-21 14:49:47.666 29564 30526 E CRASH   :     b597e4f8 b597e5d0 b88f3400 b597e668 e881b260  .....4..h...`...
10-21 14:49:47.667 29564 30526 E CRASH   :     b597e508 b597ed40 00000001 00000001 e5543467  @...........g4T.
10-21 14:49:47.667 29564 30526 E CRASH   : 
10-21 14:49:47.667 29564 30526 E CRASH   : code around pc:
10-21 14:49:47.668 29564 30526 E CRASH   :     b41e6404 4602ee3a 46214628 f804f000 bd704628  :..F(F!F....(Fp.
10-21 14:49:47.671 29564 30526 E CRASH   :     b41e6414 0142335a 41f0e92d 4606b082 46354614  Z3B.-..A...F.F5F
10-21 14:49:47.672 29564 30526 E CRASH   :     b41e6424 f8554688 28000b04 bf084607 4547462f  .FU....(.F../FGE
10-21 14:49:47.673 29564 30526 E CRASH   :     b41e6434 6971d803 4542187a 6871d834 460ab161  ..qiz.BE4.qha..F
10-21 14:49:47.674 29564 30526 E CRASH   :     b41e6444 bf082800 42a2220f b130d21f f106b129  .(...".B..0.)...
10-21 14:49:47.675 29564 30526 E CRASH   :     b41e6454 f37f0118 e000ff46 2c10b310 f240d30d  ....F......,..@.
10-21 14:49:47.676 29564 30526 E CRASH   :     b41e6464 a1161027 1000e9cd f1061c60 21100218  '.......`......!
10-21 14:49:47.676 29564 30526 E CRASH   :     b41e6474 f37f2300 4621fe6d 2000e001 e9c62100  .#..m.!F... .!..
10-21 14:49:47.677 29564 30526 E CRASH   :     b41e6484 28000100 4605bf18 4638462f 46224641  ...(...F/F8FAF"F
10-21 14:49:47.678 29564 30526 E CRASH   :     b41e6494 edf6f75c 55382000 b0026174 81f0e8bd  .... 8Uta......
10-21 14:49:47.678 29564 30526 E CRASH   :     b41e64a4 e7d0220f bf3842a1 4547460c 4638d0f2  ."...B8..FGE..8F
10-21 14:49:47.679 29564 30526 E CRASH   :     b41e64b4 46224641 edeaf75c bf00e7ec 75522f2e  AF"F......../Ru
10-21 14:49:47.680 29564 30526 E CRASH   :     b41e64c4 6d69746e 6f432f65 432f6572 61746e6f  ntime/Core/Conta
10-21 14:49:47.681 29564 30526 E CRASH   :     b41e64d4 72656e69 74532f73 676e6972 726f7453  iners/StringStor
10-21 14:49:47.682 29564 30526 E CRASH   :     b41e64e4 44656761 75616665 682e746c 00000000  ageDefault.h....
10-21 14:49:47.683 29564 30526 E CRASH   :     b41e64f4 41f0e92d 3400e9d1 68104680 10b61ae6  -..A...4.F.h....
10-21 14:49:47.683 29564 30526 E CRASH   : 
10-21 14:49:47.683 29564 30526 E CRASH   : code around lr:
10-21 14:49:47.684 29564 30526 E CRASH   :     b4813b24 f8904770 477001dd b08ab5b0 4916460c  pG....pG.....F.I
10-21 14:49:47.684 29564 30526 E CRASH   :     b4813b34 7029f500 68094479 91096809 f5d24621  ..)pyD.h.h..!F..
10-21 14:49:47.684 29564 30526 E CRASH   :     b4813b44 f1bcf5ab b1a0fe4d 0b04f854 2800466d  ....M...T...mF.(
10-21 14:49:47.684 29564 30526 E CRASH   :     b4813b54 4604bf18 46214628 f442f5d2 f5db2100  ...F(F!F..B..!..
10-21 14:49:47.684 29564 30526 E CRASH   :     b4813b64 9800f133 9901b128 f105b119 f5520118  3...(.........R.
10-21 14:49:47.685 29564 30526 E CRASH   :     b4813b74 4806fbb8 44789909 68006800 bf041a40  ...H..xD.h.h@...
10-21 14:49:47.685 29564 30526 E CRASH   :     b4813b84 bdb0b00a e26af52f 00df5bec 00df5baa  ..../.j..[...[..
10-21 14:49:47.685 29564 30526 E CRASH   :     b4813b94 490db580 44794b0e e030f8df c034f8df  ...I.KyD..0...4.
10-21 14:49:47.685 29564 30526 E CRASH   :     b4813ba4 4a0d447b 610844fe 447a2000 44fc604a  {D.J.D.a. zDJ`.D
10-21 14:49:47.685 29564 30526 E CRASH   :     b4813bb4 e30de9c1 c03cf8c1 000ae9c1 e8bd4608  ......<......F..
10-21 14:49:47.685 29564 30526 E CRASH   :     b4813bc4 f5754080 bf00bb01 00de3012 fffffcd5  .@u......0......
10-21 14:49:47.685 29564 30526 E CRASH   :     b4813bd4 fffffdf9 00000cd3 0000002f b08ab570  ......../...p...
10-21 14:49:47.686 29564 30526 E CRASH   :     b4813be4 e03cf8df f8df461c 4613c03c 460a44fe  ..<..F..<..F.D.F
10-21 14:49:47.686 29564 30526 E CRASH   :     b4813bf4 460144fc 20002604 6e00e9cd e9cd250f  .D.F.&. ...n.%..
10-21 14:49:47.686 29564 30526 E CRASH   :     b4813c04 a8060c02 f0009504 ad06fdf9 9400cd2e  ................
10-21 14:49:47.686 29564 30526 E CRASH   :     b4813c14 f7ff4628 f554fc55 4628f8c5 bd70b00a  (F..U.T...(F..p.
--------- beginning of crash
10-21 14:49:47.699 29564 30526 E AndroidRuntime: FATAL EXCEPTION: UnityMain
10-21 14:49:47.699 29564 30526 E AndroidRuntime: Process: air.com.bitrhymes.bingo, PID: 29564
10-21 14:49:47.699 29564 30526 E AndroidRuntime: java.lang.Error: signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 000002a4
10-21 14:49:47.699 29564 30526 E AndroidRuntime: Build fingerprint: 'samsung/gta3xlinu/gta3xl:10/QP1A.190711.020/T515XXU5BTI1:user/release-keys'
10-21 14:49:47.699 29564 30526 E AndroidRuntime: Revision: '4'
10-21 14:49:47.699 29564 30526 E AndroidRuntime: pid: 29564, tid: 30526, name: UnityMain  >>> air.com.bitrhymes.bingo <<<
10-21 14:49:47.699 29564 30526 E AndroidRuntime:     r0 000002a4  r1 b8571ce0  r2 000000bf  r3 00000000
10-21 14:49:47.699 29564 30526 E AndroidRuntime:     r4 000000bf  r5 000002a4  r6 000002a4  r7 14a01b58
10-21 14:49:47.699 29564 30526 E AndroidRuntime:     r8 b8571ce0  r9 b88f3400  sl b597e4f0  fp b88f3400
10-21 14:49:47.699 29564 30526 E AndroidRuntime:     ip 00000063  sp b597e438  lr b4813b47  pc b41e6426  cpsr b599c900
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libunity.core::StringStorageDefault<char>::assign(char const*, unsigned int)(StringStorageDefault:13)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libunity.PlayerSettings::SetAbsoluteURL(core::basic_string<char, core::StringStorageDefault<char> > const&)(SetAbsoluteURL:22)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libunity.nativeSetLaunchURL(_JNIEnv*, _jobject*, _jstring*)(nativeSetLaunchURL:72)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.699 29564 30526 E AndroidRuntime: 	at libart.0000d519(Native Method)
10-21 14:49:47.736  4058 30534 I DropBoxManagerService: add tag=data_app_crash isTagEnabled=true flags=0x2
10-21 14:49:47.740  4058  7039 D Debug   : !@DumpState : SHIP
10-21 14:49:47.740  4058  7039 D Debug   : !@DumpState : debug level:0x4f4c
10-21 14:49:47.740  4058  7039 D Debug   : !@Dumpstate : Finally, system will skip dumpstate
10-21 14:49:47.741  4058  7039 W ActivityManager: crash : air.com.bitrhymes.bingo,0
10-21 14:49:47.747  4058  7039 W ActivityTaskManager:   Force finishing activity air.com.bitrhymes.bingo/com.google.firebase.MessagingUnityPlayerActivity
10-21 14:49:47.752 29564 29564 I Unity   : onPause
10-21 14:49:47.778 29564 30526 I Process : Sending signal. PID: 29564 SIG: 9
10-21 14:49:47.786 26989 26989 I BatteryReceiver: Received : com.samsung.android.sm.ACTION_ERROR

Понравилась статья? Поделить с друзьями:
  • Java lang error failed to initialize reflection provider
  • Java lang classnotfoundexception ошибка
  • Java lang classnotfoundexception как исправить
  • Java lang classcastexception как исправить
  • Java jvm used by gradle ran out of available ram mcreator ошибка