Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Copyright (c) 2016, salesforce.com, inc.
- * All rights reserved.
- * Licensed under the BSD 3-Clause license.
- * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
- */
- apply plugin: 'com.android.application'
- apply plugin: 'com.jakewharton.hugo'
- android {
- /* Change these to fit your applications requirements! */
- /* 01 release brings support for android 23 (Marshmallow) */
- compileSdkVersion 23
- buildToolsVersion = '25.0.0'
- defaultConfig {
- applicationId "es.practicalmarketinge.push"
- minSdkVersion 16
- // MIN SDK for use with ETPush is 15, but this app uses 16 for maps compatibility
- targetSdkVersion 23
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- /* SDK */
- compile('com.exacttarget.etpushsdk:etsdk:4.7.1@aar') {
- //exclude module: 'android-beacon-library'
- transitive = true;
- changing = true
- }
- compile 'com.google.android.gms:play-services-maps:9.2.0'
- // This particular app, requires appCompat and design
- compile 'com.android.support:appcompat-v7:23.1.0'
- compile 'com.android.support:design:23.1.1'
- /* Google's Support v4 for Notification compatibility */
- compile 'com.android.support:support-v4:23.1.0'
- compile 'com.android.support:design:23.1.0'
- /* SDK */
- compile 'com.exacttarget.etpushsdk:etsdk:4.0.6@aar'
- /* Google Play Services for Location and Google Cloud Messaging */
- compile 'com.google.android.gms:play-services-location:9.2.0'
- compile 'com.google.android.gms:play-services-gcm:9.2.0'
- compile 'com.google.firebase:firebase-messaging:9.2.0'
- /* 3rd Party Libraries Required for SDK integration */
- compile 'com.radiusnetworks:AndroidIBeaconLibrary:0.7.6'
- /*
- If you're implementing our SDK and do not need
- custom versions of:
- support
- design
- play-services-location
- play-services-gcm
- You can utilize the transitive = true gradle
- directive to automatically pull in the needed
- libraries at the needed versions for the SDK
- to properly function.
- Otherwise, include them manually specifying
- the version(s) you require.
- //* Google's Support v4 for Notification compatibility
- compile 'com.android.support:appcompat-v7:23.1.1'
- compile 'com.android.support:support-v4:23.1.1'
- compile 'com.android.support:design:23.1.1'
- //* Google Play Services for Location and Google Cloud Messaging
- compile 'com.google.android.gms:play-services-location:8.1.0'
- compile 'com.google.android.gms:play-services-gcm:8.1.0'
- //* 3rd Party Libraries Required for SDK integration
- compile 'org.altbeacon:android-beacon-library:2.5.1@aar'
- */
- }
- apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment