You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/getting_started/content_pipeline/content_builder_project.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -204,10 +204,10 @@ For Android, a specific `Include` section is needed in the project's `csproj` pr
204
204
> [!NOTE]
205
205
> If you change the location where the Content Builder project outputs content to, the paths above will need to be updated to the new location to find the content to include.
206
206
207
-
At build time, the "BuildContent" task will run and execute the Content Builder, then with the output from the builder, the Android solution will automatically identify and package the content within the `APK`as per Google's packaging requirements.
207
+
At build time, the "BuildContent" task will run and execute the Content Builder, then with the output from the builder, the Android solution will automatically identify and package the content as per Google's packaging requirements, generating an `APK` for sideloading and an `AAB` for publishing to the Google Play Store.
208
208
209
209
> [!NOTE]
210
-
> If your content is too large to fit within the maximum size of an `APK`, you will need to alternatively use Asset Bundles to package your content, as demonstrated here:
210
+
> If your content is too large to fit within the maximum size of the base application, you will need to use Asset Bundles to package your content, as demonstrated here:
211
211
>
212
212
> ```xml
213
213
> <ItemGroup>
@@ -217,11 +217,11 @@ At build time, the "BuildContent" task will run and execute the Content Builder,
> However your game project will also need to be aware and update its strategy for loading the content to take the asset packs into account.
220
+
> However, your game project will also need to be aware and update its strategy for loading the content to take the asset packs into account.
221
221
>
222
222
> For more details, see the [Microsoft Documentation](https://devblogs.microsoft.com/dotnet/android-asset-packs-in-dotnet-android/).
223
223
>
224
-
> Additionally Dean has provided [some helper scripts to assist with the implementation here](https://gist.github.com/dellis1972/8a16abceb3b4b2222b38f8bee221534b).
224
+
> Additionally, [some helper scripts are available to assist with the implementation here](https://gist.github.com/dellis1972/8a16abceb3b4b2222b38f8bee221534b).
225
225
226
226
### iOS
227
227
@@ -841,7 +841,7 @@ public override IContentCollection GetContentCollection()
841
841
842
842
At times you might need to debug your Content Builder, and while you can just run it manually in debug mode and attach your IDE to it, sometimes it is also valuable to FORCE the application to pause and let you step through importing and processing, especially when working with Content Pipeline Extensions.
843
843
844
-
Alternatively, you may simply want to inject additional assets into your project for debugging purposes (such as overlays, etc) which are only consumed in a `Debug` build of your project (using '#if DEBUG` in your runtime too).
844
+
Alternatively, you may simply want to inject additional assets into your project for debugging purposes (such as overlays, etc) which are only consumed in a `Debug` build of your project (using `#if DEBUG` in your runtime too).
845
845
846
846
> [!NOTE]
847
847
> This is a rather advanced area which for most situations you do not need to go to these lengths.
0 commit comments