Skip to content

Commit 0021939

Browse files
committed
Move on to version 1.1.3
1 parent 1b8d127 commit 0021939

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

app/build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,18 @@ android {
44
compileSdkVersion 27
55
buildToolsVersion '27.0.3'
66

7+
lintOptions {
8+
abortOnError false
9+
}
10+
711
defaultConfig {
812
applicationId "com.genonbeta.CoolSocket.test"
913
minSdkVersion 14
1014
targetSdkVersion 27
11-
versionCode 12
12-
versionName "1.1.2"
15+
versionCode 13
16+
versionName "1.1.3"
1317
}
18+
1419
buildTypes {
1520
release {
1621
minifyEnabled false

app/release/app-release.apk

-115 KB
Binary file not shown.

app/release/output.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":12},"path":"app-release.apk","properties":{"packageId":"com.genonbeta.CoolSocket.test","split":"","minSdkVersion":"14"}}]
1+
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":13,"versionName":"1.1.3","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]

app/src/main/java/com/genonbeta/CoolSocket/test/fragment/MessengerFragment.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
import android.widget.AdapterView.OnItemClickListener;
3838
import android.widget.Button;
3939
import android.widget.EditText;
40+
import android.widget.LinearLayout;
4041
import android.widget.ListView;
4142
import android.widget.Toast;
4243

@@ -95,6 +96,7 @@ public class MessengerFragment extends Fragment
9596
private CursorItem mGeneratedAddress = null;
9697
private SMSReceiver mSMSReceiver = new SMSReceiver();
9798
private RemoteSynchronous mSynchronous = new RemoteSynchronous();
99+
private LinearLayout mFormLayout;
98100

99101
@Override
100102
public void onCreate(Bundle bundle)
@@ -125,6 +127,7 @@ public View onCreateView(@NonNull LayoutInflater layoutInflater, ViewGroup viewG
125127
Button button = inflate.findViewById(R.id.fragment_messenger_send_button);
126128

127129
mCool.start();
130+
mFormLayout = inflate.findViewById(R.id.fragment_messenger_form_layout);
128131
mEditText = inflate.findViewById(R.id.fragment_messenger_message_text);
129132
mEditTextServer = inflate.findViewById(R.id.fragment_messenger_server_text);
130133
mEditTextPort = inflate.findViewById(R.id.fragment_messenger_port_text);
@@ -411,7 +414,6 @@ public void changeUtilities(boolean mode)
411414
Animation fadeIn = AnimationUtils.loadAnimation(getActivity(), android.R.anim.fade_in);
412415

413416
if (mode) {
414-
mConnectionFormLayout.setAnimation(fadeOut);
415417
mConnectionFormLayout.setVisibility(View.GONE);
416418

417419
mEditText.setVisibility(View.VISIBLE);

app/src/main/res/layout/fragment_messenger.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@
8383
android:layout_above="@id/fragment_messenger_form_layout"
8484
android:layout_alignParentTop="true"
8585
android:divider="@color/colorPrimaryDark"
86-
android:stackFromBottom="true"
87-
/>
86+
android:stackFromBottom="true"/>
8887

8988
</RelativeLayout>

0 commit comments

Comments
 (0)