Skip to content

Commit

Permalink
Build update
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrivoruchko committed Dec 15, 2016
1 parent 19a41fb commit 2221fee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "info.dvkr.screenstream"
minSdkVersion 21
targetSdkVersion 25
versionCode 18
versionName "1.2.2"
versionCode 19
versionName "1.2.3"
resConfigs "en", "ru"
}

Expand Down Expand Up @@ -36,8 +36,8 @@ android {

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:design:25.0.0'
compile 'com.google.firebase:firebase-crash:9.8.0'
compile 'com.android.support:design:25.1.0'
compile 'com.google.firebase:firebase-crash:10.0.1'
compile 'org.greenrobot:eventbus:3.0.0'
}

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/info/dvkr/screenstream/data/HttpServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.SocketTimeoutException;
import java.net.SocketException;
import java.util.Random;

import static info.dvkr.screenstream.ScreenStreamApplication.getAppData;
Expand Down Expand Up @@ -93,7 +93,7 @@ public void run() {
}

sendNotFound(clientSocket);
} catch (SocketTimeoutException ignored) {
} catch (SocketException ignored) {
} catch (IOException e) {
FirebaseCrash.report(e);
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.google.gms:google-services:3.0.0'

// NOTE: Do not place your application dependencies here; they belong
Expand Down

0 comments on commit 2221fee

Please sign in to comment.