在主Activity的onCreate()中使用示例:
@OverrIDeprotected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);setContentVIEw(R.layout.activity_main);GoogleAPIAvailability.getInstance().makeGooglePlayServicesAvailable(this) .addOnCompleteListener(this,new OnCompleteListener<VoID>() { @OverrIDe public voID onComplete(@NonNull Task<VoID> task) { if (task.isSuccessful()) { Log.d(TAG,"onComplete: Play Services OKAY"); } else { // Show the user some UI explaining that the needed version // of Play Services Could not be installed and the app can't run. } }});...}总结
以上是内存溢出为你收集整理的android – 如何检查firebase应用程序中的google play服务版本全部内容,希望文章能够帮你解决android – 如何检查firebase应用程序中的google play服务版本所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)