forked from dronekit/dronekit-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (32 loc) · 994 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
apply plugin: 'com.android.application'
android {
compileSdkVersion android_build_sdk_version
buildToolsVersion android_build_tools_version
defaultConfig {
applicationId "com.o3dr.sample.hellodrone"
minSdkVersion android_build_min_sdk_version
targetSdkVersion android_build_target_sdk_version
versionCode 2
versionName "3.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
buildToolsVersion '24.0.1'
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile "com.android.support:appcompat-v7:23.4.0"
compile "com.android.support:cardview-v7:23.4.0"
compile project(':ClientLib')
}