Android google play服务无法正常运行

时间:2017-01-14 14:36:44

标签: android google-maps google-play-services

我只是更新谷歌播放服务包,但它不适合我。我也添加

<meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" /> 

到manifiset和compile 'com.google.android.gms:play-services:6.1.+'建立。 gradle但它不适合我。

import libraries

1 个答案:

答案 0 :(得分:4)

您仍在使用PLAY Service的旧版本,因为在Places

官方提及的版本v.9.4中添加了gms

所以只需将您的compile 'com.google.android.gms:play-services:11.6.0' 依赖关系更新为最新版本,即

Multudex

您还可以使用适当的版本docs releases too

添加单个API

因此,如果可以的话,请使用单独的API,因为这样可以避免将来build.gradle的需要,尽管文档中没有提及个人APP INDEXING API //using global session helper method $variable = session(['exam'=>$exam]); $exam = session('exam'); echo $exam; //exam is always empty //I have also tried this public function myControllermethod(Request $request) { $exam = $request->session()->put('exam',$exam); //get the session $exam = $request->session()->get('exam'); echo $exam // this approach returns the following exception } 说明

相关问题