
Building Simple browser application in android studio :- To build browser application in android studio first we need to create new project in android studio, to know how to create project in android studio you can check from here Lets add Internet permission in manifest file : adding internet permission in manifest < manifest xmlns: android ="http://schemas.android.com/apk/res/android" package ="com.sam.webviewdemo" > < uses-permission android :name ="android.permission.INTERNET" /> < application android :allowBackup ="true" android :icon ="@mipmap/ic_launcher" android :label ="@string/app_name" android :roundIcon ="@mipmap/ic_launcher_round" android :supportsRtl ="true" android :theme ="@style/AppTheme" > < activity android :name =".MainActivity" > < intent-filter > ...