We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6761b87 commit 3eea225Copy full SHA for 3eea225
src/components/MDXComponents/MDXCode.tsx
@@ -31,6 +31,10 @@ const addVersions = (code: string) => {
31
/ANDROID_AUTHENTICATOR_VERSION/g,
32
versions.ANDROID_AUTHENTICATOR_VERSION
33
);
34
+ code = code.replace(
35
+ /ANDROID_APPSYNC_SDK_VERSION/g,
36
+ versions.ANDROID_APPSYNC_SDK_VERSION
37
+ );
38
return code;
39
};
40
src/constants/versions.ts
@@ -6,5 +6,6 @@ export const versions = {
6
ANDROID_V1_KOTLIN_VERSION: '0.22.8',
7
ANDROID_SDK_VERSION: '2.76.0',
8
KOTLIN_SDK_VERSION: '1.3.31',
9
- ANDROID_AUTHENTICATOR_VERSION: '1.4.0'
+ ANDROID_AUTHENTICATOR_VERSION: '1.4.0',
10
+ ANDROID_APPSYNC_SDK_VERSION: '1.0.0'
11
0 commit comments