Skip to content

Commit

Permalink
Merge branch 'hotfix'
Browse files Browse the repository at this point in the history
  • Loading branch information
tux-mind committed Dec 25, 2015
2 parents 5963418 + 539f982 commit 8a29337
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 17 deletions.
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 {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.4.0-beta6'
classpath 'com.android.tools.build:gradle:1.5.0'
}
}

Expand Down
6 changes: 3 additions & 3 deletions cSploit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.4.0-beta6'
classpath 'com.android.tools.build:gradle:1.5.0'
}
}

Expand Down Expand Up @@ -52,8 +52,8 @@ android {
defaultConfig {
minSdkVersion 9
targetSdkVersion 22
versionCode 4
versionName "1.6.2"
versionCode 5
versionName "1.6.3"
if(System.getenv("NIGHTLY_BUILD")) {
versionName += "+" + System.getenv("NIGHTLY_BUILD_COMMIT").substring(0, 7)
}
Expand Down
30 changes: 17 additions & 13 deletions cSploit/res/layout/plugin_inspector.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,6 @@
android:paddingTop="16sp"
android:id="@+id/whatever">

<android.support.design.widget.FloatingActionButton
android:id="@+id/inspectToggleButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="20dp"
android:src="@drawable/ic_play_arrow_24dp"
android:checked="false"
android:translationZ="8dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_margin="20dp"
android:focusableInTouchMode="true" />

<ProgressBar
android:id="@+id/inspectActivity"
android:layout_width="wrap_content"
Expand Down Expand Up @@ -156,4 +143,21 @@
android:gravity="center_vertical"
/>
</ScrollView>

<!--
Later children in a RelativeLayout tend to float over earlier children in a RelativeLayout.
https://www.stackoverflow.com/a/28651543
-->
<android.support.design.widget.FloatingActionButton
android:id="@+id/inspectToggleButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="20dp"
android:src="@drawable/ic_play_arrow_24dp"
android:checked="false"
android:translationZ="8dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_margin="20dp"
android:focusableInTouchMode="true" />
</RelativeLayout>

0 comments on commit 8a29337

Please sign in to comment.