Skip to content

Commit eb68550

Browse files
committed
Upload file
1 parent f998dce commit eb68550

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

common/src/main/java/com/omarea/common/shell/ShellExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ private static String getEnvPath() {
1717
if (extraEnvPath != null && !extraEnvPath.isEmpty()) {
1818
if (defaultEnvPath.isEmpty()) {
1919
try {
20-
Process process = Runtime.getRuntime().exec("sh");
20+
Process process = Runtime.getRuntime().exec("/system/bin/sh");
2121
OutputStream outputStream = process.getOutputStream();
2222
outputStream.write("echo $PATH".getBytes());
2323
outputStream.flush();

common/src/main/res/values/styles.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
<style name="textDefault">
140140
<item name="android:textColor">?android:attr/textColorPrimary</item>
141141
<item name="android:textStyle">normal</item>
142-
<item name="android:textSize">14sp</item>
142+
<item name="android:textSize">14dp</item>
143143
<item name="android:fontFamily">sans-serif-medium</item>
144144
</style>
145145

pio/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ android {
2121
targetSdkVersion 28
2222
versionCode Integer.parseInt(new java.text.SimpleDateFormat("yyMMddHH").format(new Date()))
2323
// versionCode 26021101
24-
versionName "1.3.0"
24+
versionName "1.3.1"
2525
}
2626
signingConfigs {
2727
release {

0 commit comments

Comments
 (0)