|
|
|
|
GglGetLicense (Function) In french: GglRécupèreLicence
Warning
From version 23 (53), this function always returns an empty string. From 2018, the license for using Google libraries must not be displayed anymore in the application. This license can be accessed by the end user in the phone settings (Settings -> Google -> "Open Source licenses" menu). Caution: This function does no longer return the Google license regardless of the WINDEV Mobile version used.
Returns the text of license for using the Google libraries. Caution: - Since beginning of 2018, Google does not allow you to retrieve the text of Google license for the libraries used. This license for using Google libraries must not be displayed anymore in the application. This license can be accessed by the end user in the phone settings (Settings -> Google -> "Open Source licenses" menu).
- This function does no longer return the Google license regardless of the WINDEV Mobile version used.
sLicense is string sLicense = GglGetLicense(gglPlayServices) IF sLicense <> "" THEN Info(sLicense) END
Syntax
<Result> = GglGetLicense(<Library>)
<Result>: Character string Empty string (""). <Library>: Integer constant Google library for which the license will be retrieved: | | gglPlayServices | Google Play Services library. This library is used in Android for the Map controls based on the Google Maps v2 API. |
Component: wd280android.jar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|