Skip to content

Commit a4fee34

Browse files
author
Grigory Fedorov
committed
Merge branch 'release/1.0.62'
2 parents 438559a + 34c033f commit a4fee34

File tree

364 files changed

+5401
-6031
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

364 files changed

+5401
-6031
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
jcenter()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:1.3.0'
7+
classpath 'com.android.tools.build:gradle:1.5.0'
88
}
99
}
1010

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ 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.2.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip

xabber/build.gradle

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 23
5-
buildToolsVersion "23.0.1"
5+
buildToolsVersion "23.0.2"
66

77
defaultConfig {
88
minSdkVersion 14
99
targetSdkVersion 23
10-
versionCode 226
11-
versionName '1.0.53'
10+
versionCode 235
11+
versionName '1.0.62'
1212
}
1313

1414
compileOptions {
@@ -21,6 +21,10 @@ android {
2121
disable 'MissingTranslation'
2222
}
2323

24+
dexOptions {
25+
incremental true
26+
}
27+
2428
productFlavors {
2529

2630
dev {
@@ -44,35 +48,36 @@ android {
4448
}
4549

4650
}
47-
}
4851

49-
repositories {
50-
mavenCentral()
52+
buildTypes {
53+
release {
54+
minifyEnabled false
55+
proguardFiles getDefaultProguardFile('proguard-android.txt'),
56+
'proguard-rules.pro'
57+
}
58+
}
5159
}
5260

5361
ext {
54-
smackVersion = '4.1.4'
62+
smackVersion = '4.1.5'
5563
}
5664

5765
dependencies {
58-
compile 'com.android.support:design:23.0.1'
59-
compile 'com.android.support:appcompat-v7:23.0.1'
60-
compile 'com.android.support:support-v13:23.0.1'
61-
compile 'com.github.ksoichiro:android-observablescrollview:1.5.0'
66+
compile 'com.android.support:design:23.1.1'
67+
compile 'com.android.support:appcompat-v7:23.1.1'
68+
compile 'com.android.support:support-v13:23.1.1'
6269
compile 'de.hdodenhof:circleimageview:1.2.2'
6370
compile 'com.melnykov:floatingactionbutton:1.2.0'
64-
compile 'dnsjava:dnsjava:2.1.7'
6571
compile 'com.github.bumptech.glide:glide:3.6.1'
6672
compile 'com.google.zxing:android-integration:3.1.0'
67-
compile 'com.jcraft:jzlib:1.0.7'
6873
compile 'com.loopj.android:android-async-http:1.4.9'
74+
compile 'com.soundcloud.android:android-crop:1.0.1@aar'
75+
compile 'io.realm:realm-android:0.85.0'
6976

7077
compile "org.igniterealtime.smack:smack-android-extensions:$smackVersion"
7178
compile "org.igniterealtime.smack:smack-experimental:$smackVersion"
7279
compile "org.igniterealtime.smack:smack-tcp:$smackVersion"
7380
compile project('otr4j')
7481
compile project('MemorizingTrustManager')
7582
compile project('emojicon')
76-
77-
compile 'com.soundcloud.android:android-crop:1.0.0@aar'
7883
}

xabber/emojicon/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22

33
android {
44
compileSdkVersion 23
5-
buildToolsVersion "23.0.1"
5+
buildToolsVersion "23.0.2"
66

77
defaultConfig {
88
minSdkVersion 14
@@ -18,5 +18,5 @@ android {
1818
}
1919

2020
dependencies {
21-
compile 'com.android.support:support-v4:23.0.1'
21+
compile 'com.android.support:support-v4:23.1.1'
2222
}

xabber/proguard-rules.pro

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
# realm
3+
4+
-keep class io.realm.annotations.RealmModule
5+
-keep @io.realm.annotations.RealmModule class *
6+
-keep class io.realm.internal.Keep
7+
-keep @io.realm.internal.Keep class *
8+
-dontwarn javax.**
9+
-dontwarn io.realm.**

0 commit comments

Comments
 (0)