Obliczenia brydżowe (Android)
Jacek Kowalski
2015-01-18 0d7d167dcfd456c1f8695448f885989661e712c8
commit | author | age
7a519e 1 apply plugin: 'com.android.application'
JK 2
3 android {
4     compileSdkVersion 21
5     buildToolsVersion "21.1.2"
6
7     defaultConfig {
8         applicationId "net.jacekk.bridge"
0d7d16 9         minSdkVersion 11
7a519e 10         targetSdkVersion 21
0d7d16 11         versionCode 2
JK 12         versionName "1.1"
7a519e 13     }
JK 14     buildTypes {
15         release {
0d7d16 16             minifyEnabled true
7a519e 17         }
JK 18     }
19 }
20
21 dependencies {
22     compile fileTree(dir: 'libs', include: ['*.jar'])
23     compile 'com.android.support:appcompat-v7:21.0.3'
24 }