NoSuchMethodException when trying to launch my app from Android Studio

Pak

I'm new to Android programming and can't launch my app installed from Android studio. I've installed my app to my phone via USB. Everything went fine before I launched. Then it crashes and stop without displaying any error. So I've tried on another phone sending my app from my phone. They can't even install it.

Below is my log cat when I launch my app.

2019-01-18 21:59:59.218 28416-28416/? I/art: Late-enabling -Xcheck:jni
2019-01-18 21:59:59.230 28416-28416/? D/TidaProvider: TidaProvider()
2019-01-18 21:59:59.240 28416-28416/? W/ReflectionUtils: 
java.lang.NoSuchMethodException: android.os.MessageQueue#enableMonitor()#bestmatch
    at miui.util.ReflectionUtils.findMethodBestMatch(ReflectionUtils.java:338)
    at miui.util.ReflectionUtils.findMethodBestMatch(ReflectionUtils.java:375)
    at miui.util.ReflectionUtils.callMethod(ReflectionUtils.java:800)
    at miui.util.ReflectionUtils.tryCallMethod(ReflectionUtils.java:818)
    at android.os.BaseLooper.enableMonitor(BaseLooper.java:47)
    at android.os.Looper.prepareMainLooper(Looper.java:112)
    at android.app.ActivityThread.main(ActivityThread.java:6366)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:904)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:794)
2019-01-18 21:59:59.275 28416-28416/com.gpchat.ppk W/System: ClassLoader referenced unknown path: /data/app/com.gpchat.ppk-1/lib/arm64
2019-01-18 21:59:59.373 28416-28435/com.gpchat.ppk W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
2019-01-18 21:59:59.389 28416-28437/com.gpchat.ppk W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
2019-01-18 21:59:59.393 28416-28416/com.gpchat.ppk D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
2019-01-18 21:59:59.394 28416-28416/com.gpchat.ppk I/FirebaseInitProvider: FirebaseApp initialization successful
2019-01-18 21:59:59.396 28416-28416/com.gpchat.ppk D/AndroidRuntime: Shutting down VM
2019-01-18 21:59:59.397 28416-28437/com.gpchat.ppk I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
2019-01-18 21:59:59.397 28416-28437/com.gpchat.ppk I/FirebaseAuth: [FirebaseAuth:] Preparing to create service connection to gms implementation

--------- beginning of crash
2019-01-18 21:59:59.397 28416-28416/com.gpchat.ppk E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.gpchat.ppk, PID: 28416
java.lang.RuntimeException: Unable to get provider com.google.android.gms.ads.MobileAdsInitProvider: java.lang.IllegalStateException: 

******************************************************************************
* The Google Mobile Ads SDK was initialized incorrectly. AdMob publishers    *
* should follow the instructions here: https://goo. gl/fQ2neu to add a valid  *
* App ID inside the AndroidManifest. Google Ad Manager publishers should     *
* follow instructions here: https://goo. gl/h17b6x.                           *
******************************************************************************


    at android.app.ActivityThread.installProvider(ActivityThread.java:6113)
    at android.app.ActivityThread.installContentProviders(ActivityThread.java:5589)
    at android.app.ActivityThread.handleBindApplication(ActivityThread.java:5528)
    at android.app.ActivityThread.-wrap2(ActivityThread.java)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1625)
    at android.os.Handler.dispatchMessage(Handler.java:102)
    at android.os.Looper.loop(Looper.java:163)
    at android.app.ActivityThread.main(ActivityThread.java:6383)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:904)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:794)
 Caused by: java.lang.IllegalStateException: 

******************************************************************************
* The Google Mobile Ads SDK was initialized incorrectly. AdMob publishers    *
* should follow the instructions here: https://goo. gl/fQ2neu to add a valid  *
* App ID inside the AndroidManifest. Google Ad Manager publishers should     *
* follow instructions here: https://goo. gl/h17b6x.                           *
******************************************************************************


    at com.google.android.gms.internal.ads.zzze.attachInfo(Unknown Source)
    at com.google.android.gms.ads.MobileAdsInitProvider.attachInfo(Unknown Source)
    at android.app.ActivityThread.installProvider(ActivityThread.java:6110)
        ... 10 more
2019-01-18 21:59:59.426 28416-28439/com.gpchat.ppk I/FA: App measurement is starting up, version: 14710
2019-01-18 21:59:59.426 28416-28439/com.gpchat.ppk I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
2019-01-18 21:59:59.427 28416-28439/com.gpchat.ppk I/FA: To enable faster debug mode event logging run:
  adb shell setprop debug.firebase.analytics.app com.my.talker.ppk
2019-01-18 21:59:59.454 28416-28416/com.gpchat.ppk I/Process: Sending signal. PID: 28416 SIG: 9

Can someone help me?

Ali Ali
******************************************************************************
* The Google Mobile Ads SDK was initialized incorrectly. AdMob publishers    *
* should follow the instructions here: https://goo. gl/fQ2neu to add a valid  *
* App ID inside the AndroidManifest. Google Ad Manager publishers should     *
* follow instructions here: https://goo. gl/h17b6x.                           *
******************************************************************************

This happened due to updated AdMob SDK. Now you need to add appID in your manifest file.

<application> . . . 
      <meta-data 
           android:name="com.google.android.gms.ads.APPLICATION_ID" 
           android:value="ca-app-pub-################~##########"/>
</application>

You can get appID from here -->Google addmob -->Select app --> App Settings --> App ID.

Also, Try adding this dependency to your gradle build file:

implementation 'com.google.android.gms:play-services-ads:12.0.0'

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

Android http URL scheme is not working when I try to launch my application from a link on my website

分類Dev

Android http URL scheme is not working when I try to launch my application from a link on my website

分類Dev

Where should I add android:taskAffinity when I launch existing instance of an activity from static shortcut in Android Studio?

分類Dev

When I run my app on Android Studio, emulator starts but it says that the test app crashed

分類Dev

How do i get the launch intent for my work profile app from my app in the primary profile?

分類Dev

Launch an application particluar activity with data from my application on Android

分類Dev

Can no longer launch app from FirebaseMessagingService after Android OS update

分類Dev

Kotlin how to launch an async processing from android.app.Application

分類Dev

java.lang.ClassNotFoundException when trying to build Android App from Unity

分類Dev

Trying to launch an app if connected to office VPN

分類Dev

When asking to launch my application to google assistant I get a message about google sharing data preventing to launch the app

分類Dev

Will my app be slow on a device if it's slow on my Android Studio emulator?

分類Dev

Android app is unable to launch on device

分類Dev

Compiler Errors when trying to install a button in android studio

分類Dev

Android app error when trying to connect to SQL Server 2005

分類Dev

IllegalStateException when trying selecting photo from Google Photos app

分類Dev

How to launch android application from my html5 mobile web application

分類Dev

Is it possible to launch an app when an NFC tag is scanned?

分類Dev

Launch QT App from Custom Protocol - Windows

分類Dev

Android Studio - App crash when using intent parameter

分類Dev

android studio app crashes when setting gradient background

分類Dev

Nginx File 404 when trying to launch drupal install.php

分類Dev

Error when trying to launch program that uses libtcod for ruby

分類Dev

Infinite loop when trying to launch a symbolic-link to a bash script

分類Dev

How to detect installed Chrome version from my Android App?

分類Dev

How to detect installed Chrome version from my Android App?

分類Dev

Can I force my Android app to update from the Play Store?

分類Dev

Can I localize my whole android app from a button click

分類Dev

Retrieving the user name and email id from Facebook into my android app

Related 関連記事

  1. 1

    Android http URL scheme is not working when I try to launch my application from a link on my website

  2. 2

    Android http URL scheme is not working when I try to launch my application from a link on my website

  3. 3

    Where should I add android:taskAffinity when I launch existing instance of an activity from static shortcut in Android Studio?

  4. 4

    When I run my app on Android Studio, emulator starts but it says that the test app crashed

  5. 5

    How do i get the launch intent for my work profile app from my app in the primary profile?

  6. 6

    Launch an application particluar activity with data from my application on Android

  7. 7

    Can no longer launch app from FirebaseMessagingService after Android OS update

  8. 8

    Kotlin how to launch an async processing from android.app.Application

  9. 9

    java.lang.ClassNotFoundException when trying to build Android App from Unity

  10. 10

    Trying to launch an app if connected to office VPN

  11. 11

    When asking to launch my application to google assistant I get a message about google sharing data preventing to launch the app

  12. 12

    Will my app be slow on a device if it's slow on my Android Studio emulator?

  13. 13

    Android app is unable to launch on device

  14. 14

    Compiler Errors when trying to install a button in android studio

  15. 15

    Android app error when trying to connect to SQL Server 2005

  16. 16

    IllegalStateException when trying selecting photo from Google Photos app

  17. 17

    How to launch android application from my html5 mobile web application

  18. 18

    Is it possible to launch an app when an NFC tag is scanned?

  19. 19

    Launch QT App from Custom Protocol - Windows

  20. 20

    Android Studio - App crash when using intent parameter

  21. 21

    android studio app crashes when setting gradient background

  22. 22

    Nginx File 404 when trying to launch drupal install.php

  23. 23

    Error when trying to launch program that uses libtcod for ruby

  24. 24

    Infinite loop when trying to launch a symbolic-link to a bash script

  25. 25

    How to detect installed Chrome version from my Android App?

  26. 26

    How to detect installed Chrome version from my Android App?

  27. 27

    Can I force my Android app to update from the Play Store?

  28. 28

    Can I localize my whole android app from a button click

  29. 29

    Retrieving the user name and email id from Facebook into my android app

ホットタグ

アーカイブ