examples / build.gradle @ 3998dddc
1 | 427ab7bf | Leszek Koltunski | apply plugin: 'com.android.application' |
---|---|---|---|
2 | |||
3 | android { |
||
4 | d63d5b6b | leszek | compileSdkVersion 27 |
5 | 427ab7bf | Leszek Koltunski | |
6 | defaultConfig { |
||
7 | 5068fa06 | Leszek Koltunski | applicationId "org.distorted.examples" |
8 | be169c10 | Leszek Koltunski | minSdkVersion 21 |
9 | d63d5b6b | leszek | targetSdkVersion 27 |
10 | 427ab7bf | Leszek Koltunski | }
|
11 | |||
12 | buildTypes { |
||
13 | release { |
||
14 | minifyEnabled false |
||
15 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' |
||
16 | }
|
||
17 | }
|
||
18 | }
|
||
19 | |||
20 | dependencies { |
||
21 | e72c53e5 | Leszek Koltunski | api project(':distorted-library') |
22 | a635eef9 | Leszek Koltunski | implementation 'com.android.support:support-v4:27.1.1' |
23 | 427ab7bf | Leszek Koltunski | }
|