Reputation: 2720
I want to use PercentRelativeLayout but I have the compileSdkVersion 25. Which dependency should I add to build.grade(Module: app)?
Upvotes: 1
Views: 170
Reputation: 4276
add this in your build.grade(Module: app)
dependencies
apply plugin:
{
.
.
.
.
}
dependencies {
.
.
.
.
compile 'com.android.support:percent:25.1.1'
}
Upvotes: 1
Reputation: 3574
Here is the dependency for PercentRelativeLayout
compile 'com.android.support:percent:25.0.0'
Upvotes: 1