-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathbuild.gradle
70 lines (64 loc) · 1.88 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
apply plugin: 'com.android.model.application'
model {
android {
compileSdkVersion = 23
buildToolsVersion ="23.0.0"
defaultConfig.with {
applicationId = "com.androzic.v2"
versionCode = 110
minSdkVersion.apiLevel = 8
targetSdkVersion.apiLevel = 21
}
}
/*
* native build settings
*/
android.ndk {
moduleName = "ozfdecoder"
ldLibs = ["z", "log"]
/*
* Other ndk flags configurable here are
* cppFlags += "-fno-rtti"
* cppFlags += "-fno-exceptions"
* ldLibs = ["android", "log"]
* stl = "system"
*/
}
/*
android.signingConfigs {
create("signed") {
//storeFile = file(RELEASE_STORE_FILE)
//storePassword = RELEASE_STORE_PASSWORD
//keyAlias = RELEASE_KEY_ALIAS
//keyPassword = RELEASE_KEY_PASSWORD
}
}
*/
android.buildTypes {
release {
minifyEnabled = false
proguardFiles += file('proguard-rules.pro')
//signingConfig = $("android.signingConfigs.signed")
}
}
android.productFlavors {
create("generic") {
versionName = "2.3"
}
create("SeaVenti") {
versionName = "2.3-SeaVenti"
}
}
}
dependencies {
compile project(':library')
compile project(':libraries:drag-sort-listview:library')
compile project(':libraries:color-picker-view:library')
compile project(':libraries:android-support-v4-preferencefragment')
compile project(':libraries:mapsforge')
compile 'com.android.support:support-v4:23.0.0'
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.android.support:design:23.0.0'
compile 'com.daimajia.swipelayout:library:1.2.0'
compile 'com.esotericsoftware:kryo:3.0.1'
}