diff options
| author | Nikolaus Gotsche <n@softwarefools.com> | 2015-11-30 01:35:47 +0100 |
|---|---|---|
| committer | Nikolaus Gotsche <n@softwarefools.com> | 2015-11-30 01:35:47 +0100 |
| commit | a71e152ccdd9cdb635da8fa729b63fb2df4f1601 (patch) | |
| tree | 9f116b8805b25bb96e2f901db1210fad175a9aca /app/build.gradle | |
| parent | 65f15b07f0ef497b188571a8bd1f170b9daf7166 (diff) | |
First AndroidStudio Commit
Diffstat (limited to 'app/build.gradle')
| -rw-r--r-- | app/build.gradle | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..80c13dc --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,23 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 19 + buildToolsVersion "21.1.2" + + defaultConfig { + applicationId "com.example.spiritlevel" + minSdkVersion 8 + targetSdkVersion 18 + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' + } + } +} + +dependencies { + compile 'com.android.support:support-v4:19.1.0' +} |
