0
0
mirror of https://github.com/schwabe/ics-openvpn.git synced 2024-09-20 03:52:27 +02:00

add missing gradle file

This commit is contained in:
Arne Schwabe 2014-02-13 16:52:32 +01:00
parent 1ec9eb737e
commit b87a9affb9
2 changed files with 34 additions and 3 deletions

View File

@ -2,14 +2,14 @@ obj
bin
libs
^gen$
build
build/
openvpn/.git
openvpn/autom4te.cache
openvpn/aclocal.m4
openvpn/config.log
openvpn/config.h.in
openvpn/configure
^.gradle$
syntax: regexp
.DS_Store
^openvpn/xcopenvpn$
@ -69,7 +69,6 @@ local.properties
proguard-project.txt
build.xml
cache.properties
.gradle
# User-specific configurations
.idea

View File

@ -0,0 +1,32 @@
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.8.+'
}
}
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.0.1"
defaultConfig {
minSdkVersion 15
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
}