File tree Expand file tree Collapse file tree 3 files changed +48
-2
lines changed
Expand file tree Collapse file tree 3 files changed +48
-2
lines changed Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17-
17+ pluginManagement {
18+ repositories {
19+ gradlePluginPortal()
20+ google()
21+ mavenCentral()
22+ }
23+ }
24+ dependencyResolutionManagement {
25+ repositoriesMode. set(RepositoriesMode . FAIL_ON_PROJECT_REPOS )
26+ repositories {
27+ google()
28+ mavenCentral()
29+ }
30+ }
1831rootProject. name = " Reply"
1932include ' :app'
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16-
16+ pluginManagement {
17+ repositories {
18+ gradlePluginPortal()
19+ google()
20+ mavenCentral()
21+ }
22+ }
23+ dependencyResolutionManagement {
24+ repositoriesMode. set(RepositoriesMode . FAIL_ON_PROJECT_REPOS )
25+ repositories {
26+ google()
27+ mavenCentral()
28+ }
29+ }
1730rootProject. name = " MySoothe"
1831include ' :app'
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16+ val snapshotVersion : String? = System .getenv(" COMPOSE_SNAPSHOT_ID" )
1617
18+ pluginManagement {
19+ repositories {
20+ gradlePluginPortal()
21+ google()
22+ mavenCentral()
23+ }
24+ }
25+ dependencyResolutionManagement {
26+ repositoriesMode.set(RepositoriesMode .FAIL_ON_PROJECT_REPOS )
27+ repositories {
28+ snapshotVersion?.let {
29+ println (" https://androidx.dev/snapshots/builds/$it /artifacts/repository/" )
30+ maven { url = uri(" https://androidx.dev/snapshots/builds/$it /artifacts/repository/" ) }
31+ }
32+
33+ google()
34+ mavenCentral()
35+ }
36+ }
1737rootProject.name = " Reply"
1838include(" :app" )
You can’t perform that action at this time.
0 commit comments