|
40 | 40 | #include "firestore/src/android/write_batch_android.h"
|
41 | 41 | #include "firestore/src/include/firebase/firestore.h"
|
42 | 42 | #include "firestore/src/jni/array_list.h"
|
| 43 | +#include "firestore/src/jni/boolean.h" |
43 | 44 | #include "firestore/src/jni/collection.h"
|
| 45 | +#include "firestore/src/jni/double.h" |
44 | 46 | #include "firestore/src/jni/env.h"
|
45 | 47 | #include "firestore/src/jni/hash_map.h"
|
| 48 | +#include "firestore/src/jni/integer.h" |
46 | 49 | #include "firestore/src/jni/iterator.h"
|
47 | 50 | #include "firestore/src/jni/jni.h"
|
48 | 51 | #include "firestore/src/jni/list.h"
|
49 | 52 | #include "firestore/src/jni/loader.h"
|
| 53 | +#include "firestore/src/jni/long.h" |
50 | 54 | #include "firestore/src/jni/map.h"
|
51 | 55 | #include "firestore/src/jni/set.h"
|
52 | 56 |
|
@@ -180,11 +184,14 @@ bool FirestoreInternal::Initialize(App* app) {
|
180 | 184 | }
|
181 | 185 |
|
182 | 186 | jni::ArrayList::Initialize(loader);
|
| 187 | + jni::Boolean::Initialize(loader); |
183 | 188 | jni::Collection::Initialize(loader);
|
184 |
| - FieldPathConverter::Initialize(loader); |
| 189 | + jni::Double::Initialize(loader); |
| 190 | + jni::Integer::Initialize(loader); |
185 | 191 | jni::Iterator::Initialize(loader);
|
186 | 192 | jni::HashMap::Initialize(loader);
|
187 | 193 | jni::List::Initialize(loader);
|
| 194 | + jni::Long::Initialize(loader); |
188 | 195 | jni::Map::Initialize(loader);
|
189 | 196 |
|
190 | 197 | InitializeFirestore(loader);
|
|
0 commit comments