我只是更新谷歌播放服务包,但它不适合我。我也添加
<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但它不适合我。
答案 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
}
说明