Skip to content
This repository has been archived by the owner on Jun 20, 2021. It is now read-only.

Commit

Permalink
Update to 1.0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fengberd committed Sep 16, 2017
1 parent f259b29 commit d387a9e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ android {
applicationId "net.fengberd.minecraftpe_server"
minSdkVersion 14
targetSdkVersion 21
versionCode 1094
versionName "1.0.9.4"
versionCode 1095
versionName "1.0.9.5"
vectorDrawables.useSupportLibrary = true
}

buildTypes {
release {
minifyEnabled false
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,11 @@ public boolean openUrlFromJson(String key)
startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse(urls_json.getString(key))));
return true;
}
catch(JSONException e)
catch(ActivityNotFoundException e)
{
toast("Open failed.");
}
catch(Exception e)
{
toast(e.toString());
}
Expand Down

1 comment on commit d387a9e

@thegamer111
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bjena

Please sign in to comment.