standalone.gradle 855 B

1234567891011121314151617181920
  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. apply from: 'standalone-rules.gradle'
  17. android.compileSdkVersion 26
  18. android.buildToolsVersion '26.0.0'