Skip to content

Commit b252af3

Browse files
harshithdwivedisamtstern
authored andcommitted
fix : add instructions for resolving the support library not found error (#810)
1 parent bb9f2ff commit b252af3

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,22 @@ compile "com.android.support:appcompat-v7:$BAR"
136136
compile "com.android.support:palette-v7:$BAR"
137137
```
138138

139+
NOTE :
140+
Starting version 25.4.0, support libraries are now available through [Google's Maven repository](https://developer.android.com/studio/build/dependencies.html#google-maven), so ensure that you have that added to your project's repositories.
141+
142+
Open the `build.gradle` file for your project and modify it as following,
143+
144+
```
145+
allprojects {
146+
repositories {
147+
maven {
148+
url "https://maven.google.com"
149+
}
150+
jcenter()
151+
}
152+
}
153+
```
154+
139155
## Sample App
140156

141157
There is a sample app in the `app/` directory that demonstrates most

0 commit comments

Comments
 (0)