diff options
Diffstat (limited to 'android/VulpIRC/build.gradle')
-rw-r--r-- | android/VulpIRC/build.gradle | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/android/VulpIRC/build.gradle b/android/VulpIRC/build.gradle new file mode 100644 index 0000000..0e1ac13 --- /dev/null +++ b/android/VulpIRC/build.gradle @@ -0,0 +1,30 @@ +buildscript { + repositories { + mavenCentral() + } + dependencies { + classpath 'com.android.tools.build:gradle:0.7.+' + } +} +apply plugin: 'android' + +repositories { + mavenCentral() +} + +android { + compileSdkVersion 19 + buildToolsVersion "19.0.1" + + defaultConfig { + minSdkVersion 14 + targetSdkVersion 19 + } +} + +dependencies { + + // You must install or update the Support Repository through the SDK manager to use this dependency. + // The Support Repository (separate from the corresponding library) can be found in the Extras category. + compile 'com.android.support:support-v4:18.0.0' +} |