Skip to content
Snippets Groups Projects
Commit 2ddacac4 authored by Matthieu Belmontet's avatar Matthieu Belmontet
Browse files

fix gradle repo- fix image name

parent c1059ec9
Branches
No related tags found
No related merge requests found
......@@ -3,8 +3,13 @@ buildscript {
repositories {
google()
mavenCentral()
}
maven {
url 'http://download.flutter.io'
allowInsecureProtocol = true
}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
......@@ -15,6 +20,11 @@ allprojects {
repositories {
google()
mavenCentral()
maven {
url 'http://download.flutter.io'
allowInsecureProtocol = true
}
}
}
......
......@@ -18,14 +18,14 @@ final List<Cocktail> cocktails = [
ingredients: "White rum, Lime, Sugar, Mint, Soda water",
instructions:
"Muddle mint and sugar with lime juice. Add rum and ice. Top with soda water.",
image: "mojito.jpg",
image: "mojito.png",
),
Cocktail(
name: "Piña Colada",
ingredients: "Coconut cream, Pineapple juice, White rum",
instructions:
"Blend all ingredients with ice until smooth. Serve in a chilled glass.",
image: "pina_colada.jpg",
image: "pina_colada.png",
),
// Add more cocktails here
];
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment