Skip to content

Commit 2369702

Browse files
authored
Merge pull request #849 from redsolution/develop
New auth interface and Xabber account
2 parents 8a29a6f + fb90e54 commit 2369702

671 files changed

Lines changed: 8282 additions & 9808 deletions

File tree

Some content is hidden

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

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@ android:
33
components:
44
- platform-tools
55
- tools
6+
- build-tools-28.0.3
7+
- build-tools-28.0.2
68
- build-tools-27.0.3
79
- build-tools-26.0.2
810
- build-tools-25.0.2
911
- build-tools-25.0.0
12+
- android-28
1013
- android-27
1114
- android-26
1215
- android-25

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ buildscript {
66
maven { url 'https://maven.fabric.io/public' }
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.0.1'
9+
classpath 'com.android.tools.build:gradle:3.2.1'
1010
classpath "io.realm:realm-gradle-plugin:3.1.1"
1111
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
1212
classpath 'com.frogermcs.androiddevmetrics:androiddevmetrics-plugin:0.4'
13-
classpath 'io.fabric.tools:gradle:1.+'
13+
classpath 'io.fabric.tools:gradle:1.25.4'
1414
classpath 'com.google.gms:google-services:3.1.1'
1515
}
1616
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Oct 26 14:17:31 YEKT 2017
1+
#Tue Sep 25 11:30:28 YEKT 2018
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-4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip

xabber/build.gradle

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ apply plugin: 'com.frogermcs.androiddevmetrics'
44
apply plugin: 'io.fabric'
55

66
android {
7-
compileSdkVersion 27
8-
buildToolsVersion '27.0.3'
7+
compileSdkVersion 28
8+
buildToolsVersion '28.0.3'
99

1010
defaultConfig {
1111
minSdkVersion 15
12-
targetSdkVersion 27
13-
versionCode 501
14-
versionName '2.4.1(501)'
12+
targetSdkVersion 28
13+
versionCode 533
14+
versionName '2.5(533)'
1515
}
1616

1717
lintOptions {
@@ -83,12 +83,10 @@ android {
8383
'proguard-rules.pro'
8484
// enable crashlytics
8585
buildConfigField "boolean", "USE_CRASHLYTICS", "true"
86-
ext.enableCrashlytics = true
8786
}
8887
debug {
8988
// disable crashlytics
9089
buildConfigField "boolean", "USE_CRASHLYTICS", "false"
91-
ext.enableCrashlytics = false
9290
}
9391
}
9492

@@ -139,7 +137,7 @@ if (build_param == "dev") {
139137

140138
ext {
141139
smackVersion = '4.2.1-SNAPSHOT'
142-
supportVersion = '27.0.2'
140+
supportVersion = '28.0.0'
143141
}
144142

145143
dependencies {
@@ -153,7 +151,11 @@ dependencies {
153151

154152
implementation "com.android.support:design:$supportVersion"
155153
implementation "com.android.support:support-v13:$supportVersion"
156-
implementation 'com.android.support:multidex:1.0.1'
154+
implementation "com.android.support:customtabs:$supportVersion"
155+
implementation 'com.android.support:multidex:1.0.3'
156+
157+
// firebase
158+
compile 'com.google.firebase:firebase-messaging:11.4.0'
157159

158160
implementation 'com.github.Str4tocaster:otr4j:custom-SNAPSHOT'
159161
implementation 'com.google.zxing:android-integration:3.3.0'
@@ -168,7 +170,8 @@ dependencies {
168170
implementation 'io.reactivex:rxandroid:1.1.0'
169171
implementation 'io.reactivex:rxjava:1.1.0'
170172

171-
//social
173+
// social
174+
implementation 'com.google.android.gms:play-services-safetynet:11.4.0'
172175
implementation 'com.facebook.android:facebook-android-sdk:4.31.0'
173176
implementation 'com.twitter.sdk.android:twitter:3.0.0'
174177
implementation 'com.google.android.gms:play-services-auth:11.4.0'
@@ -187,11 +190,11 @@ dependencies {
187190
implementation 'ru.egslava:MaskedEditText:1.0.5'
188191
implementation 'eu.davidea:flexible-adapter:5.0.0-rc4'
189192
implementation 'com.soundcloud.android:android-crop:1.0.1@aar'
190-
implementation 'de.hdodenhof:circleimageview:2.1.0'
193+
implementation 'de.hdodenhof:circleimageview:2.2.0'
191194
implementation 'com.melnykov:floatingactionbutton:1.3.0'
192195

193-
implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
194-
transitive = true;
196+
implementation('com.crashlytics.sdk.android:crashlytics:2.9.5@aar') {
197+
transitive = true
195198
}
196199

197200
implementation group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.58'

xabber/emojicon/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 25
5-
buildToolsVersion '26.0.2'
4+
compileSdkVersion 28
5+
buildToolsVersion '28.0.3'
66

77
defaultConfig {
8-
minSdkVersion 14
9-
targetSdkVersion 25
8+
minSdkVersion 15
9+
targetSdkVersion 28
1010
}
1111

1212
buildTypes {
@@ -18,5 +18,5 @@ android {
1818
}
1919

2020
dependencies {
21-
compile "com.android.support:support-v13:25.3.0"
21+
implementation "com.android.support:support-v13:28.0.0"
2222
}

xabber/emojicon/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
package="github.ankushsachdeva.emojicon">
33

4-
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19"/>
4+
<uses-sdk android:targetSdkVersion="19"/>
55

66
<application android:allowBackup="true"
77
android:label="@string/app_name"
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)