jni-android-sys 0.0.10

Autogenerated glue code for access Android JVM APIs from Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


#[cfg(any(feature = "all", feature = "android-accounts-AccountManager"))]
__jni_bindgen! {
    /// public class [AccountManager](https://developer.android.com/reference/android/accounts/AccountManager.html)
    ///
    /// Required feature: "android-accounts-AccountManager"
    public class AccountManager ("android/accounts/AccountManager") extends crate::java::lang::Object {

        /// [get](https://developer.android.com/reference/android/accounts/AccountManager.html#get(android.content.Context))
        ///
        /// Required features: "android-accounts-AccountManager", "android-content-Context"
        #[cfg(any(feature = "all", all(feature = "android-accounts-AccountManager", feature = "android-content-Context")))]
        pub fn get<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::Context>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManager>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC | STATIC, .name == "get", .descriptor == "(Landroid/content/Context;)Landroid/accounts/AccountManager;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/accounts/AccountManager\0", "get\0", "(Landroid/content/Context;)Landroid/accounts/AccountManager;\0");
                __jni_env.call_static_object_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getPassword](https://developer.android.com/reference/android/accounts/AccountManager.html#getPassword(android.accounts.Account))
        ///
        /// Required features: "android-accounts-Account", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "java-lang-String")))]
        pub fn getPassword<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getPassword", .descriptor == "(Landroid/accounts/Account;)Ljava/lang/String;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getPassword\0", "(Landroid/accounts/Account;)Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getUserData](https://developer.android.com/reference/android/accounts/AccountManager.html#getUserData(android.accounts.Account,%20java.lang.String))
        ///
        /// Required features: "android-accounts-Account", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "java-lang-String")))]
        pub fn getUserData<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getUserData", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;)Ljava/lang/String;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getUserData\0", "(Landroid/accounts/Account;Ljava/lang/String;)Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAuthenticatorTypes](https://developer.android.com/reference/android/accounts/AccountManager.html#getAuthenticatorTypes())
        ///
        /// Required features: "android-accounts-AuthenticatorDescription"
        #[cfg(any(feature = "all", all(feature = "android-accounts-AuthenticatorDescription")))]
        pub fn getAuthenticatorTypes<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, __jni_bindgen::ObjectArray<crate::android::accounts::AuthenticatorDescription, crate::java::lang::Throwable>>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getAuthenticatorTypes", .descriptor == "()[Landroid/accounts/AuthenticatorDescription;"
            unsafe {
                let __jni_args = [];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getAuthenticatorTypes\0", "()[Landroid/accounts/AuthenticatorDescription;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAccounts](https://developer.android.com/reference/android/accounts/AccountManager.html#getAccounts())
        ///
        /// Required features: "android-accounts-Account"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account")))]
        pub fn getAccounts<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, __jni_bindgen::ObjectArray<crate::android::accounts::Account, crate::java::lang::Throwable>>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getAccounts", .descriptor == "()[Landroid/accounts/Account;"
            unsafe {
                let __jni_args = [];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getAccounts\0", "()[Landroid/accounts/Account;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAccountsByTypeForPackage](https://developer.android.com/reference/android/accounts/AccountManager.html#getAccountsByTypeForPackage(java.lang.String,%20java.lang.String))
        ///
        /// Required features: "android-accounts-Account", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "java-lang-String")))]
        pub fn getAccountsByTypeForPackage<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, __jni_bindgen::ObjectArray<crate::android::accounts::Account, crate::java::lang::Throwable>>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getAccountsByTypeForPackage", .descriptor == "(Ljava/lang/String;Ljava/lang/String;)[Landroid/accounts/Account;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getAccountsByTypeForPackage\0", "(Ljava/lang/String;Ljava/lang/String;)[Landroid/accounts/Account;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAccountsByType](https://developer.android.com/reference/android/accounts/AccountManager.html#getAccountsByType(java.lang.String))
        ///
        /// Required features: "android-accounts-Account", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "java-lang-String")))]
        pub fn getAccountsByType<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, __jni_bindgen::ObjectArray<crate::android::accounts::Account, crate::java::lang::Throwable>>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getAccountsByType", .descriptor == "(Ljava/lang/String;)[Landroid/accounts/Account;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getAccountsByType\0", "(Ljava/lang/String;)[Landroid/accounts/Account;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [hasFeatures](https://developer.android.com/reference/android/accounts/AccountManager.html#hasFeatures(android.accounts.Account,%20java.lang.String%5B%5D,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-Account", "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-os-Handler", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-os-Handler", feature = "java-lang-String")))]
        pub fn hasFeatures<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env __jni_bindgen::ObjectArray<crate::java::lang::String, crate::java::lang::Throwable>>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "hasFeatures", .descriptor == "(Landroid/accounts/Account;[Ljava/lang/String;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "hasFeatures\0", "(Landroid/accounts/Account;[Ljava/lang/String;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAccountsByTypeAndFeatures](https://developer.android.com/reference/android/accounts/AccountManager.html#getAccountsByTypeAndFeatures(java.lang.String,%20java.lang.String%5B%5D,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-os-Handler", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-os-Handler", feature = "java-lang-String")))]
        pub fn getAccountsByTypeAndFeatures<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env __jni_bindgen::ObjectArray<crate::java::lang::String, crate::java::lang::Throwable>>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getAccountsByTypeAndFeatures", .descriptor == "(Ljava/lang/String;[Ljava/lang/String;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getAccountsByTypeAndFeatures\0", "(Ljava/lang/String;[Ljava/lang/String;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [addAccountExplicitly](https://developer.android.com/reference/android/accounts/AccountManager.html#addAccountExplicitly(android.accounts.Account,%20java.lang.String,%20android.os.Bundle))
        ///
        /// Required features: "android-accounts-Account", "android-os-Bundle", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "android-os-Bundle", feature = "java-lang-String")))]
        pub fn addAccountExplicitly<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Bundle>>) -> __jni_bindgen::std::result::Result<bool, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "addAccountExplicitly", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;)Z"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "addAccountExplicitly\0", "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;)Z\0");
                __jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [renameAccount](https://developer.android.com/reference/android/accounts/AccountManager.html#renameAccount(android.accounts.Account,%20java.lang.String,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-Account", "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-os-Handler", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-os-Handler", feature = "java-lang-String")))]
        pub fn renameAccount<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "renameAccount", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "renameAccount\0", "(Landroid/accounts/Account;Ljava/lang/String;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getPreviousName](https://developer.android.com/reference/android/accounts/AccountManager.html#getPreviousName(android.accounts.Account))
        ///
        /// Required features: "android-accounts-Account", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "java-lang-String")))]
        pub fn getPreviousName<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getPreviousName", .descriptor == "(Landroid/accounts/Account;)Ljava/lang/String;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getPreviousName\0", "(Landroid/accounts/Account;)Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [removeAccount](https://developer.android.com/reference/android/accounts/AccountManager.html#removeAccount(android.accounts.Account,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-Account", "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-os-Handler"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-os-Handler")))]
        pub fn removeAccount<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "removeAccount", .descriptor == "(Landroid/accounts/Account;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "removeAccount\0", "(Landroid/accounts/Account;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [invalidateAuthToken](https://developer.android.com/reference/android/accounts/AccountManager.html#invalidateAuthToken(java.lang.String,%20java.lang.String))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn invalidateAuthToken<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "invalidateAuthToken", .descriptor == "(Ljava/lang/String;Ljava/lang/String;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "invalidateAuthToken\0", "(Ljava/lang/String;Ljava/lang/String;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [peekAuthToken](https://developer.android.com/reference/android/accounts/AccountManager.html#peekAuthToken(android.accounts.Account,%20java.lang.String))
        ///
        /// Required features: "android-accounts-Account", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "java-lang-String")))]
        pub fn peekAuthToken<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "peekAuthToken", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;)Ljava/lang/String;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "peekAuthToken\0", "(Landroid/accounts/Account;Ljava/lang/String;)Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setPassword](https://developer.android.com/reference/android/accounts/AccountManager.html#setPassword(android.accounts.Account,%20java.lang.String))
        ///
        /// Required features: "android-accounts-Account", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "java-lang-String")))]
        pub fn setPassword<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "setPassword", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "setPassword\0", "(Landroid/accounts/Account;Ljava/lang/String;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [clearPassword](https://developer.android.com/reference/android/accounts/AccountManager.html#clearPassword(android.accounts.Account))
        ///
        /// Required features: "android-accounts-Account"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account")))]
        pub fn clearPassword<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "clearPassword", .descriptor == "(Landroid/accounts/Account;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "clearPassword\0", "(Landroid/accounts/Account;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setUserData](https://developer.android.com/reference/android/accounts/AccountManager.html#setUserData(android.accounts.Account,%20java.lang.String,%20java.lang.String))
        ///
        /// Required features: "android-accounts-Account", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "java-lang-String")))]
        pub fn setUserData<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "setUserData", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;Ljava/lang/String;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "setUserData\0", "(Landroid/accounts/Account;Ljava/lang/String;Ljava/lang/String;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setAuthToken](https://developer.android.com/reference/android/accounts/AccountManager.html#setAuthToken(android.accounts.Account,%20java.lang.String,%20java.lang.String))
        ///
        /// Required features: "android-accounts-Account", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "java-lang-String")))]
        pub fn setAuthToken<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "setAuthToken", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;Ljava/lang/String;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "setAuthToken\0", "(Landroid/accounts/Account;Ljava/lang/String;Ljava/lang/String;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [blockingGetAuthToken](https://developer.android.com/reference/android/accounts/AccountManager.html#blockingGetAuthToken(android.accounts.Account,%20java.lang.String,%20boolean))
        ///
        /// Required features: "android-accounts-Account", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "java-lang-String")))]
        pub fn blockingGetAuthToken<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: bool) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "blockingGetAuthToken", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;Z)Ljava/lang/String;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2)];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "blockingGetAuthToken\0", "(Landroid/accounts/Account;Ljava/lang/String;Z)Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAuthToken](https://developer.android.com/reference/android/accounts/AccountManager.html#getAuthToken(android.accounts.Account,%20java.lang.String,%20android.os.Bundle,%20android.app.Activity,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-Account", "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-app-Activity", "android-os-Bundle", "android-os-Handler", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-app-Activity", feature = "android-os-Bundle", feature = "android-os-Handler", feature = "java-lang-String")))]
        pub fn getAuthToken_Account_String_Bundle_Activity_AccountManagerCallback_Handler<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Bundle>>, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::app::Activity>>, arg4: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg5: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getAuthToken", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3.into()), __jni_bindgen::AsJValue::as_jvalue(&arg4.into()), __jni_bindgen::AsJValue::as_jvalue(&arg5.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getAuthToken\0", "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAuthToken](https://developer.android.com/reference/android/accounts/AccountManager.html#getAuthToken(android.accounts.Account,%20java.lang.String,%20boolean,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-Account", "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-os-Handler", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-os-Handler", feature = "java-lang-String")))]
        #[deprecated] pub fn getAuthToken_Account_String_boolean_AccountManagerCallback_Handler<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: bool, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg4: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getAuthToken", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;ZLandroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2), __jni_bindgen::AsJValue::as_jvalue(&arg3.into()), __jni_bindgen::AsJValue::as_jvalue(&arg4.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getAuthToken\0", "(Landroid/accounts/Account;Ljava/lang/String;ZLandroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAuthToken](https://developer.android.com/reference/android/accounts/AccountManager.html#getAuthToken(android.accounts.Account,%20java.lang.String,%20android.os.Bundle,%20boolean,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-Account", "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-os-Bundle", "android-os-Handler", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-os-Bundle", feature = "android-os-Handler", feature = "java-lang-String")))]
        pub fn getAuthToken_Account_String_Bundle_boolean_AccountManagerCallback_Handler<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Bundle>>, arg3: bool, arg4: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg5: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getAuthToken", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;ZLandroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3), __jni_bindgen::AsJValue::as_jvalue(&arg4.into()), __jni_bindgen::AsJValue::as_jvalue(&arg5.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getAuthToken\0", "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;ZLandroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [addAccount](https://developer.android.com/reference/android/accounts/AccountManager.html#addAccount(java.lang.String,%20java.lang.String,%20java.lang.String%5B%5D,%20android.os.Bundle,%20android.app.Activity,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-app-Activity", "android-os-Bundle", "android-os-Handler", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-app-Activity", feature = "android-os-Bundle", feature = "android-os-Handler", feature = "java-lang-String")))]
        pub fn addAccount<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env __jni_bindgen::ObjectArray<crate::java::lang::String, crate::java::lang::Throwable>>>, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Bundle>>, arg4: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::app::Activity>>, arg5: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg6: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "addAccount", .descriptor == "(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3.into()), __jni_bindgen::AsJValue::as_jvalue(&arg4.into()), __jni_bindgen::AsJValue::as_jvalue(&arg5.into()), __jni_bindgen::AsJValue::as_jvalue(&arg6.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "addAccount\0", "(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [confirmCredentials](https://developer.android.com/reference/android/accounts/AccountManager.html#confirmCredentials(android.accounts.Account,%20android.os.Bundle,%20android.app.Activity,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-Account", "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-app-Activity", "android-os-Bundle", "android-os-Handler"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-app-Activity", feature = "android-os-Bundle", feature = "android-os-Handler")))]
        pub fn confirmCredentials<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Bundle>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::app::Activity>>, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg4: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "confirmCredentials", .descriptor == "(Landroid/accounts/Account;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3.into()), __jni_bindgen::AsJValue::as_jvalue(&arg4.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "confirmCredentials\0", "(Landroid/accounts/Account;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [updateCredentials](https://developer.android.com/reference/android/accounts/AccountManager.html#updateCredentials(android.accounts.Account,%20java.lang.String,%20android.os.Bundle,%20android.app.Activity,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-Account", "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-app-Activity", "android-os-Bundle", "android-os-Handler", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-app-Activity", feature = "android-os-Bundle", feature = "android-os-Handler", feature = "java-lang-String")))]
        pub fn updateCredentials<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Bundle>>, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::app::Activity>>, arg4: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg5: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "updateCredentials", .descriptor == "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3.into()), __jni_bindgen::AsJValue::as_jvalue(&arg4.into()), __jni_bindgen::AsJValue::as_jvalue(&arg5.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "updateCredentials\0", "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [editProperties](https://developer.android.com/reference/android/accounts/AccountManager.html#editProperties(java.lang.String,%20android.app.Activity,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-app-Activity", "android-os-Handler", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-app-Activity", feature = "android-os-Handler", feature = "java-lang-String")))]
        pub fn editProperties<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::app::Activity>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "editProperties", .descriptor == "(Ljava/lang/String;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "editProperties\0", "(Ljava/lang/String;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAuthTokenByFeatures](https://developer.android.com/reference/android/accounts/AccountManager.html#getAuthTokenByFeatures(java.lang.String,%20java.lang.String,%20java.lang.String%5B%5D,%20android.app.Activity,%20android.os.Bundle,%20android.os.Bundle,%20android.accounts.AccountManagerCallback,%20android.os.Handler))
        ///
        /// Required features: "android-accounts-AccountManagerCallback", "android-accounts-AccountManagerFuture", "android-app-Activity", "android-os-Bundle", "android-os-Handler", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-accounts-AccountManagerCallback", feature = "android-accounts-AccountManagerFuture", feature = "android-app-Activity", feature = "android-os-Bundle", feature = "android-os-Handler", feature = "java-lang-String")))]
        pub fn getAuthTokenByFeatures<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env __jni_bindgen::ObjectArray<crate::java::lang::String, crate::java::lang::Throwable>>>, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::app::Activity>>, arg4: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Bundle>>, arg5: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Bundle>>, arg6: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::AccountManagerCallback>>, arg7: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::accounts::AccountManagerFuture>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "getAuthTokenByFeatures", .descriptor == "(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Landroid/app/Activity;Landroid/os/Bundle;Landroid/os/Bundle;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3.into()), __jni_bindgen::AsJValue::as_jvalue(&arg4.into()), __jni_bindgen::AsJValue::as_jvalue(&arg5.into()), __jni_bindgen::AsJValue::as_jvalue(&arg6.into()), __jni_bindgen::AsJValue::as_jvalue(&arg7.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "getAuthTokenByFeatures\0", "(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Landroid/app/Activity;Landroid/os/Bundle;Landroid/os/Bundle;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [newChooseAccountIntent](https://developer.android.com/reference/android/accounts/AccountManager.html#newChooseAccountIntent(android.accounts.Account,%20java.util.ArrayList,%20java.lang.String%5B%5D,%20boolean,%20java.lang.String,%20java.lang.String,%20java.lang.String%5B%5D,%20android.os.Bundle))
        ///
        /// Required features: "android-accounts-Account", "android-content-Intent", "android-os-Bundle", "java-lang-String", "java-util-ArrayList"
        #[cfg(any(feature = "all", all(feature = "android-accounts-Account", feature = "android-content-Intent", feature = "android-os-Bundle", feature = "java-lang-String", feature = "java-util-ArrayList")))]
        pub fn newChooseAccountIntent<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::Account>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::util::ArrayList>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env __jni_bindgen::ObjectArray<crate::java::lang::String, crate::java::lang::Throwable>>>, arg3: bool, arg4: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg5: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg6: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env __jni_bindgen::ObjectArray<crate::java::lang::String, crate::java::lang::Throwable>>>, arg7: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Bundle>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::content::Intent>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC | STATIC, .name == "newChooseAccountIntent", .descriptor == "(Landroid/accounts/Account;Ljava/util/ArrayList;[Ljava/lang/String;ZLjava/lang/String;Ljava/lang/String;[Ljava/lang/String;Landroid/os/Bundle;)Landroid/content/Intent;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3), __jni_bindgen::AsJValue::as_jvalue(&arg4.into()), __jni_bindgen::AsJValue::as_jvalue(&arg5.into()), __jni_bindgen::AsJValue::as_jvalue(&arg6.into()), __jni_bindgen::AsJValue::as_jvalue(&arg7.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/accounts/AccountManager\0", "newChooseAccountIntent\0", "(Landroid/accounts/Account;Ljava/util/ArrayList;[Ljava/lang/String;ZLjava/lang/String;Ljava/lang/String;[Ljava/lang/String;Landroid/os/Bundle;)Landroid/content/Intent;\0");
                __jni_env.call_static_object_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [addOnAccountsUpdatedListener](https://developer.android.com/reference/android/accounts/AccountManager.html#addOnAccountsUpdatedListener(android.accounts.OnAccountsUpdateListener,%20android.os.Handler,%20boolean))
        ///
        /// Required features: "android-accounts-OnAccountsUpdateListener", "android-os-Handler"
        #[cfg(any(feature = "all", all(feature = "android-accounts-OnAccountsUpdateListener", feature = "android-os-Handler")))]
        pub fn addOnAccountsUpdatedListener<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::OnAccountsUpdateListener>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Handler>>, arg2: bool) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "addOnAccountsUpdatedListener", .descriptor == "(Landroid/accounts/OnAccountsUpdateListener;Landroid/os/Handler;Z)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2)];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "addOnAccountsUpdatedListener\0", "(Landroid/accounts/OnAccountsUpdateListener;Landroid/os/Handler;Z)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [removeOnAccountsUpdatedListener](https://developer.android.com/reference/android/accounts/AccountManager.html#removeOnAccountsUpdatedListener(android.accounts.OnAccountsUpdateListener))
        ///
        /// Required features: "android-accounts-OnAccountsUpdateListener"
        #[cfg(any(feature = "all", all(feature = "android-accounts-OnAccountsUpdateListener")))]
        pub fn removeOnAccountsUpdatedListener<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::accounts::OnAccountsUpdateListener>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/accounts/AccountManager", java.flags == PUBLIC, .name == "removeOnAccountsUpdatedListener", .descriptor == "(Landroid/accounts/OnAccountsUpdateListener;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/accounts/AccountManager\0", "removeOnAccountsUpdatedListener\0", "(Landroid/accounts/OnAccountsUpdateListener;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// public static final [ACTION_AUTHENTICATOR_INTENT](https://developer.android.com/reference/android/accounts/AccountManager.html#ACTION_AUTHENTICATOR_INTENT)
        pub const ACTION_AUTHENTICATOR_INTENT : &'static str = "android.accounts.AccountAuthenticator";

        /// public static final [AUTHENTICATOR_ATTRIBUTES_NAME](https://developer.android.com/reference/android/accounts/AccountManager.html#AUTHENTICATOR_ATTRIBUTES_NAME)
        pub const AUTHENTICATOR_ATTRIBUTES_NAME : &'static str = "account-authenticator";

        /// public static final [AUTHENTICATOR_META_DATA_NAME](https://developer.android.com/reference/android/accounts/AccountManager.html#AUTHENTICATOR_META_DATA_NAME)
        pub const AUTHENTICATOR_META_DATA_NAME : &'static str = "android.accounts.AccountAuthenticator";

        /// public static final [ERROR_CODE_BAD_ARGUMENTS](https://developer.android.com/reference/android/accounts/AccountManager.html#ERROR_CODE_BAD_ARGUMENTS)
        pub const ERROR_CODE_BAD_ARGUMENTS : i32 = 7;

        /// public static final [ERROR_CODE_BAD_AUTHENTICATION](https://developer.android.com/reference/android/accounts/AccountManager.html#ERROR_CODE_BAD_AUTHENTICATION)
        pub const ERROR_CODE_BAD_AUTHENTICATION : i32 = 9;

        /// public static final [ERROR_CODE_BAD_REQUEST](https://developer.android.com/reference/android/accounts/AccountManager.html#ERROR_CODE_BAD_REQUEST)
        pub const ERROR_CODE_BAD_REQUEST : i32 = 8;

        /// public static final [ERROR_CODE_CANCELED](https://developer.android.com/reference/android/accounts/AccountManager.html#ERROR_CODE_CANCELED)
        pub const ERROR_CODE_CANCELED : i32 = 4;

        /// public static final [ERROR_CODE_INVALID_RESPONSE](https://developer.android.com/reference/android/accounts/AccountManager.html#ERROR_CODE_INVALID_RESPONSE)
        pub const ERROR_CODE_INVALID_RESPONSE : i32 = 5;

        /// public static final [ERROR_CODE_NETWORK_ERROR](https://developer.android.com/reference/android/accounts/AccountManager.html#ERROR_CODE_NETWORK_ERROR)
        pub const ERROR_CODE_NETWORK_ERROR : i32 = 3;

        /// public static final [ERROR_CODE_REMOTE_EXCEPTION](https://developer.android.com/reference/android/accounts/AccountManager.html#ERROR_CODE_REMOTE_EXCEPTION)
        pub const ERROR_CODE_REMOTE_EXCEPTION : i32 = 1;

        /// public static final [ERROR_CODE_UNSUPPORTED_OPERATION](https://developer.android.com/reference/android/accounts/AccountManager.html#ERROR_CODE_UNSUPPORTED_OPERATION)
        pub const ERROR_CODE_UNSUPPORTED_OPERATION : i32 = 6;

        /// public static final [KEY_ACCOUNTS](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_ACCOUNTS)
        pub const KEY_ACCOUNTS : &'static str = "accounts";

        /// public static final [KEY_ACCOUNT_AUTHENTICATOR_RESPONSE](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_ACCOUNT_AUTHENTICATOR_RESPONSE)
        pub const KEY_ACCOUNT_AUTHENTICATOR_RESPONSE : &'static str = "accountAuthenticatorResponse";

        /// public static final [KEY_ACCOUNT_MANAGER_RESPONSE](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_ACCOUNT_MANAGER_RESPONSE)
        pub const KEY_ACCOUNT_MANAGER_RESPONSE : &'static str = "accountManagerResponse";

        /// public static final [KEY_ACCOUNT_NAME](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_ACCOUNT_NAME)
        pub const KEY_ACCOUNT_NAME : &'static str = "authAccount";

        /// public static final [KEY_ACCOUNT_TYPE](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_ACCOUNT_TYPE)
        pub const KEY_ACCOUNT_TYPE : &'static str = "accountType";

        /// public static final [KEY_ANDROID_PACKAGE_NAME](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_ANDROID_PACKAGE_NAME)
        pub const KEY_ANDROID_PACKAGE_NAME : &'static str = "androidPackageName";

        /// public static final [KEY_AUTHENTICATOR_TYPES](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_AUTHENTICATOR_TYPES)
        pub const KEY_AUTHENTICATOR_TYPES : &'static str = "authenticator_types";

        /// public static final [KEY_AUTHTOKEN](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_AUTHTOKEN)
        pub const KEY_AUTHTOKEN : &'static str = "authtoken";

        /// public static final [KEY_AUTH_FAILED_MESSAGE](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_AUTH_FAILED_MESSAGE)
        pub const KEY_AUTH_FAILED_MESSAGE : &'static str = "authFailedMessage";

        /// public static final [KEY_AUTH_TOKEN_LABEL](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_AUTH_TOKEN_LABEL)
        pub const KEY_AUTH_TOKEN_LABEL : &'static str = "authTokenLabelKey";

        /// public static final [KEY_BOOLEAN_RESULT](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_BOOLEAN_RESULT)
        pub const KEY_BOOLEAN_RESULT : &'static str = "booleanResult";

        /// public static final [KEY_CALLER_PID](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_CALLER_PID)
        pub const KEY_CALLER_PID : &'static str = "callerPid";

        /// public static final [KEY_CALLER_UID](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_CALLER_UID)
        pub const KEY_CALLER_UID : &'static str = "callerUid";

        /// public static final [KEY_ERROR_CODE](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_ERROR_CODE)
        pub const KEY_ERROR_CODE : &'static str = "errorCode";

        /// public static final [KEY_ERROR_MESSAGE](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_ERROR_MESSAGE)
        pub const KEY_ERROR_MESSAGE : &'static str = "errorMessage";

        /// public static final [KEY_INTENT](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_INTENT)
        pub const KEY_INTENT : &'static str = "intent";

        /// public static final [KEY_PASSWORD](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_PASSWORD)
        pub const KEY_PASSWORD : &'static str = "password";

        /// public static final [KEY_USERDATA](https://developer.android.com/reference/android/accounts/AccountManager.html#KEY_USERDATA)
        pub const KEY_USERDATA : &'static str = "userdata";

        /// public static final [LOGIN_ACCOUNTS_CHANGED_ACTION](https://developer.android.com/reference/android/accounts/AccountManager.html#LOGIN_ACCOUNTS_CHANGED_ACTION)
        pub const LOGIN_ACCOUNTS_CHANGED_ACTION : &'static str = "android.accounts.LOGIN_ACCOUNTS_CHANGED";
    }
}