Skip to content

Commit 3eea225

Browse files
authored
feat(data) Android AppSync Events Documentation (#8349)
* Add Android AppSync Events Documentation
1 parent 6761b87 commit 3eea225

File tree

3 files changed

+564
-2
lines changed

3 files changed

+564
-2
lines changed

src/components/MDXComponents/MDXCode.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ const addVersions = (code: string) => {
3131
/ANDROID_AUTHENTICATOR_VERSION/g,
3232
versions.ANDROID_AUTHENTICATOR_VERSION
3333
);
34+
code = code.replace(
35+
/ANDROID_APPSYNC_SDK_VERSION/g,
36+
versions.ANDROID_APPSYNC_SDK_VERSION
37+
);
3438
return code;
3539
};
3640

src/constants/versions.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ export const versions = {
66
ANDROID_V1_KOTLIN_VERSION: '0.22.8',
77
ANDROID_SDK_VERSION: '2.76.0',
88
KOTLIN_SDK_VERSION: '1.3.31',
9-
ANDROID_AUTHENTICATOR_VERSION: '1.4.0'
9+
ANDROID_AUTHENTICATOR_VERSION: '1.4.0',
10+
ANDROID_APPSYNC_SDK_VERSION: '1.0.0'
1011
};

0 commit comments

Comments
 (0)