我查看了Google有关如何将我的Android应用状态分享到Google+的说明:https://developers.google.com/+/mobile/android/share/
(我正在做一个示例应用程序,它完全按照他们在示例中所做的那样)
我遇到了这个例外:
Process: com.google.android.gms.ui, PID: 19643
java.lang.IllegalArgumentException
at com.google.k.a.aj.a(SourceFile:72)
at com.google.android.gms.plus.audience.a.e.<init>(SourceFile:63)
at com.google.android.gms.plus.audience.a.e.<init>(SourceFile:53)
at com.google.android.gms.plus.audience.a.d.<init>(SourceFile:28)
at com.google.android.gms.plus.sharebox.al.a(SourceFile:213)
at android.support.v4.app.ax.c(SourceFile:490)
at android.support.v4.app.ax.d(SourceFile:499)
at android.support.v4.app.ax.b(SourceFile:646)
at com.google.android.gms.plus.sharebox.al.a(SourceFile:192)
at com.google.android.gms.plus.sharebox.ShareBoxActivity.a(SourceFile:525)
at com.google.android.gms.plus.sharebox.au.a(SourceFile:810)
at com.google.android.gms.plus.internal.ce.a(SourceFile:214)
at com.google.android.gms.common.internal.v.d(SourceFile:200)
at com.google.android.gms.common.internal.u.handleMessage(SourceFile:136)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
似乎错误来自“Google Play服务”,但我不知道为什么?
想法?
答案 0 :(得分:3)
我使用google-play-services 6.1.71看到同样的错误。上面的Edu Barbas有正确的答案,使用ShareCompat.IntentBuilder似乎解决了这个问题。我没有足够的观点评论他的答案,但我想补充一点,意图的建立和共享活动的开始有点不同:
Intent shareIntent = ShareCompat.IntentBuilder.from(TheCurrentActivity.this)
.setType("text/plain")
.setText(statusMessage)
.getIntent()
.setPackage("com.google.android.apps.plus");
startActivityForResult(shareIntent, 0);
离开setPackage(“com.google.android.apps.plus”)行会显示一个通用的Android共享对话框,除了google plus之外,还允许您通过电子邮件,蓝牙和短信进行分享。添加setPackage行可以绕过该对话框并通过google plus独占分享。
答案 1 :(得分:2)
我们在项目中更新了Google Play服务库后,我遇到了同样的问题。我通过PlusShare.Builder
启动了G +共享对话框,这使应用程序崩溃。我通过切换到ShareCompat.IntentBuilder
来解决了这个问题(共享对话框完全相同)。