examples / build.gradle @ d76638f1
1 | 427ab7bf | Leszek Koltunski | apply plugin: 'com.android.application' |
---|---|---|---|
2 | |||
3 | android { |
||
4 | 9f5eba09 | Leszek Koltunski | compileSdkVersion 23 |
5 | 5ac76be9 | leszek | buildToolsVersion '25.0.0' |
6 | 427ab7bf | Leszek Koltunski | |
7 | defaultConfig { |
||
8 | 5068fa06 | Leszek Koltunski | applicationId "org.distorted.examples" |
9 | 862fcd79 | Leszek Koltunski | minSdkVersion 18 |
10 | 427ab7bf | Leszek Koltunski | targetSdkVersion 23 |
11 | }
|
||
12 | |||
13 | buildTypes { |
||
14 | release { |
||
15 | minifyEnabled false |
||
16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' |
||
17 | }
|
||
18 | }
|
||
19 | }
|
||
20 | |||
21 | dependencies { |
||
22 | compile project(':distorted-library') |
||
23 | e3efd628 | Leszek Koltunski | compile "com.android.support:support-v4:23.4.0" |
24 | 427ab7bf | Leszek Koltunski | }
|