aboutsummaryrefslogtreecommitdiff
path: root/sample/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'sample/build.gradle')
-rw-r--r--sample/build.gradle19
1 files changed, 19 insertions, 0 deletions
diff --git a/sample/build.gradle b/sample/build.gradle
new file mode 100644
index 0000000..f1096a7
--- /dev/null
+++ b/sample/build.gradle
@@ -0,0 +1,19 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 27
+ defaultConfig {
+ applicationId "com.davemorrissey.labs.subscaleview.test"
+ }
+
+ sourceSets {
+ main {
+ assets.srcDirs = ['assets']
+ }
+ }
+}
+
+dependencies {
+ implementation project(':library')
+ implementation 'com.android.support:support-v4:27.0.2'
+}