Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrivoruchko committed Sep 5, 2016
1 parent 764d953 commit 8bd04f0
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ android {
targetSdkVersion 24
versionCode 11
versionName "1.1.4"

resConfigs "en", "ru"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import android.graphics.Point;
import android.net.wifi.WifiManager;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.WindowManager;

import com.google.firebase.crash.FirebaseCrash;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public final class PreferencesHelper {
private static final String DEFAULT_JPEG_QUALITY = "80";
private static final String DEFAULT_CLIENT_TIMEOUT = "3000";

private Context mContext;
private final Context mContext;
private final SharedPreferences mSharedPreferences;
private boolean mMinimizeOnStream;
private boolean mStopOnSleep;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public final class ForegroundService extends Service {
private ForegroundServiceHandler mForegroundServiceTaskHandler;
private BroadcastReceiver mLocalNotificationReceiver;
private BroadcastReceiver mBroadcastReceiver;
private ConcurrentLinkedQueue<Integer> mServiceMessages = new ConcurrentLinkedQueue<>();
private final ConcurrentLinkedQueue<Integer> mServiceMessages = new ConcurrentLinkedQueue<>();

@Override
public void onCreate() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import info.dvkr.screenstream.R;

public final class MainActivityViewModel extends BaseObservable {
private Context mContext;
private final Context mContext;

private String mServerAddress;
private boolean mPinEnabled;
Expand Down

0 comments on commit 8bd04f0

Please sign in to comment.