Skip to content

Commit

Permalink
Remove snapshot setup
Browse files Browse the repository at this point in the history
  • Loading branch information
simona-anomis committed Sep 22, 2023
1 parent a39e2ff commit f44cdf4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 48 deletions.
15 changes: 1 addition & 14 deletions AdaptiveUiCodelab/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,6 @@
* limitations under the License.
*/

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}

rootProject.name = "Reply"
include ':app'
15 changes: 1 addition & 14 deletions BasicLayoutsCodelab/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}

rootProject.name = "MySoothe"
include ':app'
20 changes: 0 additions & 20 deletions ThemingCodelab/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
val snapshotVersion : String? = System.getenv("COMPOSE_SNAPSHOT_ID")

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
snapshotVersion?.let {
println("https://androidx.dev/snapshots/builds/$it/artifacts/repository/")
maven { url = uri("https://androidx.dev/snapshots/builds/$it/artifacts/repository/") }
}

google()
mavenCentral()
}
}
rootProject.name = "Reply"
include(":app")

0 comments on commit f44cdf4

Please sign in to comment.