Adjusting phone apps with the latest Android studio and Android 7; adjusting Spruce...
[iot2.git] / benchmarks / other / PhoneInterface / SpeakerLocator / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 27
5     buildToolsVersion '27.0.3'
6     useLibrary 'org.apache.http.legacy'
7     defaultConfig {
8         applicationId "com.example.xub3.speakerlocator"
9         minSdkVersion 15
10         targetSdkVersion 22
11         versionCode 1
12         versionName "1.0"
13     }
14     buildTypes {
15         release {
16             minifyEnabled false
17             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18         }
19     }
20 }
21
22 dependencies {
23     compile fileTree(include: ['*.jar'], dir: 'libs')
24     compile 'com.nanohttpd:nanohttpd-webserver:2.1.0'
25     testCompile 'junit:junit:4.12'
26     compile 'com.android.support:appcompat-v7:23.3.0'
27     compile 'com.android.support:design:23.3.0'
28     compile files('Libs/indoor-positioning-1.1.jar')
29     compile 'com.google.android.gms:play-services-appindexing:8.1.0'
30     implementation files('Libs/indoor-positioning-1.1.jar')
31 }