-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update uninstall app listings and directory
- Loading branch information
1 parent
f5c4459
commit aad4b05
Showing
4 changed files
with
91 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
...ages/[platform]/build-a-backend/more-features/analytics/app-uninstall/index.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { getCustomStaticPath } from '@/utils/getCustomStaticPath'; | ||
|
||
export const meta = { | ||
title: 'Uninstalling the app', | ||
description: | ||
'Learn about the data that gets stored persistently on a device.', | ||
platforms: ['swift', 'android'] | ||
}; | ||
|
||
export const getStaticPaths = async () => { | ||
return getCustomStaticPath(meta.platforms); | ||
}; | ||
|
||
export function getStaticProps(context) { | ||
return { | ||
props: { | ||
platform: context.params.platform, | ||
meta | ||
} | ||
}; | ||
} | ||
|
||
import android0 from '/src/fragments/lib/info/native_common/app-uninstall/common.mdx'; | ||
|
||
<Fragments fragments={{ android: android0 }} /> | ||
|
||
import ios0 from '/src/fragments/lib/info/native_common/app-uninstall/common.mdx'; | ||
|
||
<Fragments fragments={{ swift: ios0 }} /> |
29 changes: 29 additions & 0 deletions
29
...ages/[platform]/build-a-backend/more-features/datastore/app-uninstall/index.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { getCustomStaticPath } from '@/utils/getCustomStaticPath'; | ||
|
||
export const meta = { | ||
title: 'Uninstalling the app', | ||
description: | ||
'Learn about the data that gets stored persistently on a device.', | ||
platforms: ['swift', 'android'] | ||
}; | ||
|
||
export const getStaticPaths = async () => { | ||
return getCustomStaticPath(meta.platforms); | ||
}; | ||
|
||
export function getStaticProps(context) { | ||
return { | ||
props: { | ||
platform: context.params.platform, | ||
meta | ||
} | ||
}; | ||
} | ||
|
||
import android0 from '/src/fragments/lib/info/native_common/app-uninstall/common.mdx'; | ||
|
||
<Fragments fragments={{ android: android0 }} /> | ||
|
||
import ios0 from '/src/fragments/lib/info/native_common/app-uninstall/common.mdx'; | ||
|
||
<Fragments fragments={{ swift: ios0 }} /> |
29 changes: 29 additions & 0 deletions
29
...[platform]/prev/build-a-backend/more-features/analytics/app-uninstall/index.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { getCustomStaticPath } from '@/utils/getCustomStaticPath'; | ||
|
||
export const meta = { | ||
title: 'Uninstalling the app', | ||
description: | ||
'Learn about the data that gets stored persistently on a device.', | ||
platforms: ['swift'] | ||
}; | ||
|
||
export const getStaticPaths = async () => { | ||
return getCustomStaticPath(meta.platforms); | ||
}; | ||
|
||
export function getStaticProps(context) { | ||
return { | ||
props: { | ||
platform: context.params.platform, | ||
meta | ||
} | ||
}; | ||
} | ||
|
||
import ios_maintenance from '/src/fragments/lib-v1/ios-maintenance.mdx'; | ||
|
||
<Fragments fragments={{ swift: ios_maintenance }} /> | ||
|
||
import ios0 from '/src/fragments/lib-v1/info/native_common/app-uninstall/common.mdx'; | ||
|
||
<Fragments fragments={{ swift: ios0 }} /> |