app/build.gradle
author Da Risk <da_risk@beem-project.com>
Sun, 15 Mar 2015 21:08:23 +0100
changeset 1048 cd41ebc93e78
parent 1047 9b965359eaea
child 1049 41c9aa696059
permissions -rw-r--r--
Move MemorizingTrustManager into its own module
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1044
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 {
1047
9b965359eaea OTR: Update to otr4j-0.22
Da Risk <da_risk@beem-project.com>
parents: 1046
diff changeset
    29
    compile fileTree(include: ['*.jar'], dir: 'libs')
1048
cd41ebc93e78 Move MemorizingTrustManager into its own module
Da Risk <da_risk@beem-project.com>
parents: 1047
diff changeset
    30
    compile project(":third_parties:memorizingtrustmanager")
1047
9b965359eaea OTR: Update to otr4j-0.22
Da Risk <da_risk@beem-project.com>
parents: 1046
diff changeset
    31
    compile 'org.jitsi:org.otr4j:0.22'
1044
197a85a35cba Move the app into an app submodule which respect the default gradle layout
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    32
}
1046
6ca974ea549b Add checkstyle configuration to gradle
Da Risk <da_risk@beem-project.com>
parents: 1044
diff changeset
    33
6ca974ea549b Add checkstyle configuration to gradle
Da Risk <da_risk@beem-project.com>
parents: 1044
diff changeset
    34
apply from: "$project.rootDir/tools/android-checkstyle.gradle"