From d7edd55fa931057ffcd1cfec42665e3383f0fc5b Mon Sep 17 00:00:00 2001 From: v-jonathangu <87332696+v-jonathangu@users.noreply.github.com> Date: Thu, 27 Jan 2022 16:28:31 -0600 Subject: [PATCH 1/2] Note: do not ignore Gradle wrapper files App Center Build Service does not find the project when you ignore the Gradle wrapper files, add a quick notice to not ignore those files on the docs --- docs/build/android/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/build/android/index.md b/docs/build/android/index.md index 453cfc433..f5ca48bdd 100644 --- a/docs/build/android/index.md +++ b/docs/build/android/index.md @@ -23,6 +23,9 @@ To build your first Android app, follow these steps: > [!NOTE] > For the app to run on a real device, the build needs to be code signed with a valid certificate. +> [!NOTE] +> App Center tracks the project by searching the gradle(and gradlew) directory files on the Android project, please do not ignore those files(on the project .gitignore) as App Center Build service will not find it. + > [!WARNING] > Due to the recent shutdown of JCenter, certain apps may experience Gradle Task failures when building with App Center. Please view the migration guide provided by Gradle. As a workaround, all instances of `jcenter()` can be removed from the `build.gradle` file, and replaced with `jcenter { url "http://jcenter.bintray.com/"}`. Read more about the JCenter Shutdown [here](~/build/android/jcentershut.md). From 267a08184b0231ce1c1a381b9d1f566ea982e5b6 Mon Sep 17 00:00:00 2001 From: v-jonathangu Date: Wed, 11 May 2022 08:58:23 -0600 Subject: [PATCH 2/2] Update index.md --- docs/build/android/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/android/index.md b/docs/build/android/index.md index f5ca48bdd..7bf8e9a7b 100644 --- a/docs/build/android/index.md +++ b/docs/build/android/index.md @@ -24,7 +24,7 @@ To build your first Android app, follow these steps: > For the app to run on a real device, the build needs to be code signed with a valid certificate. > [!NOTE] -> App Center tracks the project by searching the gradle(and gradlew) directory files on the Android project, please do not ignore those files(on the project .gitignore) as App Center Build service will not find it. +> The App Center tracks the project by searching the gradle (and gradlew) directory files of the Android project. Please do not include these files in the project .gitignore as App Center Build will not be able to find them. > [!WARNING] > Due to the recent shutdown of JCenter, certain apps may experience Gradle Task failures when building with App Center. Please view the migration guide provided by Gradle. As a workaround, all instances of `jcenter()` can be removed from the `build.gradle` file, and replaced with `jcenter { url "http://jcenter.bintray.com/"}`. Read more about the JCenter Shutdown [here](~/build/android/jcentershut.md).