()
| 64 | } |
| 65 | |
| 66 | get uuid(): string { |
| 67 | if (!this._uuid) { |
| 68 | const nativeApp = getNativeApp() as android.app.Application; |
| 69 | this._uuid = android.provider.Settings.Secure.getString(nativeApp.getContentResolver(), android.provider.Settings.Secure.ANDROID_ID); |
| 70 | } |
| 71 | |
| 72 | return this._uuid; |
| 73 | } |
| 74 | |
| 75 | get language(): string { |
| 76 | let defaultNativeLocale; |
nothing calls this directly
no test coverage detected