author | Da Risk <da_risk@beem-project.com> |
Sun, 15 Mar 2015 20:41:17 +0100 | |
changeset 1043 | 9b965359eaea |
parent 1042 | 6ca974ea549b |
child 1044 | cd41ebc93e78 |
permissions | -rw-r--r-- |
1040
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
1 |
apply plugin: 'com.android.application' |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
2 |
|
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
3 |
android { |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
4 |
compileSdkVersion 22 |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
5 |
buildToolsVersion "22.0.0" |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
6 |
|
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
7 |
defaultConfig { |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
8 |
applicationId "com.beem.project.beem" |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
9 |
minSdkVersion 6 |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
10 |
targetSdkVersion 22 |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
11 |
versionCode 15 |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
12 |
versionName "0.1.8" |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
13 |
} |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
14 |
|
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
15 |
buildTypes { |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
16 |
release { |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
17 |
minifyEnabled false |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
18 |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
19 |
} |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
20 |
} |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
21 |
|
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
22 |
lintOptions { |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
23 |
abortOnError false |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
24 |
} |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
25 |
|
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
26 |
} |
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
27 |
|
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
28 |
dependencies { |
1043
9b965359eaea
OTR: Update to otr4j-0.22
Da Risk <da_risk@beem-project.com>
parents:
1042
diff
changeset
|
29 |
compile fileTree(include: ['*.jar'], dir: 'libs') |
9b965359eaea
OTR: Update to otr4j-0.22
Da Risk <da_risk@beem-project.com>
parents:
1042
diff
changeset
|
30 |
compile 'org.jitsi:org.otr4j:0.22' |
1040
197a85a35cba
Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
31 |
} |
1042
6ca974ea549b
Add checkstyle configuration to gradle
Da Risk <da_risk@beem-project.com>
parents:
1040
diff
changeset
|
32 |
|
6ca974ea549b
Add checkstyle configuration to gradle
Da Risk <da_risk@beem-project.com>
parents:
1040
diff
changeset
|
33 |
apply from: "$project.rootDir/tools/android-checkstyle.gradle" |