Skip to content

Commit caf21ac

Browse files
authored
Merge pull request #60 from hannesa2/DontUseMavenArtifact
Don't use maven artifact, we use local one
2 parents 6d31f1f + 53e2b18 commit caf21ac

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

example/android/build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@ buildscript {
22
repositories {
33
google()
44
jcenter()
5-
maven { url "https://plugins.gradle.org/m2/" }
5+
/*
6+
As a standalone Android example you would need this maven repository,
7+
but this example is more a development showcase, then a showcase how to use it
8+
It uses the plugin from this local repository, by
9+
includeBuild '../..'
10+
from file settings.gradle
11+
To make it clear, from where it comes from, it's commented out
12+
*/
13+
// maven { url "https://plugins.gradle.org/m2/" }
614
}
715
dependencies {
816
classpath 'com.android.tools.build:gradle:4.1.2'

0 commit comments

Comments
 (0)