Skip to content

Commit

Permalink
Merge pull request #6 from haseebpvt/develop
Browse files Browse the repository at this point in the history
I'm the admin. I've solved the 'NullPointException on start'. I'm here by merging the pull request.
Code review passed.
  • Loading branch information
haseebpvt committed Oct 10, 2017
2 parents a7dff4b + f37e792 commit fccc0c2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# PROJECT_CAR360

Welcome to CAR 360 Project

CAR 360 is an automobile review team. We have hosted our Android applicatin on playstore. But currently our app only show our blog in a web view. We are planning to change it like a social media platform where people can post news about automobile related news and use as a platform to sell used vehicles. More features are invitable.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@
public class MainActivity extends AppCompatActivity {

//Adding a comment
/*
* Important Message
* This branch is develope branch
* Any one can request a pull to this
* If there is any important features you can -
* contribut please pull a reuest so we can -
* review your code
*
* */

private AdView mAdView;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ public void onActivityCreated(Bundle savedInstanceState) {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

ulr = webView.getUrl();
try {
ulr = webView.getUrl();
} catch (Exception e) {
e.printStackTrace();
}

View v = inflater.inflate(R.layout.fragment_one, container, false);
WebView website = (WebView) v.findViewById(R.id.website);
Expand Down

0 comments on commit fccc0c2

Please sign in to comment.