|
5 | 5 | package io.flutter.plugins.firebase.appcheck;
|
6 | 6 |
|
7 | 7 | import androidx.annotation.Keep;
|
| 8 | +import androidx.annotation.Nullable; |
| 9 | + |
| 10 | +import com.google.firebase.appcheck.debug.InternalDebugSecretProvider; |
8 | 11 | import com.google.firebase.components.Component;
|
9 | 12 | import com.google.firebase.components.ComponentRegistrar;
|
10 | 13 | import com.google.firebase.platforminfo.LibraryVersionComponent;
|
| 14 | + |
| 15 | +import java.util.Arrays; |
11 | 16 | import java.util.Collections;
|
12 | 17 | import java.util.List;
|
13 | 18 |
|
14 | 19 | @Keep
|
15 |
| -public class FlutterFirebaseAppRegistrar implements ComponentRegistrar { |
| 20 | +public class FlutterFirebaseAppRegistrar implements ComponentRegistrar, InternalDebugSecretProvider { |
| 21 | + private static final String DEBUG_SECRET_NAME = "fire-app-check-debug-secret"; |
| 22 | + |
| 23 | + public static String debugToken; |
| 24 | + |
16 | 25 | @Override
|
17 | 26 | public List<Component<?>> getComponents() {
|
18 |
| - return Collections.<Component<?>>singletonList( |
19 |
| - LibraryVersionComponent.create(BuildConfig.LIBRARY_NAME, BuildConfig.LIBRARY_VERSION)); |
| 27 | + Component<?> library = LibraryVersionComponent.create(BuildConfig.LIBRARY_NAME, |
| 28 | + BuildConfig.LIBRARY_VERSION); |
| 29 | + |
| 30 | + Component<InternalDebugSecretProvider> debugSecretProvider = Component.builder(InternalDebugSecretProvider.class) |
| 31 | + .name(DEBUG_SECRET_NAME) |
| 32 | + .factory(container -> this).build(); |
| 33 | + |
| 34 | + return Arrays.<Component<?>>asList(library, debugSecretProvider); |
| 35 | + } |
| 36 | + |
| 37 | + @Nullable |
| 38 | + @Override |
| 39 | + public String getDebugSecret() { |
| 40 | + return debugToken; |
20 | 41 | }
|
21 | 42 | }
|
0 commit comments