diff options
Diffstat (limited to 'ccnxandroidmetis/build.gradle')
-rw-r--r-- | ccnxandroidmetis/build.gradle | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ccnxandroidmetis/build.gradle b/ccnxandroidmetis/build.gradle new file mode 100644 index 00000000..2b9e8c54 --- /dev/null +++ b/ccnxandroidmetis/build.gradle @@ -0,0 +1,26 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + repositories { + jcenter() + } + dependencies { + classpath 'com.android.tools.build:gradle:2.3.0' + + // NOTE: Do not place your application dependencies here; they belong + // in the individual module build.gradle files + } +} + +allprojects { + repositories { + jcenter() + } +} + +task clean(type: Delete) { + delete rootProject.buildDir +} + +task build(dependsOn: ':ccnxsupportlibrary:build') + |