The step you are talking about is for Eclipse, not for Android Studio, and you only need to follow the first two instructions:
Step 1. Configure your build.gradle File applications
Make sure your repositories have a jcenter () entry:
repositories { jcenter() }
add the AAR library as a dependency like this:
dependencies { compile 'org.altbeacon:android-beacon-library:2+' }
source share