Skip to content

Commit cac564d

Browse files
author
Grigory Fedorov
committed
Merge branch 'release/1.0.0'
Conflicts: app/src/main/res/xml/preference_editor.xml
2 parents a2eda79 + 39f3e9d commit cac564d

File tree

2,329 files changed

+59546
-93869
lines changed

Some content is hidden

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

2,329 files changed

+59546
-93869
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ build
55
.gradle
66
*.apk
77
app/manifest-merger-release-report.txt
8+
*~*

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "app/otr4j"]
2+
path = app/otr4j
3+
url = https://github.com/otr4j/otr4j.git

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Supported protocols
2727
* XEP-0059: Result Set Management
2828
* XEP-0136: Message Archiving
2929
* XEP-0224: Attention
30+
* XEP-0077: In-Band Registration
3031

3132
Translations
3233
============

app/build.gradle

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,33 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 9
5-
buildToolsVersion "21.1.2"
4+
compileSdkVersion 22
5+
buildToolsVersion "22.0.1"
66

77
defaultConfig {
88
applicationId "com.xabber.androiddev"
9-
minSdkVersion 3
10-
targetSdkVersion 9
9+
minSdkVersion 14
10+
targetSdkVersion 22
11+
versionCode 172
12+
versionName '1.0.0'
1113
}
1214

13-
buildTypes {
14-
release {
15-
minifyEnabled false
16-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
17-
}
15+
compileOptions {
16+
sourceCompatibility JavaVersion.VERSION_1_7
17+
targetCompatibility JavaVersion.VERSION_1_7
1818
}
1919
}
2020

21+
repositories {
22+
mavenCentral()
23+
}
24+
2125
dependencies {
22-
compile files('libs/otr4j.jar')
26+
compile 'com.android.support:appcompat-v7:22.1.0'
27+
compile 'com.android.support:support-v13:22.0.0'
28+
compile 'com.github.ksoichiro:android-observablescrollview:1.5.0'
29+
compile 'de.hdodenhof:circleimageview:1.2.2'
30+
compile 'com.melnykov:floatingactionbutton:1.2.0'
31+
compile 'dnsjava:dnsjava:2.1.7'
32+
compile project('otr4j')
2333
}

app/libs/otr4j.jar

-166 KB
Binary file not shown.

app/otr4j

Submodule otr4j added at 0ced840

0 commit comments

Comments
 (0)