1/**
2 * Include this gradle file if you are building against this as a standalone gradle library project,
3 * as opposed to building it as part of the git-tree. This is typically the file you want to include
4 * if you create a new project in Android Studio.
5 *
6 * For example, you can include the following in your settings.gradle file:
7 *      include ':setup-wizard-lib'
8 *      project(':setup-wizard-lib').projectDir = new File(PATH_TO_THIS_DIRECTORY)
9 *      project(':setup-wizard-lib').buildFileName = 'standalone.gradle'
10 *
11 * And then you can include the :setup-wizard-lib project as one of your dependencies
12 *      dependencies {
13 *          compile project(path: ':setup-wizard-lib', configuration: 'gingerbreadCompatRelease')
14 *      }
15 */
16
17apply from: 'standalone-rules.gradle'
18
19android.compileSdkVersion 25
20android.buildToolsVersion '25.0.0'
21