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
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


__jni_bindgen! {
    /// public class [ApplicationInfo](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html)
    ///
    /// Required feature: android-content-pm-ApplicationInfo
    #[cfg(any(feature = "all", feature = "android-content-pm-ApplicationInfo"))]
    public class ApplicationInfo extends crate::android::content::pm::PackageItemInfo, implements crate::android::os::Parcelable {

        /// <init>
        pub fn new<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::Result<__jni_bindgen::Local<'env, crate::android::content::pm::ApplicationInfo>> {
            // class.path == "android/content/pm/ApplicationInfo", java.flags == PUBLIC, .name == "<init>", .descriptor == "()V"
            unsafe {
                let __jni_args = [];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/content/pm/ApplicationInfo\0", "<init>\0", "()V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// <init>
        ///
        /// Required features: "android-content-pm-ApplicationInfo"
        #[cfg(any(feature = "all", all(feature = "android-content-pm-ApplicationInfo")))]
        pub fn new_application_info<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::pm::ApplicationInfo>>) -> __jni_bindgen::Result<__jni_bindgen::Local<'env, crate::android::content::pm::ApplicationInfo>> {
            // class.path == "android/content/pm/ApplicationInfo", java.flags == PUBLIC, .name == "<init>", .descriptor == "(Landroid/content/pm/ApplicationInfo;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/content/pm/ApplicationInfo\0", "<init>\0", "(Landroid/content/pm/ApplicationInfo;)V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

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

        /// [dump](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#dump(android,%2520util,%2520Printer,%2520java,%2520lang,%2520String))
        ///
        /// Required features: "android-util-Printer", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-util-Printer", feature = "java-lang-String")))]
        pub fn dump<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::util::Printer>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::Result<()> {
            // class.path == "android/content/pm/ApplicationInfo", java.flags == PUBLIC, .name == "dump", .descriptor == "(Landroid/util/Printer;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/content/pm/ApplicationInfo\0", "dump\0", "(Landroid/util/Printer;Ljava/lang/String;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [toString](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#toString())
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn to_string<'env>(&'env self) -> __jni_bindgen::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>> {
            // class.path == "android/content/pm/ApplicationInfo", java.flags == PUBLIC, .name == "toString", .descriptor == "()Ljava/lang/String;"
            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/content/pm/ApplicationInfo\0", "toString\0", "()Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [describeContents](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#describeContents())
        pub fn describe_contents<'env>(&'env self) -> __jni_bindgen::Result<i32> {
            // class.path == "android/content/pm/ApplicationInfo", java.flags == PUBLIC, .name == "describeContents", .descriptor == "()I"
            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/content/pm/ApplicationInfo\0", "describeContents\0", "()I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [writeToParcel](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#writeToParcel(android,%2520os,%2520Parcel,%2520int))
        ///
        /// Required features: "android-os-Parcel"
        #[cfg(any(feature = "all", all(feature = "android-os-Parcel")))]
        pub fn write_to_parcel<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Parcel>>, arg1: i32) -> __jni_bindgen::Result<()> {
            // class.path == "android/content/pm/ApplicationInfo", java.flags == PUBLIC, .name == "writeToParcel", .descriptor == "(Landroid/os/Parcel;I)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1)];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/content/pm/ApplicationInfo\0", "writeToParcel\0", "(Landroid/os/Parcel;I)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [loadDescription](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#loadDescription(android,%2520content,%2520pm,%2520PackageManager))
        ///
        /// Required features: "android-content-pm-PackageManager", "java-lang-CharSequence"
        #[cfg(any(feature = "all", all(feature = "android-content-pm-PackageManager", feature = "java-lang-CharSequence")))]
        pub fn load_description<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::pm::PackageManager>>) -> __jni_bindgen::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::CharSequence>>> {
            // class.path == "android/content/pm/ApplicationInfo", java.flags == PUBLIC, .name == "loadDescription", .descriptor == "(Landroid/content/pm/PackageManager;)Ljava/lang/CharSequence;"
            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/content/pm/ApplicationInfo\0", "loadDescription\0", "(Landroid/content/pm/PackageManager;)Ljava/lang/CharSequence;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [isVirtualPreload](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#isVirtualPreload())
        pub fn is_virtual_preload<'env>(&'env self) -> __jni_bindgen::Result<bool> {
            // class.path == "android/content/pm/ApplicationInfo", java.flags == PUBLIC, .name == "isVirtualPreload", .descriptor == "()Z"
            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/content/pm/ApplicationInfo\0", "isVirtualPreload\0", "()Z\0");
                __jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        // // Not emitting: Failed to mangle method name
        // // Not emitting: Non-public method
        // // Not emitting: Static class constructor - never needs to be called by Rust.
        // /// <clinit>
        // fn <clinit><'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::Result<()> {
        //     // class.path == "android/content/pm/ApplicationInfo", java.flags == STATIC, .name == "<clinit>", .descriptor == "()V"
        //     unsafe {
        //         let __jni_args = [];
        //         let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/content/pm/ApplicationInfo\0", "<clinit>\0", "()V\0");
        //         __jni_env.call_static_void_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
        //     }
        // }

        /// public static final [CATEGORY_AUDIO](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#CATEGORY_AUDIO)
        pub const CATEGORY_AUDIO : i32 = 1;

        /// public static final [CATEGORY_GAME](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#CATEGORY_GAME)
        pub const CATEGORY_GAME : i32 = 0;

        /// public static final [CATEGORY_IMAGE](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#CATEGORY_IMAGE)
        pub const CATEGORY_IMAGE : i32 = 3;

        /// public static final [CATEGORY_MAPS](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#CATEGORY_MAPS)
        pub const CATEGORY_MAPS : i32 = 6;

        /// public static final [CATEGORY_NEWS](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#CATEGORY_NEWS)
        pub const CATEGORY_NEWS : i32 = 5;

        /// public static final [CATEGORY_PRODUCTIVITY](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#CATEGORY_PRODUCTIVITY)
        pub const CATEGORY_PRODUCTIVITY : i32 = 7;

        /// public static final [CATEGORY_SOCIAL](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#CATEGORY_SOCIAL)
        pub const CATEGORY_SOCIAL : i32 = 4;

        /// public static final [CATEGORY_UNDEFINED](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#CATEGORY_UNDEFINED)
        pub const CATEGORY_UNDEFINED : i32 = -1;

        /// public static final [CATEGORY_VIDEO](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#CATEGORY_VIDEO)
        pub const CATEGORY_VIDEO : i32 = 2;

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public static final [CREATOR](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#CREATOR)
        // ///
        // /// Required feature: android-os-Parcelable_Creator
        // #[cfg(any(feature = "all", feature = "android-os-Parcelable_Creator"))]
        // pub fn creator<'env>(env: &'env __jni_bindgen::Env) -> android/os/Parcelable$Creator {
        //     unsafe {
        //         let (class, field) = env.require_class_static_field("android/content/pm/ApplicationInfo\0", "CREATOR\0", "Landroid/os/Parcelable$Creator;\0");
        //         env.get_static_object_field(class, field)
        //     }
        // }

        /// public static final [FLAG_ALLOW_BACKUP](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_ALLOW_BACKUP)
        pub const FLAG_ALLOW_BACKUP : i32 = 32768;

        /// public static final [FLAG_ALLOW_CLEAR_USER_DATA](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_ALLOW_CLEAR_USER_DATA)
        pub const FLAG_ALLOW_CLEAR_USER_DATA : i32 = 64;

        /// public static final [FLAG_ALLOW_TASK_REPARENTING](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_ALLOW_TASK_REPARENTING)
        pub const FLAG_ALLOW_TASK_REPARENTING : i32 = 32;

        /// public static final [FLAG_DEBUGGABLE](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_DEBUGGABLE)
        pub const FLAG_DEBUGGABLE : i32 = 2;

        /// public static final [FLAG_EXTERNAL_STORAGE](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_EXTERNAL_STORAGE)
        pub const FLAG_EXTERNAL_STORAGE : i32 = 262144;

        /// public static final [FLAG_EXTRACT_NATIVE_LIBS](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_EXTRACT_NATIVE_LIBS)
        pub const FLAG_EXTRACT_NATIVE_LIBS : i32 = 268435456;

        /// public static final [FLAG_FACTORY_TEST](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_FACTORY_TEST)
        pub const FLAG_FACTORY_TEST : i32 = 16;

        /// public static final [FLAG_FULL_BACKUP_ONLY](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_FULL_BACKUP_ONLY)
        pub const FLAG_FULL_BACKUP_ONLY : i32 = 67108864;

        /// public static final [FLAG_HARDWARE_ACCELERATED](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_HARDWARE_ACCELERATED)
        pub const FLAG_HARDWARE_ACCELERATED : i32 = 536870912;

        /// public static final [FLAG_HAS_CODE](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_HAS_CODE)
        pub const FLAG_HAS_CODE : i32 = 4;

        /// public static final [FLAG_INSTALLED](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_INSTALLED)
        pub const FLAG_INSTALLED : i32 = 8388608;

        /// public static final [FLAG_IS_DATA_ONLY](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_IS_DATA_ONLY)
        pub const FLAG_IS_DATA_ONLY : i32 = 16777216;

        /// public static final [FLAG_IS_GAME](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_IS_GAME)
        #[deprecated] pub const FLAG_IS_GAME : i32 = 33554432;

        /// public static final [FLAG_KILL_AFTER_RESTORE](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_KILL_AFTER_RESTORE)
        pub const FLAG_KILL_AFTER_RESTORE : i32 = 65536;

        /// public static final [FLAG_LARGE_HEAP](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_LARGE_HEAP)
        pub const FLAG_LARGE_HEAP : i32 = 1048576;

        /// public static final [FLAG_MULTIARCH](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_MULTIARCH)
        pub const FLAG_MULTIARCH : i32 = -2147483648;

        /// public static final [FLAG_PERSISTENT](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_PERSISTENT)
        pub const FLAG_PERSISTENT : i32 = 8;

        /// public static final [FLAG_RESIZEABLE_FOR_SCREENS](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_RESIZEABLE_FOR_SCREENS)
        pub const FLAG_RESIZEABLE_FOR_SCREENS : i32 = 4096;

        /// public static final [FLAG_RESTORE_ANY_VERSION](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_RESTORE_ANY_VERSION)
        pub const FLAG_RESTORE_ANY_VERSION : i32 = 131072;

        /// public static final [FLAG_STOPPED](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_STOPPED)
        pub const FLAG_STOPPED : i32 = 2097152;

        /// public static final [FLAG_SUPPORTS_LARGE_SCREENS](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_SUPPORTS_LARGE_SCREENS)
        pub const FLAG_SUPPORTS_LARGE_SCREENS : i32 = 2048;

        /// public static final [FLAG_SUPPORTS_NORMAL_SCREENS](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_SUPPORTS_NORMAL_SCREENS)
        pub const FLAG_SUPPORTS_NORMAL_SCREENS : i32 = 1024;

        /// public static final [FLAG_SUPPORTS_RTL](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_SUPPORTS_RTL)
        pub const FLAG_SUPPORTS_RTL : i32 = 4194304;

        /// public static final [FLAG_SUPPORTS_SCREEN_DENSITIES](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_SUPPORTS_SCREEN_DENSITIES)
        pub const FLAG_SUPPORTS_SCREEN_DENSITIES : i32 = 8192;

        /// public static final [FLAG_SUPPORTS_SMALL_SCREENS](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_SUPPORTS_SMALL_SCREENS)
        pub const FLAG_SUPPORTS_SMALL_SCREENS : i32 = 512;

        /// public static final [FLAG_SUPPORTS_XLARGE_SCREENS](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_SUPPORTS_XLARGE_SCREENS)
        pub const FLAG_SUPPORTS_XLARGE_SCREENS : i32 = 524288;

        /// public static final [FLAG_SUSPENDED](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_SUSPENDED)
        pub const FLAG_SUSPENDED : i32 = 1073741824;

        /// public static final [FLAG_SYSTEM](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_SYSTEM)
        pub const FLAG_SYSTEM : i32 = 1;

        /// public static final [FLAG_TEST_ONLY](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_TEST_ONLY)
        pub const FLAG_TEST_ONLY : i32 = 256;

        /// public static final [FLAG_UPDATED_SYSTEM_APP](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_UPDATED_SYSTEM_APP)
        pub const FLAG_UPDATED_SYSTEM_APP : i32 = 128;

        /// public static final [FLAG_USES_CLEARTEXT_TRAFFIC](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_USES_CLEARTEXT_TRAFFIC)
        pub const FLAG_USES_CLEARTEXT_TRAFFIC : i32 = 134217728;

        /// public static final [FLAG_VM_SAFE_MODE](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_VM_SAFE_MODE)
        pub const FLAG_VM_SAFE_MODE : i32 = 16384;

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [appComponentFactory](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#appComponentFactory)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn app_component_factory<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "appComponentFactory\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [appComponentFactory](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#appComponentFactory)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_app_component_factory<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "appComponentFactory\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [backupAgentName](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#backupAgentName)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn backup_agent_name<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "backupAgentName\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [backupAgentName](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#backupAgentName)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_backup_agent_name<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "backupAgentName\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        /// **get** public [category](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#category)
        pub fn category<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "category\0", "I\0");
                env.get_int_field(class, field)
            }
        }

        /// **set** public [category](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#category)
        pub fn set_category<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "category\0", "I\0");
                env.set_int_field(class, field, value)
            }
        }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [className](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#className)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn class_name<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "className\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [className](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#className)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_class_name<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "className\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        /// **get** public [compatibleWidthLimitDp](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#compatibleWidthLimitDp)
        pub fn compatible_width_limit_dp<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "compatibleWidthLimitDp\0", "I\0");
                env.get_int_field(class, field)
            }
        }

        /// **set** public [compatibleWidthLimitDp](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#compatibleWidthLimitDp)
        pub fn set_compatible_width_limit_dp<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "compatibleWidthLimitDp\0", "I\0");
                env.set_int_field(class, field, value)
            }
        }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [dataDir](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#dataDir)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn data_dir<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "dataDir\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [dataDir](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#dataDir)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_data_dir<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "dataDir\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        /// **get** public [descriptionRes](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#descriptionRes)
        pub fn description_res<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "descriptionRes\0", "I\0");
                env.get_int_field(class, field)
            }
        }

        /// **set** public [descriptionRes](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#descriptionRes)
        pub fn set_description_res<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "descriptionRes\0", "I\0");
                env.set_int_field(class, field, value)
            }
        }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [deviceProtectedDataDir](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#deviceProtectedDataDir)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn device_protected_data_dir<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "deviceProtectedDataDir\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [deviceProtectedDataDir](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#deviceProtectedDataDir)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_device_protected_data_dir<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "deviceProtectedDataDir\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        /// **get** public [enabled](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#enabled)
        pub fn enabled<'env>(&'env self) -> bool {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "enabled\0", "Z\0");
                env.get_boolean_field(class, field)
            }
        }

        /// **set** public [enabled](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#enabled)
        pub fn set_enabled<'env>(&'env self, value: bool) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "enabled\0", "Z\0");
                env.set_boolean_field(class, field, value)
            }
        }

        /// **get** public [flags](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#flags)
        pub fn flags<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "flags\0", "I\0");
                env.get_int_field(class, field)
            }
        }

        /// **set** public [flags](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#flags)
        pub fn set_flags<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "flags\0", "I\0");
                env.set_int_field(class, field, value)
            }
        }

        /// **get** public [largestWidthLimitDp](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#largestWidthLimitDp)
        pub fn largest_width_limit_dp<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "largestWidthLimitDp\0", "I\0");
                env.get_int_field(class, field)
            }
        }

        /// **set** public [largestWidthLimitDp](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#largestWidthLimitDp)
        pub fn set_largest_width_limit_dp<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "largestWidthLimitDp\0", "I\0");
                env.set_int_field(class, field, value)
            }
        }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [manageSpaceActivityName](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#manageSpaceActivityName)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn manage_space_activity_name<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "manageSpaceActivityName\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [manageSpaceActivityName](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#manageSpaceActivityName)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_manage_space_activity_name<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "manageSpaceActivityName\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        /// **get** public [minSdkVersion](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#minSdkVersion)
        pub fn min_sdk_version<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "minSdkVersion\0", "I\0");
                env.get_int_field(class, field)
            }
        }

        /// **set** public [minSdkVersion](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#minSdkVersion)
        pub fn set_min_sdk_version<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "minSdkVersion\0", "I\0");
                env.set_int_field(class, field, value)
            }
        }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [nativeLibraryDir](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#nativeLibraryDir)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn native_library_dir<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "nativeLibraryDir\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [nativeLibraryDir](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#nativeLibraryDir)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_native_library_dir<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "nativeLibraryDir\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [permission](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#permission)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn permission<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "permission\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [permission](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#permission)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_permission<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "permission\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [processName](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#processName)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn process_name<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "processName\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [processName](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#processName)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_process_name<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "processName\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [publicSourceDir](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#publicSourceDir)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn public_source_dir<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "publicSourceDir\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [publicSourceDir](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#publicSourceDir)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_public_source_dir<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "publicSourceDir\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        /// **get** public [requiresSmallestWidthDp](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#requiresSmallestWidthDp)
        pub fn requires_smallest_width_dp<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "requiresSmallestWidthDp\0", "I\0");
                env.get_int_field(class, field)
            }
        }

        /// **set** public [requiresSmallestWidthDp](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#requiresSmallestWidthDp)
        pub fn set_requires_smallest_width_dp<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "requiresSmallestWidthDp\0", "I\0");
                env.set_int_field(class, field, value)
            }
        }

        // // Not emitting: Haven't yet implemented array field types
        // /// **get** public [sharedLibraryFiles](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#sharedLibraryFiles)
        // pub fn shared_library_files<'env>(&'env self) -> ??? {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "sharedLibraryFiles\0", "[Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [sharedLibraryFiles](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#sharedLibraryFiles)
        // pub fn set_shared_library_files<'env>(&'env self, value: ???) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "sharedLibraryFiles\0", "[Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [sourceDir](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#sourceDir)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn source_dir<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "sourceDir\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [sourceDir](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#sourceDir)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_source_dir<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "sourceDir\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        // // Not emitting: Haven't yet implemented array field types
        // /// **get** public [splitNames](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#splitNames)
        // pub fn split_names<'env>(&'env self) -> ??? {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "splitNames\0", "[Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [splitNames](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#splitNames)
        // pub fn set_split_names<'env>(&'env self, value: ???) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "splitNames\0", "[Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        // // Not emitting: Haven't yet implemented array field types
        // /// **get** public [splitPublicSourceDirs](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#splitPublicSourceDirs)
        // pub fn split_public_source_dirs<'env>(&'env self) -> ??? {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "splitPublicSourceDirs\0", "[Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [splitPublicSourceDirs](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#splitPublicSourceDirs)
        // pub fn set_split_public_source_dirs<'env>(&'env self, value: ???) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "splitPublicSourceDirs\0", "[Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        // // Not emitting: Haven't yet implemented array field types
        // /// **get** public [splitSourceDirs](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#splitSourceDirs)
        // pub fn split_source_dirs<'env>(&'env self) -> ??? {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "splitSourceDirs\0", "[Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [splitSourceDirs](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#splitSourceDirs)
        // pub fn set_split_source_dirs<'env>(&'env self, value: ???) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "splitSourceDirs\0", "[Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [storageUuid](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#storageUuid)
        // ///
        // /// Required feature: java-util-UUID
        // #[cfg(any(feature = "all", feature = "java-util-UUID"))]
        // pub fn storage_uuid<'env>(&'env self) -> java/util/UUID {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "storageUuid\0", "Ljava/util/UUID;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [storageUuid](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#storageUuid)
        // ///
        // /// Required feature: java-util-UUID
        // #[cfg(any(feature = "all", feature = "java-util-UUID"))]
        // pub fn set_storage_uuid<'env>(&'env self, value: java/util/UUID) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "storageUuid\0", "Ljava/util/UUID;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        /// **get** public [targetSdkVersion](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#targetSdkVersion)
        pub fn target_sdk_version<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "targetSdkVersion\0", "I\0");
                env.get_int_field(class, field)
            }
        }

        /// **set** public [targetSdkVersion](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#targetSdkVersion)
        pub fn set_target_sdk_version<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "targetSdkVersion\0", "I\0");
                env.set_int_field(class, field, value)
            }
        }

        // // Not emitting: Haven't yet implemented object field types
        // /// **get** public [taskAffinity](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#taskAffinity)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn task_affinity<'env>(&'env self) -> java/lang/String {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "taskAffinity\0", "Ljava/lang/String;\0");
        //         env.get_object_field(class, field)
        //     }
        // }

        // /// **set** public [taskAffinity](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#taskAffinity)
        // ///
        // /// Required feature: java-lang-String
        // #[cfg(any(feature = "all", feature = "java-lang-String"))]
        // pub fn set_task_affinity<'env>(&'env self, value: java/lang/String) {
        //     unsafe {
        //         let env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "taskAffinity\0", "Ljava/lang/String;\0");
        //         env.set_object_field(class, field, value)
        //     }
        // }

        /// **get** public [theme](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#theme)
        pub fn theme<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "theme\0", "I\0");
                env.get_int_field(class, field)
            }
        }

        /// **set** public [theme](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#theme)
        pub fn set_theme<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "theme\0", "I\0");
                env.set_int_field(class, field, value)
            }
        }

        /// **get** public [uiOptions](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#uiOptions)
        pub fn ui_options<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "uiOptions\0", "I\0");
                env.get_int_field(class, field)
            }
        }

        /// **set** public [uiOptions](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#uiOptions)
        pub fn set_ui_options<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "uiOptions\0", "I\0");
                env.set_int_field(class, field, value)
            }
        }

        /// **get** public [uid](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#uid)
        pub fn uid<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "uid\0", "I\0");
                env.get_int_field(class, field)
            }
        }

        /// **set** public [uid](https://developer.android.com/reference/android/content/pm/ApplicationInfo.html#uid)
        pub fn set_uid<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (class, field) = env.require_class_field("android/content/pm/ApplicationInfo\0", "uid\0", "I\0");
                env.set_int_field(class, field, value)
            }
        }
    }
}