I want to use PercentRelativeLayout but I have the compileSdkVersion 25. Which dependency should I add to build.grade(Module: app)?
Asked
Active
Viewed 164 times
2 Answers
1
Here is the dependency for PercentRelativeLayout
compile 'com.android.support:percent:25.0.0'

arjun
- 3,514
- 4
- 27
- 48
1
add this in your build.grade(Module: app)
dependencies
apply plugin:
{
.
.
.
.
}
dependencies {
.
.
.
.
compile 'com.android.support:percent:25.1.1'
}

Nilabja
- 4,206
- 5
- 27
- 45