bugfixes
This commit is contained in:
parent
a76cafc6e2
commit
11f0ee25bf
@ -11,8 +11,8 @@ android {
|
|||||||
compileSdkVersion 31
|
compileSdkVersion 31
|
||||||
buildToolsVersion '29.0.2'
|
buildToolsVersion '29.0.2'
|
||||||
useLibrary 'org.apache.http.legacy'
|
useLibrary 'org.apache.http.legacy'
|
||||||
versionCode 131
|
versionCode 132
|
||||||
versionName "1.7.15"
|
versionName "1.7.16"
|
||||||
|
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
@ -57,6 +57,15 @@ public class ActivityManageActionRunExecutable extends Activity
|
|||||||
saveExecSettings();
|
saveExecSettings();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if(getIntent().hasExtra(ActivityManageRule.intentNameActionParameter2))
|
||||||
|
{
|
||||||
|
String[] parts = getIntent().getStringExtra(ActivityManageRule.intentNameActionParameter2).split(Action.actionParameter2Split);
|
||||||
|
etRunExecutablePath.setText(parts[0]);
|
||||||
|
|
||||||
|
if(parts.length > 1)
|
||||||
|
etRunExecutableParameters.setText(parts[1]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void saveExecSettings()
|
void saveExecSettings()
|
||||||
|
2
fastlane/metadata/android/en-US/changelogs/132.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/132.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
* Fixed: Run executable action - when editing values were not loaded in editor
|
||||||
|
* Added: Variables usable in intent parameters
|
Loading…
Reference in New Issue
Block a user