1

I want to use PercentRelativeLayout but I have the compileSdkVersion 25. Which dependency should I add to build.grade(Module: app)?

Onik
  • 19,396
  • 14
  • 68
  • 91
Falcoa
  • 2,612
  • 1
  • 20
  • 30

2 Answers2

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