summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build.gradle14
1 files changed, 14 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..2edb32f
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,14 @@
+apply plugin: 'com.android.library'
+
+android {
+ sourceSets.main {
+ manifest.srcFile 'AndroidManifest.xml'
+ java.srcDirs = ['src', 'appcompat/src']
+ res.srcDirs = ['res', 'appcompat/res']
+ }
+}
+
+dependencies {
+ compile project(':support-v4')
+ compile project(':support-appcompat-v7')
+} \ No newline at end of file