Skip to content

Commit 8a29337

Browse files
committed
Merge branch 'hotfix'
2 parents 5963418 + 539f982 commit 8a29337

File tree

3 files changed

+21
-17
lines changed

3 files changed

+21
-17
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.4.0-beta6'
8+
classpath 'com.android.tools.build:gradle:1.5.0'
99
}
1010
}
1111

cSploit/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:1.4.0-beta6'
7+
classpath 'com.android.tools.build:gradle:1.5.0'
88
}
99
}
1010

@@ -52,8 +52,8 @@ android {
5252
defaultConfig {
5353
minSdkVersion 9
5454
targetSdkVersion 22
55-
versionCode 4
56-
versionName "1.6.2"
55+
versionCode 5
56+
versionName "1.6.3"
5757
if(System.getenv("NIGHTLY_BUILD")) {
5858
versionName += "+" + System.getenv("NIGHTLY_BUILD_COMMIT").substring(0, 7)
5959
}

cSploit/res/layout/plugin_inspector.xml

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,6 @@
66
android:paddingTop="16sp"
77
android:id="@+id/whatever">
88

9-
<android.support.design.widget.FloatingActionButton
10-
android:id="@+id/inspectToggleButton"
11-
android:layout_width="wrap_content"
12-
android:layout_height="wrap_content"
13-
android:padding="20dp"
14-
android:src="@drawable/ic_play_arrow_24dp"
15-
android:checked="false"
16-
android:translationZ="8dp"
17-
android:layout_alignParentBottom="true"
18-
android:layout_alignParentRight="true"
19-
android:layout_margin="20dp"
20-
android:focusableInTouchMode="true" />
21-
229
<ProgressBar
2310
android:id="@+id/inspectActivity"
2411
android:layout_width="wrap_content"
@@ -156,4 +143,21 @@
156143
android:gravity="center_vertical"
157144
/>
158145
</ScrollView>
146+
147+
<!--
148+
Later children in a RelativeLayout tend to float over earlier children in a RelativeLayout.
149+
https://www.stackoverflow.com/a/28651543
150+
-->
151+
<android.support.design.widget.FloatingActionButton
152+
android:id="@+id/inspectToggleButton"
153+
android:layout_width="wrap_content"
154+
android:layout_height="wrap_content"
155+
android:padding="20dp"
156+
android:src="@drawable/ic_play_arrow_24dp"
157+
android:checked="false"
158+
android:translationZ="8dp"
159+
android:layout_alignParentBottom="true"
160+
android:layout_alignParentRight="true"
161+
android:layout_margin="20dp"
162+
android:focusableInTouchMode="true" />
159163
</RelativeLayout>

0 commit comments

Comments
 (0)