build.gradle revision 55f1b0b17df3287fab644f68b9418905e26842da
10139N/A/*
10139N/A * The contents of this file are subject to the terms of the Common Development and
10139N/A * Distribution License (the License). You may not use this file except in compliance with the
13948N/A * License.
10139N/A *
10139N/A * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
10139N/A * specific language governing permission and limitations under the License.
17185N/A *
10139N/A * When distributing Covered Software, include this CDDL Header Notice in each file and include
17181N/A * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
17181N/A * Header, with the fields enclosed by brackets [] replaced by your own identifying
17181N/A * information: "Portions copyright [year] [name of copyright owner]".
10139N/A *
10139N/A * Copyright 2016 ForgeRock AS.
10139N/A */
16160N/Aapply plugin: 'com.android.application'
10139N/A
10139N/Aandroid {
10139N/A compileSdkVersion 23
10139N/A buildToolsVersion "23.0.2"
16160N/A
10139N/A defaultConfig {
10139N/A applicationId "com.forgerock.authenticator"
10139N/A minSdkVersion 14
10139N/A targetSdkVersion 23
10139N/A versionCode 2
10139N/A versionName "2.0"
18074N/A }
18074N/A
10139N/A buildTypes {
10139N/A release {
10139N/A minifyEnabled false
10139N/A proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
10139N/A }
10139N/A debug {
10139N/A debuggable true
10139N/A }
10139N/A }
10139N/A
10139N/A testOptions {
10139N/A unitTests.all {
10139N/A useTestNG()
10139N/A }
10139N/A }
10139N/A
10139N/A lintOptions {
10139N/A abortOnError false
10139N/A }
10139N/A}
10139N/A
10139N/Adependencies {
10139N/A
10139N/A testCompile 'org.testng:testng:6.8.5'
10139N/A testCompile 'org.mockito:mockito-core:1.9.5'
10139N/A
10139N/A // Gson for Serialisation
10139N/A compile 'com.google.code.gson:gson:2.6.2'
10139N/A // ZXing for QR Code library
10139N/A compile 'com.google.zxing:core:3.2.1'
10139N/A // For image management
10139N/A compile 'com.squareup.picasso:picasso:2.5.2'
10139N/A // GCM Notifications
10139N/A compile 'com.google.android.gms:play-services-gcm:8.4.0'
10139N/A compile 'com.android.support:appcompat-v7:23.2.0'
10139N/A compile 'com.android.support:support-v4:23.2.0'
10139N/A // Logging framework
18074N/A compile 'org.slf4j:slf4j-android:1.7.18'
10139N/A}
10139N/A
10139N/Aapply plugin: 'com.google.gms.google-services'
10139N/A