new release
This commit is contained in:
parent
6f48eebf77
commit
051be2f31a
2 changed files with 4 additions and 2 deletions
|
@ -9,8 +9,8 @@ android {
|
|||
applicationId "asgardius.page.s3manager"
|
||||
minSdk 24
|
||||
targetSdk 33
|
||||
versionCode 22
|
||||
versionName "0.1.20"
|
||||
versionCode 23
|
||||
versionName "0.1.21"
|
||||
setProperty("archivesBaseName", "s3-manager-$versionName")
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
|
|
@ -126,6 +126,8 @@ public class Share extends AppCompatActivity {
|
|||
//System.out.println(URLify(objectURL.toString()));
|
||||
Intent shareIntent = new Intent(Intent.ACTION_SEND);
|
||||
shareIntent.setType("text/plain");
|
||||
shareIntent.putExtra(Intent.EXTRA_TEXT, URLify(objectURL.toString()));
|
||||
startActivity(Intent.createChooser(shareIntent, "choose one"));
|
||||
}
|
||||
} catch (Exception e) {
|
||||
Toast.makeText(getApplicationContext(),getResources().getString(R.string.invalid_expiration_date), Toast.LENGTH_SHORT).show();
|
||||
|
|
Loading…
Reference in a new issue