Skip to content

Commit 5b5721b

Browse files
authoredJun 20, 2016
Merge pull request #1 from Iterable/development
Development
2 parents a92028a + d2d346d commit 5b5721b

14 files changed

+912
-28
lines changed
 

Diff for: ‎build.gradle

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2-
32
buildscript {
43
repositories {
54
jcenter()
65
}
76
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.5.0'
9-
7+
classpath 'com.android.tools.build:gradle:2.1.0'
8+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
9+
classpath "com.github.dcendents:android-maven-gradle-plugin:1.3"
1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
1212
}
13+
1314
}
1415

1516
allprojects {
@@ -20,4 +21,4 @@ allprojects {
2021

2122
task clean(type: Delete) {
2223
delete rootProject.buildDir
23-
}
24+
}

Diff for: ‎gradle/wrapper/gradle-wrapper.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Oct 21 11:34:03 PDT 2015
1+
#Wed Jun 01 13:16:14 PDT 2016
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip

Diff for: ‎iterableapi/build.gradle

+30
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,34 @@ dependencies {
2222
compile fileTree(dir: 'libs', include: ['*.jar'])
2323
testCompile 'junit:junit:4.12'
2424
compile 'com.android.support:appcompat-v7:23.2.1'
25+
compile 'com.google.android.gms:play-services-gcm:7.5.0'
26+
compile 'com.android.support:support-annotations:23.2.1'
2527
}
28+
29+
ext {
30+
bintrayRepo = 'maven'
31+
bintrayName = 'Iterable-SDK'
32+
33+
publishedGroupId = 'com.iterable'
34+
libraryName = 'iterableapi'
35+
artifact = 'iterableapi'
36+
37+
libraryDescription = 'Iterable Android SDK'
38+
39+
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
40+
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
41+
42+
libraryVersion = '1.2016.06.01'
43+
44+
developerId = 'davidtruong'
45+
developerName = 'David Truong'
46+
developerEmail = 'dt@iterable.com'
47+
48+
licenseName = 'The Apache Software License, Version 2.0'
49+
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
50+
allLicenses = ["Apache-2.0"]
51+
}
52+
53+
54+
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
55+
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'

Diff for: ‎iterableapi/src/main/AndroidManifest.xml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
package="iterable.com.iterableapi">
33

44
<application
5-
android:allowBackup="true"
65
android:label="@string/app_name"
76
android:supportsRtl="true">
87

0 commit comments

Comments
 (0)
Please sign in to comment.