Project

General

Profile

Download (673 Bytes) Statistics
| Branch: | Tag: | Revision:

magiccube / build.gradle @ ca445c23

1
apply plugin: 'com.android.application'
2

    
3
android {
4
    compileSdkVersion 27
5

    
6
    defaultConfig {
7
        applicationId "org.distorted.magic"
8
        minSdkVersion 25
9
        targetSdkVersion 27
10
        versionCode 1
11
        versionName "1.0"
12
    }
13

    
14
    buildTypes {
15
        release {
16
            minifyEnabled false
17
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
18
        }
19
    }
20

    
21
}
22

    
23
dependencies {
24
    implementation fileTree(dir: 'libs', include: ['*.jar'])
25

    
26
    api project(':distorted-library')
27
    implementation 'com.android.support:appcompat-v7:27.1.1'
28
    implementation 'com.android.support:design:27.1.1'
29
}
(2-2/3)